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

1 2 3

  /external/v8/src/
property-details.h 103 Representation() : kind_(kNone) { }
120 return kind_ == other.kind_;
133 if (kind_ == kExternal && other.kind_ == kNone) return true;
134 if (kind_ == kExternal && other.kind_ == kExternal) return false;
135 if (kind_ == kNone && other.kind_ == kExternal) return false;
137 DCHECK(kind_ != kExternal)
196 int8_t kind_; member in class:v8::internal::Representation
    [all...]
  /art/runtime/
indirect_reference_table-inl.h 35 LOG(WARNING) << "Attempt to look up nullptr " << kind_;
39 LOG(ERROR) << "JNI ERROR (app bug): invalid " << kind_ << " " << iref;
46 LOG(ERROR) << "JNI ERROR (app bug): accessed stale " << kind_ << " "
52 LOG(ERROR) << "JNI ERROR (app bug): accessed deleted " << kind_ << " " << iref;
67 << " stale " << kind_ << " " << iref
indirect_reference_table.h 371 uintptr_t uref = (serialChunk << 20) | (tableIndex << 2) | kind_;
391 const IndirectRefKind kind_; member in class:art::IndirectReferenceTable
indirect_reference_table.cc 73 : kind_(desiredKind),
116 LOG(FATAL) << "JNI ERROR (app bug): " << kind_ << " table overflow "
283 os << kind_ << " table dump:\n"; local
  /external/v8/src/crankshaft/
hydrogen-types.h 47 return HType(static_cast<Kind>(kind_ & other.kind_));
51 return kind_ == other.kind_;
82 explicit HType(Kind kind) : kind_(kind) { }
84 int16_t kind_;
hydrogen-types.cc 62 switch (t.kind_) {
  /external/v8/src/compiler/
frame-states.h 39 Kind kind() const { return kind_; }
50 return kind_ == kPushOutput && parameter_ == 0;
54 return kind_ == kPushOutput ? GetPushCount() : 1;
58 return kind_ == other.kind_ && parameter_ == other.parameter_;
70 : kind_(kind), parameter_(parameter) {}
72 Kind const kind_; member in class:v8::internal::compiler::OutputFrameStateCombine
representation-change.h 32 return LessGeneral(kind_, TruncationKind::kWord32);
35 return LessGeneral(kind_, TruncationKind::kWord32) ||
36 LessGeneral(kind_, TruncationKind::kBool);
39 return LessGeneral(kind_, TruncationKind::kFloat64) ||
40 LessGeneral(kind_, TruncationKind::kWord64);
64 explicit Truncation(TruncationKind kind) : kind_(kind) {}
65 TruncationKind kind() const { return kind_; }
67 TruncationKind kind_; member in class:v8::internal::compiler::final
liveness-analyzer.h 94 Kind kind() const { return kind_; }
104 explicit Entry(Node* node) : kind_(kCheckpoint), var_(-1), node_(node) {}
105 Entry(Kind kind, int var) : kind_(kind), var_(var), node_(nullptr) {
110 Kind kind_; member in class:v8::internal::compiler::LivenessAnalyzerBlock::Entry
frame-states.cc 15 return base::hash_combine(sc.kind_, sc.parameter_);
20 switch (sc.kind_) {
linkage.h 170 : kind_(kind),
186 Kind kind() const { return kind_; }
189 bool IsCFunctionCall() const { return kind_ == kCallAddress; }
192 bool IsJSFunctionCall() const { return kind_ == kCallJSFunction; }
266 const Kind kind_; member in class:v8::internal::compiler::final
access-info.h 91 Kind kind() const { return kind_; }
109 Kind kind_; member in class:v8::internal::compiler::final
code-stub-assembler.cc 35 kind_(kind),
48 isolate(), raw_assembler_->call_descriptor(), graph(), schedule, kind_,
code-stub-assembler.h 85 Code::Kind kind_; member in class:v8::internal::compiler::CodeStubAssembler
access-info.cc 97 : kind_(kInvalid), receiver_type_(Type::None()), field_type_(Type::Any()) {}
102 : kind_(kNotFound),
111 : kind_(kDataConstant),
123 : kind_(kDataField),
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
struct.pb.h 310 } kind_; member in class:google::protobuf::Value
444 kind_.null_value_ = 0;
451 return static_cast< ::google::protobuf::NullValue >(kind_.null_value_);
460 kind_.null_value_ = value;
473 kind_.number_value_ = 0;
480 return kind_.number_value_;
489 kind_.number_value_ = value;
502 kind_.string_value_.DestroyNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
509 return kind_.string_value_.GetNoArena(&::google::protobuf::internal::GetEmptyStringAlreadyInited());
518 kind_.string_value_.UnsafeSetDefault(&::google::protobuf::internal::GetEmptyStringAlreadyInited())
    [all...]
  /art/runtime/base/
arena_bit_vector.cc 40 explicit ArenaBitVectorAllocatorKindImpl(ArenaAllocKind kind) : kind_(kind) { }
43 ArenaAllocKind Kind() { return kind_; }
46 ArenaAllocKind kind_; member in class:art::ArenaBitVectorAllocatorKindImpl
arena_containers.h 99 explicit ArenaAllocatorAdapterKindImpl(ArenaAllocKind kind) : kind_(kind) { }
102 ArenaAllocKind Kind() { return kind_; }
105 ArenaAllocKind kind_; member in class:art::ArenaAllocatorAdapterKindImpl
  /external/v8/src/ic/
access-compiler.h 40 kind_(kind),
48 Code::Kind kind() const { return kind_; }
76 Code::Kind kind_; member in class:v8::internal::BASE_EMBEDDED
  /external/v8/src/ast/
variables.h 86 bool is_function() const { return kind_ == FUNCTION; }
87 bool is_class() const { return kind_ == CLASS; }
88 bool is_this() const { return kind_ == THIS; }
89 bool is_arguments() const { return kind_ == ARGUMENTS; }
168 Kind kind_; member in class:v8::internal::Variable
variables.cc 39 kind_(kind),
  /external/regex-re2/re2/testing/
tester.cc 164 kind_(kind),
197 << " (" << FormatKind(kind_)
231 if (kind_ == Prog::kLongestMatch)
251 kind_ != Prog::kLongestMatch) {
306 prog_->UnsafeSearchBacktrack(text, context, anchor, kind_,
317 prog_->SearchNFA(text, context, anchor, kind_,
327 result->matched = prog_->SearchDFA(text, context, anchor, kind_, NULL,
337 prog_->SearchDFA(text, context, anchor, kind_, result->submatch,
362 result->matched = prog_->SearchOnePass(text, context, anchor, kind_,
372 result->matched = prog_->SearchBitState(text, context, anchor, kind_,
    [all...]
tester.h 76 Prog::MatchKind kind_; // kind of match member in class:re2::TestInstance
  /external/regex-re2/re2/
dfa.cc 60 Prog::MatchKind kind() { return kind_; }
342 Prog::MatchKind kind_; // The kind of DFA. member in class:re2::DFA
436 kind_(kind),
444 fprintf(stderr, "\nkind %d\n%s\n", (int)kind_, prog_->DumpUnanchored().c_str());
447 if (kind_ == Prog::kLongestMatch) {
621 if (sawmatch && (kind_ == Prog::kFirstMatch || q->is_mark(id)))
637 if (kind_ != Prog::kManyMatch &&
638 (kind_ != Prog::kFirstMatch ||
640 (kind_ != Prog::kLongestMatch || !sawmark) &&
712 if (kind_ == Prog::kLongestMatch)
    [all...]
  /system/tools/aidl/
type_namespace.cpp 75 : kind_(kind),

Completed in 289 milliseconds

1 2 3