Home
last modified time | relevance | path

Searched refs:IsUnion (Results 1 – 9 of 9) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/BPF/
DBTFDebug.cpp97 BTFTypeFwd::BTFTypeFwd(StringRef Name, bool IsUnion) : Name(Name) { in BTFTypeFwd() argument
99 BTFType.Info = IsUnion << 31 | Kind << 24; in BTFTypeFwd()
526 void BTFDebug::visitFwdDeclType(const DICompositeType *CTy, bool IsUnion, in visitFwdDeclType() argument
528 auto TypeEntry = std::make_unique<BTFTypeFwd>(CTy->getName(), IsUnion); in visitFwdDeclType()
1212 bool IsUnion = Fixup.second.first; in endModule() local
1224 auto FwdTypeEntry = std::make_unique<BTFTypeFwd>(TypeName, IsUnion); in endModule()
DBTFDebug.h74 BTFTypeFwd(StringRef Name, bool IsUnion);
275 void visitFwdDeclType(const DICompositeType *CTy, bool IsUnion,
/third_party/flatbuffers/src/
Didl_gen_csharp.cpp926 if (IsScalar(underlying_type.base_type) && !IsUnion(field.value.type)) { in GenStruct()
1966 if (IsUnion(field.value.type)) { in GenStruct_ObjectAPI()
2007 if (IsUnion(field.value.type)) { in GenStruct_ObjectAPI()
Didl_gen_rust.cpp933 if (field.IsOptional() && !IsUnion(field.value.type)) { return "None"; } in GetDefaultValue()
1156 if (in_a_table && !IsUnion(type) && field.IsOptional()) { in ObjectFieldType()
Didl_gen_java.cpp912 if (IsScalar(underlying_type.base_type) && !IsUnion(field.value.type)) { in GenStruct()
Didl_gen_ts.cpp1266 !IsUnion(field.value.type)) { in GenStruct()
Didl_gen_swift.cpp686 if (parser_.opts.mutable_buffer && !IsUnion(field.value.type)) in GenTableReaderFields()
Didl_gen_cpp.cpp2179 if (is_scalar && IsUnion(type)) in GenTableFieldSetter()
/third_party/flatbuffers/include/flatbuffers/
Didl.h474 inline bool IsUnion(const Type &type) { in IsUnion() function