HomeSort by relevance Sort by last modified time
    Searched refs:kSwitch (Results 1 - 8 of 8) sorted by null

  /external/chromium_org/chrome/common/
crash_keys.h 30 // Sets the kSwitch and kNumSwitches keys based on the given |command_line|.
66 // Process command line switches. |kSwitch| should be formatted with an integer,
69 extern const char kSwitch[];
crash_keys.cc 66 const char kSwitch[] = "switch-%" PRIuS;
184 static char formatted_keys[kSwitchesMaxCount][sizeof(kSwitch) + 1] =
190 formatted_keys[i], formatted_key_len, kSwitch, i + 1);
340 std::string key = base::StringPrintf(kSwitch, key_i++);
346 base::debug::ClearCrashKey(base::StringPrintf(kSwitch, key_i));
crash_keys_unittest.cc 100 EXPECT_FALSE(HasCrashKey(base::StringPrintf(crash_keys::kSwitch, i)));
  /art/runtime/
dex_instruction.h 123 kSwitch = 0x000004, // switch statement
471 return (kInstructionFlags[Opcode()] & kSwitch) != 0;
dex_instruction_list.h 64 V(0x2B, PACKED_SWITCH, "packed-switch", k31t, false, kNone, kContinue | kSwitch, kVerifyRegA | kVerifySwitchTargets) \
65 V(0x2C, SPARSE_SWITCH, "sparse-switch", k31t, false, kNone, kContinue | kSwitch, kVerifyRegA | kVerifySwitchTargets) \
  /art/compiler/dex/
mir_graph.h 53 kSwitch
70 #define AN_SWITCH (1 << kSwitch)
    [all...]
mir_graph.cc 465 /* Process instructions with the kSwitch flag */
801 } else if (flags & Instruction::kSwitch) {
    [all...]
  /art/runtime/verifier/
method_verifier.cc     [all...]

Completed in 76 milliseconds