Home
last modified time | relevance | path

Searched refs:IsClass (Results 1 – 21 of 21) sorted by relevance

/third_party/node/deps/v8/src/objects/
Dfield-type.cc45 bool FieldType::IsClass() const { return this->IsMap(); } in IsClass() function in v8::internal::FieldType
48 DCHECK(IsClass()); in AsClass()
53 return !this->IsClass() || AsClass().is_stable(); in NowStable()
61 DCHECK(IsClass()); in NowIs()
62 DCHECK(other.IsClass()); in NowIs()
69 if (IsClass() && other.IsClass()) { in Equals()
83 DCHECK(IsClass()); in PrintTo()
Dfield-type.h36 bool IsClass() const;
Dmap.cc414 if (type->IsClass()) { in WrapFieldType()
/third_party/typescript/tests/cases/conformance/parser/ecmascript5/
DparserRealSource2.ts220 IsClass = 1 << 7,
DparserRealSource7.ts410 classType.typeFlags |= TypeFlags.IsClass;
411 instanceType.typeFlags |= TypeFlags.IsClass;
DparserRealSource8.ts198 …if (!(instType.typeFlags & TypeFlags.IsClass) && !hasFlag(funcDecl.fncFlags, FncFlags.ClassMethod)…
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/TableGen/
DRecord.h1450 bool IsClass; variable
1459 ID(LastID++), IsAnonymous(Anonymous), IsClass(Class) { in Name()
1474 IsAnonymous(O.IsAnonymous), IsClass(O.IsClass) { } in Record()
1501 bool isClass() const { return IsClass; } in isClass()
/third_party/typescript/tests/baselines/reference/
DparserRealSource2.types1056 IsClass = 1 << 7,
1057 >IsClass : TypeFlags
DparserRealSource2.symbols612 IsClass = 1 << 7,
613 >IsClass : Symbol(TypeFlags.IsClass, Decl(parserRealSource2.ts, 218, 37))
DparserRealSource2.errors.txt226 IsClass = 1 << 7,
DparserRealSource8.types930 …if (!(instType.typeFlags & TypeFlags.IsClass) && !hasFlag(funcDecl.fncFlags, FncFlags.ClassMethod)…
931 >!(instType.typeFlags & TypeFlags.IsClass) && !hasFlag(funcDecl.fncFlags, FncFlags.ClassMethod) : b…
932 >!(instType.typeFlags & TypeFlags.IsClass) : boolean
933 >(instType.typeFlags & TypeFlags.IsClass) : number
934 >instType.typeFlags & TypeFlags.IsClass : number
938 >TypeFlags.IsClass : any
940 >IsClass : any
DparserRealSource7.js411 classType.typeFlags |= TypeFlags.IsClass;
412 instanceType.typeFlags |= TypeFlags.IsClass;
1160 classType.typeFlags |= TypeFlags.IsClass;
1161 instanceType.typeFlags |= TypeFlags.IsClass;
DparserRealSource2.js221 IsClass = 1 << 7,
DparserRealSource8.js199 …if (!(instType.typeFlags & TypeFlags.IsClass) && !hasFlag(funcDecl.fncFlags, FncFlags.ClassMethod)…
638 …if (!(instType.typeFlags & TypeFlags.IsClass) && !hasFlag(funcDecl.fncFlags, FncFlags.ClassMethod)…
DparserRealSource7.types2224 classType.typeFlags |= TypeFlags.IsClass;
2225 >classType.typeFlags |= TypeFlags.IsClass : number
2229 >TypeFlags.IsClass : any
2231 >IsClass : any
2233 instanceType.typeFlags |= TypeFlags.IsClass;
2234 >instanceType.typeFlags |= TypeFlags.IsClass : number
2238 >TypeFlags.IsClass : any
2240 >IsClass : any
DparserRealSource7.errors.txt1044 classType.typeFlags |= TypeFlags.IsClass;
1047 instanceType.typeFlags |= TypeFlags.IsClass;
DparserRealSource8.errors.txt431 …if (!(instType.typeFlags & TypeFlags.IsClass) && !hasFlag(funcDecl.fncFlags, FncFlags.ClassMethod)…
DparserRealSource7.symbols1153 classType.typeFlags |= TypeFlags.IsClass;
1156 instanceType.typeFlags |= TypeFlags.IsClass;
DparserRealSource8.symbols617 …if (!(instType.typeFlags & TypeFlags.IsClass) && !hasFlag(funcDecl.fncFlags, FncFlags.ClassMethod)…
/third_party/node/deps/v8/src/compiler/
Daccess-info.cc474 if (descriptors_field_type->IsClass()) { in ComputeDataFieldAccessInfo()
1147 if (descriptors_field_type->IsClass()) { in LookupTransition()
/third_party/rust/crates/bindgen/bindgen-tests/tests/
Dstylo.hpp985 struct IsClass struct
1062 : IntegralConstant<bool, IsClass<T>::value && __is_empty(T)>