HomeSort by relevance Sort by last modified time
    Searched refs:kNone (Results 1 - 25 of 101) sorted by null

1 2 3 4 5

  /art/runtime/
dex_instruction_list.h 21 V(0x00, NOP, "nop", k10x, false, kNone, kContinue, kVerifyNone) \
22 V(0x01, MOVE, "move", k12x, true, kNone, kContinue, kVerifyRegA | kVerifyRegB) \
23 V(0x02, MOVE_FROM16, "move/from16", k22x, true, kNone, kContinue, kVerifyRegA | kVerifyRegB) \
24 V(0x03, MOVE_16, "move/16", k32x, true, kNone, kContinue, kVerifyRegA | kVerifyRegB) \
25 V(0x04, MOVE_WIDE, "move-wide", k12x, true, kNone, kContinue, kVerifyRegAWide | kVerifyRegBWide) \
26 V(0x05, MOVE_WIDE_FROM16, "move-wide/from16", k22x, true, kNone, kContinue, kVerifyRegAWide | kVerifyRegBWide) \
27 V(0x06, MOVE_WIDE_16, "move-wide/16", k32x, true, kNone, kContinue, kVerifyRegAWide | kVerifyRegBWide) \
28 V(0x07, MOVE_OBJECT, "move-object", k12x, true, kNone, kContinue, kVerifyRegA | kVerifyRegB) \
29 V(0x08, MOVE_OBJECT_FROM16, "move-object/from16", k22x, true, kNone, kContinue, kVerifyRegA | kVerifyRegB) \
30 V(0x09, MOVE_OBJECT_16, "move-object/16", k32x, true, kNone, kContinue, kVerifyRegA | kVerifyRegB)
    [all...]
instruction_set_test.cc 31 EXPECT_EQ(kNone, GetInstructionSetFromString("none"));
32 EXPECT_EQ(kNone, GetInstructionSetFromString("random-string"));
42 EXPECT_STREQ("none", GetInstructionSetString(kNone));
instruction_set.cc 34 case kNone:
57 return kNone;
74 case kNone:
75 LOG(FATAL) << "ISA kNone does not have alignment.";
110 case kNone:
111 LOG(FATAL) << "kNone has no stack overflow size";
instruction_set.h 30 kNone,
52 static constexpr InstructionSet kRuntimeISA = kNone;
79 // Note: Returns kNone when the string cannot be parsed to a known value.
96 case kNone:
97 LOG(FATAL) << "ISA kNone does not have pointer size.";
119 case kNone:
120 LOG(FATAL) << "ISA kNone does not have bit width.";
146 case kNone:
147 LOG(FATAL) << "ISA kNone does not have spills.";
169 case kNone
    [all...]
  /external/chromium_org/v8/src/
dateparser.cc 20 int month = kNone;
21 int day = kNone;
23 if (named_month_ == kNone) {
76 if (hour_offset_ != kNone) {
94 if (sign_ != kNone) {
95 if (hour_ == kNone) hour_ = 0;
96 if (minute_ == kNone) minute_ = 0;
dateparser.h 41 static const int kNone = kMaxInt;
288 TimeZoneComposer() : sign_(kNone), hour_(kNone), minute_(kNone) {}
298 return hour_ != kNone && minute_ == kNone && TimeComposer::IsMinute(n);
302 bool IsEmpty() { return hour_ == kNone; }
311 TimeComposer() : index_(0), hour_offset_(kNone) {}
345 DayComposer() : index_(0), named_month_(kNone), is_iso_date_(false) {}
property-details.h 60 kNone,
74 Representation() : kind_(kNone) { }
76 static Representation None() { return Representation(kNone); }
106 if (kind_ == kExternal && other.kind_ == kNone) return true;
108 if (kind_ == kNone && other.kind_ == kExternal) return false;
143 bool IsNone() const { return kind_ == kNone; }
  /external/chromium_org/components/component_updater/
component_patcher_operation.cc 82 if (parse_result != ComponentUnpacker::kNone) {
101 if (error == ComponentUnpacker::kNone)
127 return ComponentUnpacker::kNone;
151 return ComponentUnpacker::kNone;
158 callback.Run(ComponentUnpacker::kNone, 0);
178 return ComponentUnpacker::kNone;
185 callback.Run(ComponentUnpacker::kNone, 0);
214 return ComponentUnpacker::kNone;
249 callback.Run(ComponentUnpacker::kNone, 0);
256 callback.Run(ComponentUnpacker::kNone, 0)
    [all...]
component_patcher.cc 78 DonePatching(ComponentUnpacker::kNone, 0);
109 if (error != ComponentUnpacker::kNone) {
component_unpacker.cc 117 error_(kNone),
231 kNone,
241 if (error_ != kNone) {
270 DCHECK(error_ == kNone);
  /external/chromium_org/v8/src/arm64/
delayed-masm-arm64.h 27 scratch_register_used_(false), pending_(kNone), saved_value_(0) {
66 bool pending() { return pending_ != kNone; }
86 pending_ = kNone;
133 kNone,
  /art/runtime/entrypoints/quick/
callee_save_frame.h 55 isa == kNone ? (LOG(FATAL) << "kNone has no frame size", 0) :
67 isa == kNone ? (LOG(FATAL) << "kNone has no pointer size", 0) :
  /frameworks/base/libs/hwui/
DrawProfiler.h 47 kNone,
DrawProfiler.cpp 25 #define RETURN_IF_PROFILING_DISABLED() if (CC_LIKELY(mType == kNone)) return
26 #define RETURN_IF_DISABLED() if (CC_LIKELY(mType == kNone && !mShowDirtyRegions)) return
60 : mType(kNone)
221 ProfileType type = kNone;
238 if (mType == kNone) {
  /external/chromium_org/extensions/common/permissions/
extensions_api_permissions.cc 54 APIPermissionInfo::kFlagCannotBeOptional, 0, PermissionMessage::kNone,
68 PermissionMessage::kNone, &CreateAPIPermission<UsbDevicePermission>},
permission_message.h 26 kNone,
95 COMPILE_ASSERT(PermissionMessage::kNone > PermissionMessage::kUnknown,
api_permission.cc 24 return info()->message_id() > PermissionMessage::kNone;
121 message_id_(info.message_id ? info.message_id : PermissionMessage::kNone),
  /external/chromium_org/v8/src/compiler/
schedule.cc 17 case BasicBlockData::kNone:
65 if (control != BasicBlock::kNone) {
schedule.h 33 kNone, // Control not initialized yet.
64 control_(kNone),
230 DCHECK(block->control_ == BasicBlock::kNone);
238 DCHECK(block->control_ == BasicBlock::kNone);
252 DCHECK(block->control_ == BasicBlock::kNone);
264 DCHECK(block->control_ == BasicBlock::kNone);
  /external/chromium_org/chrome/browser/extensions/api/omnibox/
omnibox_unittest.cc 20 const int kNone = ACMatchClassification::NONE;
61 styles_expected.push_back(ACMatchClassification(0, kNone));
63 styles_expected.push_back(ACMatchClassification(5, kNone));
65 styles_expected.push_back(ACMatchClassification(9, kNone));
140 styles_expected.push_back(ACMatchClassification(5, kNone));
226 styles_expected.push_back(ACMatchClassification(5, kNone));
  /external/chromium_org/media/filters/
skcanvas_video_renderer_unittest.cc 41 kNone,
220 case kNone:
254 kNone,
266 kNone,
319 Paint(cropped_frame(), target_canvas(), kNone);
354 Paint(cropped_frame(), &canvas, kNone);
373 kNone,
388 kNone,
403 kNone,
  /external/chromium_org/third_party/icu/source/i18n/
windtfmt.cpp 169 if (fDateStyle != DateFormat::kNone && fTimeStyle != DateFormat::kNone) {
186 } else if (fDateStyle != DateFormat::kNone) {
188 } else if (fTimeStyle != DateFormat::kNone) {
205 if (fDateStyle != DateFormat::kNone && fTimeStyle != DateFormat::kNone) {
digitlst.h 405 kNone=0,
441 fHave = kNone;
  /external/icu/icu4c/source/i18n/
windtfmt.cpp 169 if (fDateStyle != DateFormat::kNone && fTimeStyle != DateFormat::kNone) {
186 } else if (fDateStyle != DateFormat::kNone) {
188 } else if (fTimeStyle != DateFormat::kNone) {
205 if (fDateStyle != DateFormat::kNone && fTimeStyle != DateFormat::kNone) {
digitlst.h 405 kNone=0,
446 fHave = kNone;

Completed in 492 milliseconds

1 2 3 4 5