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

1 2 3

  /art/runtime/verifier/
verify_mode.h 27 kNone, // Everything is assumed verified.
  /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...]
  /external/google-tv-pairing-protocol/cpp/src/polo/wire/protobuf/
protobufwireadapter.h 80 kNone,
  /frameworks/base/tools/aapt2/compile/
Pseudolocalizer.h 41 kNone,
  /system/connectivity/shill/wifi/
tdls_manager.h 53 kNone,
  /system/core/adb/
shell_service.h 136 kNone,
  /system/update_engine/
certificate_checker.h 83 kNone,
  /system/update_engine/update_manager/
updater_provider.h 42 kNone,
  /external/webrtc/webrtc/modules/video_coding/include/
video_coding.h 69 enum ReceiverRobustness { kNone, kHardNack, kSoftNack, kReferenceSelection };
  /art/compiler/
oat_writer.cc 132 type_ = kNone;
138 kNone,
    [all...]
  /art/runtime/arch/
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/gmock/include/gmock/
gmock-spec-builders.h 249 : file_(a_file), line_(a_line), last_clause_(kNone) {}
260 kNone,
279 // Initially kNone and changes as the statement is parsed.
724 kNone,
    [all...]
  /external/google-breakpad/src/testing/include/gmock/
gmock-spec-builders.h 245 : file_(a_file), line_(a_line), last_clause_(kNone) {}
256 kNone,
275 // Initially kNone and changes as the statement is parsed.
716 kNone,
    [all...]
  /external/icu/icu4c/source/i18n/
digitlst.h 479 kNone=0,
521 fHave = kNone;
  /external/libweave/include/weave/
settings.h 17 kNone,
  /external/libweave/src/
config.h 25 kNone,
38 RootClientTokenOwner root_client_token_owner{RootClientTokenOwner::kNone};
  /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)) {}
  /external/opencv3/3rdparty/libwebp/enc/
backward_references.h 107 kNone
  /external/v8/src/compiler/
common-operator.h 24 enum class BranchHint : uint8_t { kNone, kTrue, kFalse };
28 case BranchHint::kNone:
67 BranchHint hint = BranchHint::kNone)
164 const Operator* Branch(BranchHint = BranchHint::kNone);
201 const Operator* Select(MachineRepresentation, BranchHint = BranchHint::kNone);
type-hints.h 19 kNone,
27 BinaryOperationHints() : BinaryOperationHints(kNone, kNone, kNone) {}
71 kNone,
82 CompareOperationHints() : CompareOperationHints(kNone, kNone, kNone) {}
119 kNone = 0u,
  /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/v8/src/interpreter/
bytecode-pipeline.h 58 : position_type_(PositionType::kNone),
114 bool is_valid() const { return position_type_ != PositionType::kNone; }
116 position_type_ = PositionType::kNone;
131 enum class PositionType : uint8_t { kNone, kExpression, kStatement };
  /external/webp/src/enc/
backward_references.h 35 kNone
  /hardware/qcom/display/msm8996/sdm/libs/hwc2/
hwc_layers.h 41 kNone = 0x000,
78 void ResetGeometryChanges() { geometry_changes_ = GeometryChanges::kNone; }
95 uint32_t geometry_changes_ = GeometryChanges::kNone;
  /hardware/qcom/display/msmcobalt/sdm/libs/hwc2/
hwc_layers.h 41 kNone = 0x000,
78 void ResetGeometryChanges() { geometry_changes_ = GeometryChanges::kNone; }
95 uint32_t geometry_changes_ = GeometryChanges::kNone;

Completed in 1405 milliseconds

1 2 3