Home
last modified time | relevance | path

Searched refs:kFlagsIndex (Results 1 – 12 of 12) sorted by relevance

/external/v8/src/objects/
Dproperty-descriptor-object.h33 enum { kFlagsIndex, kValueIndex, kGetIndex, kSetIndex, kLength }; enumerator
53 FixedArray::OffsetOfElementAt(PropertyDescriptorObject::kFlagsIndex);
Djs-regexp.h102 static const int kFlagsIndex = kSourceIndex + 1; variable
103 static const int kDataIndex = kFlagsIndex + 1;
Dliteral-objects-inl.h29 FixedArray::OffsetOfElementAt(kFlagsIndex));
Dcompilation-cache-inl.h64 Smi::cast(val->get(JSRegExp::kFlagsIndex))); in HashForObject()
Djs-regexp-inl.h47 Smi* smi = Smi::cast(FixedArray::cast(data)->get(kFlagsIndex)); in GetFlags()
Dliteral-objects.h140 kFlagsIndex, enumerator
Dcode-inl.h143 int DependentCode::flags() { return Smi::ToInt(Get(kFlagsIndex)->ToSmi()); } in flags()
146 Set(kFlagsIndex, MaybeObject::FromObject(Smi::FromInt(flags))); in set_flags()
Dcode.h673 static const int kFlagsIndex = 1; variable
/external/v8/src/parsing/
Dparser.h40 kFlagsIndex, enumerator
64 return LanguageModeField::decode(backing_[kFlagsIndex]); in language_mode()
67 return UsesSuperPropertyField::decode(backing_[kFlagsIndex]); in uses_super_property()
/external/v8/src/
Dproperty-descriptor.cc360 obj->set(PropertyDescriptorObject::kFlagsIndex, Smi::FromInt(flags)); in ToPropertyDescriptorObject()
Dobjects.cc16651 && (flags_ == val->get(JSRegExp::kFlagsIndex)); in IsMatch()
/external/v8/src/heap/
Dfactory.cc3823 store->set(JSRegExp::kFlagsIndex, Smi::FromInt(flags)); in SetRegExpAtomData()
3835 store->set(JSRegExp::kFlagsIndex, Smi::FromInt(flags)); in SetRegExpIrregexpData()