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

1 2 3 4 5 6 7 8 91011>>

  /art/runtime/
experimental_flags.h 28 kNone = 0x0000,
33 constexpr ExperimentalFlags(decltype(kNone) t) // NOLINT, implicit
36 constexpr operator decltype(kNone)() const {
37 return static_cast<decltype(kNone)>(value_);
41 return value_ != kNone;
44 constexpr ExperimentalFlags operator|(const decltype(kNone)& b) const {
45 return static_cast<decltype(kNone)>(value_ | static_cast<uint32_t>(b));
48 return static_cast<decltype(kNone)>(value_ | b.value_);
52 return static_cast<decltype(kNone)>(value_ & b.value_);
54 constexpr ExperimentalFlags operator&(const decltype(kNone)& b) const
    [all...]
  /external/v8/src/
machine-type.h 19 kNone,
43 kNone,
56 : representation_(MachineRepresentation::kNone),
57 semantic_(MachineSemantic::kNone) {}
72 bool IsNone() { return representation() == MachineRepresentation::kNone; }
88 return MachineType(PointerRepresentation(), MachineSemantic::kNone);
102 return MachineType(MachineRepresentation::kSimd128, MachineSemantic::kNone);
149 return MachineType(MachineRepresentation::kNone, MachineSemantic::kNone);
154 return MachineType(MachineRepresentation::kWord8, MachineSemantic::kNone);
    [all...]
machine-type.cc 17 case MachineRepresentation::kNone:
48 case MachineSemantic::kNone:
73 } else if (type.representation() == MachineRepresentation::kNone) {
75 } else if (type.semantic() == MachineSemantic::kNone) {
type-hints.cc 12 case BinaryOperationHint::kNone:
31 case CompareOperationHint::kNone:
48 case ToBooleanHint::kNone:
79 if (hints == ToBooleanHint::kNone) return os << "None";
type-hints.h 16 kNone,
32 kNone,
47 kNone = 0u,
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;
type-feedback-vector-inl.h 126 case BinaryOperationFeedback::kNone:
127 return BinaryOperationHint::kNone;
140 return BinaryOperationHint::kNone;
146 case CompareOperationFeedback::kNone:
147 return CompareOperationHint::kNone;
156 return CompareOperationHint::kNone;
201 } else if (hint != CompareOperationHint::kNone) {
210 } else if (hint != BinaryOperationHint::kNone) {
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/compiler/
intrinsics_enum.h 26 kNone,
  /external/skia/src/gpu/ops/
GrDashOp.h 20 kNone,
GrDashLinePathRenderer.cpp 33 GrDashOp::AAMode aaMode = GrDashOp::AAMode::kNone;
35 case GrAAType::kNone:
  /art/runtime/arch/
instruction_set.cc 36 case kNone:
61 case kNone:
86 return kNone;
109 return kNone;
128 case kNone:
129 LOG(FATAL) << "ISA kNone does not have alignment.";
197 case kNone:
198 LOG(FATAL) << "kNone has no stack overflow size";
instruction_set_test.cc 32 EXPECT_EQ(kNone, GetInstructionSetFromString("none"));
33 EXPECT_EQ(kNone, GetInstructionSetFromString("random-string"));
44 EXPECT_STREQ("none", GetInstructionSetString(kNone));
  /external/v8/src/interpreter/
bytecode-traits.h 18 static const OperandSize kUnscaledSize = OperandSize::kNone;
33 typedef OperandTypeInfoTraits<OperandTypeInfo::kNone> TypeInfoTraits;
34 static const OperandTypeInfo kOperandTypeInfo = OperandTypeInfo::kNone;
133 BytecodeTraits<accumulator_use>::kOperandTypes[] = {OperandType::kNone};
137 OperandTypeInfo::kNone};
141 OperandSize::kNone};
145 OperandSize::kNone};
149 OperandSize::kNone};
bytecode-operands.cc 17 case AccumulatorUse::kNone:
56 case OperandSize::kNone:
bytecode-operands.h 14 #define INVALID_OPERAND_TYPE_LIST(V) V(None, OperandTypeInfo::kNone)
69 kNone = 0,
79 V(None, false, false, OperandSize::kNone) \
104 kNone = 0,
  /external/skia/experimental/svg/model/
SkSVGAttribute.cpp 17 result.fStroke.set(SkSVGPaint(SkSVGPaint::Type::kNone));
  /external/skia/include/gpu/
GrContextOptions.h 90 kNone = 0, // Always use sofware masks.
GrRenderTarget.h 120 kNone = 0,
127 GrRenderTarget(GrGpu*, const GrSurfaceDesc&, Flags = Flags::kNone,
  /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/skia/tools/flags/
SkCommonFlagsPathRenderer.h 49 return GpuPathRenderers::kNone;
58 GpuPathRenderers::kAll : GpuPathRenderers::kNone;
  /external/v8/src/compiler/
representation-change.h 18 static Truncation None() { return Truncation(TruncationKind::kNone); }
30 bool IsUnused() const { return kind_ == TruncationKind::kNone; }
61 kNone,
79 kNone,
89 case TypeCheckKind::kNone:
122 TypeCheckKind type_check = TypeCheckKind::kNone,
197 return UseInfo(MachineRepresentation::kNone, Truncation::Any());
200 return UseInfo(MachineRepresentation::kNone, Truncation::Bool());
205 return UseInfo(MachineRepresentation::kNone, Truncation::None());
type-hint-analyzer.cc 22 return BinaryOperationHint::kNone;
37 return BinaryOperationHint::kNone;
44 return CompareOperationHint::kNone;
61 return CompareOperationHint::kNone;
  /external/skia/tools/gpu/
GrContextFactory.h 93 kNone = 0x0,
134 ContextOverrides overrides = ContextOverrides::kNone);
146 GrContext* get(ContextType type, ContextOverrides overrides = ContextOverrides::kNone) {
  /art/runtime/verifier/
verifier_enums.h 27 kNone, // Everything is assumed verified.

Completed in 817 milliseconds

1 2 3 4 5 6 7 8 91011>>