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

1 2 3 4 5 6 7 8 9

  /art/runtime/
experimental_flags.h 28 kNone = 0x0000,
33 constexpr ExperimentalFlags(decltype(kNone) t) : value_(static_cast<uint32_t>(t)) {}
35 constexpr operator decltype(kNone)() const {
36 return static_cast<decltype(kNone)>(value_);
40 return value_ != kNone;
43 constexpr ExperimentalFlags operator|(const decltype(kNone)& b) const {
44 return static_cast<decltype(kNone)>(value_ | static_cast<uint32_t>(b));
47 return static_cast<decltype(kNone)>(value_ | b.value_);
51 return static_cast<decltype(kNone)>(value_ & b.value_);
53 constexpr ExperimentalFlags operator&(const decltype(kNone)& b) const
    [all...]
  /art/runtime/verifier/
verify_mode.h 27 kNone, // Everything is assumed verified.
  /external/v8/src/
builtins.h 16 kNone = 0u,
55 V(Illegal, kNone) \
57 V(EmptyFunction, kNone) \
59 V(ArrayConcat, kNone) \
60 V(ArrayIsArray, kNone) \
61 V(ArrayPop, kNone) \
62 V(ArrayPush, kNone) \
63 V(ArrayShift, kNone) \
64 V(ArraySlice, kNone) \
65 V(ArraySplice, kNone) \
    [all...]
machine-type.h 19 kNone,
31 kNone,
44 : representation_(MachineRepresentation::kNone),
45 semantic_(MachineSemantic::kNone) {}
74 return MachineType(PointerRepresentation(), MachineSemantic::kNone);
124 return MachineType(MachineRepresentation::kNone, MachineSemantic::kNone);
129 return MachineType(MachineRepresentation::kWord8, MachineSemantic::kNone);
132 return MachineType(MachineRepresentation::kWord16, MachineSemantic::kNone);
135 return MachineType(MachineRepresentation::kWord32, MachineSemantic::kNone);
    [all...]
machine-type.cc 13 case MachineRepresentation::kNone:
39 case MachineSemantic::kNone:
64 } else if (type.representation() == MachineRepresentation::kNone) {
66 } else if (type.semantic() == MachineSemantic::kNone) {
dateparser.cc 21 int month = kNone;
22 int day = kNone;
24 if (named_month_ == kNone) {
77 if (hour_offset_ != kNone) {
100 if (sign_ != kNone) {
101 if (hour_ == kNone) hour_ = 0;
102 if (minute_ == kNone) minute_ = 0;
dateparser.h 42 static const int kNone = kMaxInt;
273 TimeZoneComposer() : sign_(kNone), hour_(kNone), minute_(kNone) {}
283 return hour_ != kNone && minute_ == kNone && TimeComposer::IsMinute(n);
287 bool IsEmpty() { return hour_ == kNone; }
296 TimeComposer() : index_(0), hour_offset_(kNone) {}
330 DayComposer() : index_(0), named_month_(kNone), is_iso_date_(false) {}
  /art/runtime/arch/
instruction_set_test.cc 32 EXPECT_EQ(kNone, GetInstructionSetFromString("none"));
33 EXPECT_EQ(kNone, GetInstructionSetFromString("random-string"));
44 EXPECT_STREQ("none", GetInstructionSetString(kNone));
instruction_set.cc 40 case kNone:
65 return kNone;
88 return kNone;
107 case kNone:
108 LOG(FATAL) << "ISA kNone does not have alignment.";
146 case kNone:
147 LOG(FATAL) << "kNone has no stack overflow size";
instruction_set.h 28 kNone,
52 static constexpr InstructionSet kRuntimeISA = kNone;
80 // Note: Returns kNone when the string cannot be parsed to a known value.
101 case kNone:
102 LOG(FATAL) << "ISA kNone does not have pointer size.";
120 case kNone:
141 case kNone:
142 LOG(FATAL) << "ISA kNone does not have bit width.";
170 case kNone:
171 LOG(FATAL) << "ISA kNone does not have spills."
    [all...]
  /external/v8/src/compiler/
type-hints.h 18 enum Hint { kNone, kSignedSmall, kSigned32, kNumber, kString, kAny };
20 BinaryOperationHints() : BinaryOperationHints(kNone, kNone, kNone) {}
58 kNone = 0u,
type-hints.cc 13 case BinaryOperationHints::kNone:
38 case ToBooleanHint::kNone:
68 if (hints == ToBooleanHint::kNone) return os << "None";
schedule.cc 25 control_(kNone),
99 case BasicBlock::kNone:
197 DCHECK_EQ(BasicBlock::kNone, block->control());
205 DCHECK_EQ(BasicBlock::kNone, block->control());
216 DCHECK_EQ(BasicBlock::kNone, block->control());
227 DCHECK_EQ(BasicBlock::kNone, block->control());
238 DCHECK_EQ(BasicBlock::kNone, block->control());
246 DCHECK_EQ(BasicBlock::kNone, block->control());
254 DCHECK_EQ(BasicBlock::kNone, block->control());
262 DCHECK_EQ(BasicBlock::kNone, block->control())
    [all...]
common-operator.h 32 enum class BranchHint : uint8_t { kNone, kTrue, kFalse };
36 case BranchHint::kNone:
75 BranchHint hint = BranchHint::kNone)
130 const Operator* Branch(BranchHint = BranchHint::kNone);
160 const Operator* Select(MachineRepresentation, BranchHint = BranchHint::kNone);
  /external/v8/src/interpreter/
bytecode-traits.h 17 #define OPERAND_TERM OperandType::kNone, OperandType::kNone, OperandType::kNone
156 struct BytecodeTraits<OperandType::kNone, OPERAND_TERM> {
159 return OperandType::kNone;
164 return OperandSize::kNone;
173 static const int kSize = 1 + OperandTraits<OperandType::kNone>::kSize;
bytecodes.h 22 V(None, OperandSize::kNone) \
41 V(LdaZero, OperandType::kNone) \
43 V(LdaUndefined, OperandType::kNone) \
44 V(LdaNull, OperandType::kNone) \
45 V(LdaTheHole, OperandType::kNone) \
46 V(LdaTrue, OperandType::kNone) \
47 V(LdaFalse, OperandType::kNone) \
136 V(Inc, OperandType::kNone) \
137 V(Dec, OperandType::kNone) \
138 V(LogicalNot, OperandType::kNone) \
    [all...]
  /external/libweave/src/privet/
privet_types.h 59 explicit UserInfo(AuthScope scope = AuthScope::kNone,
61 : scope_{scope}, id_{scope == AuthScope::kNone ? UserAppId{} : id} {}
105 kNone,
112 : status_(kNone), error_(std::move(error)) {}
privet_types.cc 44 {SetupState::kNone, nullptr},
59 {AuthScope::kNone, "none"},
  /external/v8/src/crankshaft/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,
  /external/libweave/include/weave/
settings.h 17 kNone,
  /frameworks/base/tools/aapt2/compile/
Pseudolocalizer.h 41 kNone,
Pseudolocalizer_test.cpp 55 EXPECT_TRUE(simpleHelper("", "", Pseudolocalizer::Method::kNone));
56 EXPECT_TRUE(simpleHelper("Hello, world", "Hello, world", Pseudolocalizer::Method::kNone));
59 "Hello, world", Pseudolocalizer::Method::kNone));
222 pseudo.setMethod(Pseudolocalizer::Method::kNone);
  /system/core/adb/
shell_service.h 136 kNone,
  /system/update_engine/update_manager/
updater_provider.h 42 kNone,
  /art/runtime/entrypoints/quick/
callee_save_frame.h 84 isa == kNone ? (LOG(FATAL) << "kNone has no frame size", 0) :
97 isa == kNone ? (LOG(FATAL) << "kNone has no pointer size", 0) :

Completed in 577 milliseconds

1 2 3 4 5 6 7 8 9