Fix some camelCase.

These are the files that are mostly right but contain a few
orthographic errors.

Change-Id: I2ca1b5fad71c24f911fd55cfc91f7031af66be99
diff --git a/src/dex_file.cc b/src/dex_file.cc
index 8f30c73..4d244fd 100644
--- a/src/dex_file.cc
+++ b/src/dex_file.cc
@@ -594,16 +594,16 @@
 
   while (max >= min) {
     int32_t mid = (min + max) / 2;
-    const TryItem* pTry = DexFile::GetTryItems(code_item, mid);
-    uint32_t start = pTry->start_addr_;
+    const TryItem* try_item = DexFile::GetTryItems(code_item, mid);
+    uint32_t start = try_item->start_addr_;
     if (address < start) {
       max = mid - 1;
     } else {
-      uint32_t end = start + pTry->insn_count_;
+      uint32_t end = start + try_item->insn_count_;
       if (address >= end) {
         min = mid + 1;
       } else {  // We have a winner!
-        return (int32_t) pTry->handler_off_;
+        return (int32_t) try_item->handler_off_;
       }
     }
   }