Home
last modified time | relevance | path

Searched refs:TypeArray (Results 1 – 14 of 14) sorted by relevance

/external/xmlrpcpp/src/
DXmlRpcValue.cpp60 case TypeArray: delete _value.asArray; break; in invalidate()
79 case TypeArray: _value.asArray = new ValueArray(); break; in assertTypeOrInvalid()
90 if (_type != TypeArray) in assertArray()
100 _type = TypeArray; in assertArray()
102 } else if (_type == TypeArray) { in assertArray()
133 case TypeArray: _value.asArray = new ValueArray(*rhs._value.asArray); break; in operator =()
162 case TypeArray: return *_value.asArray == *other._value.asArray; in operator ==()
199 case TypeArray: return int(_value.asArray->size()); in size()
270 case TypeArray: return arrayToXml(); in toXml()
483 _type = TypeArray; in arrayFromXml()
[all …]
DXmlRpcValue.h34 TypeArray, enumerator
DXmlRpcClient.cpp208 if (params.getType() == XmlRpcValue::TypeArray) in generateRequest()
DXmlRpcServerConnection.cpp279 if (params.size() != 1 || params[0].getType() != XmlRpcValue::TypeArray) in executeMulticall()
/external/vulkan-validation-layers/demos/android/include/
Dcube.vert.h56 13: TypeArray 7(fvec4) 12
57 14: TypeArray 7(fvec4) 12
/external/spirv-llvm/test/SPIRV/
Dlayout.ll47 ; CHECK: {{[0-9]*}} TypeArray [[TypeArray:[0-9]+]] [[TypeFloat]] [[Two]]
/external/spirv-llvm/test/SPIRV/transcoding/
DBuildNDRange_2.ll31 ; CHECK-SPIRV-DAG: TypeArray [[ARRAY_T2:[0-9]+]] {{[0-9]+}} [[LEN2_ID]]
32 ; CHECK-SPIRV-DAG: TypeArray [[ARRAY_T3:[0-9]+]] {{[0-9]+}} [[LEN3_ID]]
/external/llvm/lib/IR/
DLLVMContextImpl.h488 Metadata *TypeArray;
490 MDNodeKeyImpl(unsigned Flags, uint8_t CC, Metadata *TypeArray)
491 : Flags(Flags), CC(CC), TypeArray(TypeArray) {}
493 : Flags(N->getFlags()), CC(N->getCC()), TypeArray(N->getRawTypeArray()) {}
497 TypeArray == RHS->getRawTypeArray();
499 unsigned getHashValue() const { return hash_combine(Flags, CC, TypeArray); }
DDebugInfoMetadata.cpp340 Metadata *TypeArray, in getImpl() argument
343 DEFINE_GETIMPL_LOOKUP(DISubroutineType, (Flags, CC, TypeArray)); in getImpl()
344 Metadata *Ops[] = {nullptr, nullptr, nullptr, TypeArray}; in getImpl()
/external/llvm/examples/ExceptionDemo/
DExceptionDemo.cpp1638 typedef llvm::ArrayRef<llvm::Type*> TypeArray; typedef
1666 TypeArray(builder.getInt32Ty())); in createStandardUtilityFunctions()
1675 TypeArray(caughtResultFieldTypes)); in createStandardUtilityFunctions()
1679 TypeArray(ourTypeInfoType)); in createStandardUtilityFunctions()
1687 TypeArray(builder.getInt64Ty())); in createStandardUtilityFunctions()
/external/swiftshader/third_party/LLVM/examples/ExceptionDemo/
DExceptionDemo.cpp1682 typedef llvm::ArrayRef<llvm::Type*> TypeArray; typedef
1710 TypeArray(builder.getInt32Ty())); in createStandardUtilityFunctions()
1721 TypeArray(caughtResultFieldTypes)); in createStandardUtilityFunctions()
1727 TypeArray(ourTypeInfoType)); in createStandardUtilityFunctions()
1735 TypeArray(builder.getInt64Ty())); in createStandardUtilityFunctions()
/external/llvm/unittests/IR/
DMetadataTest.cpp1255 MDTuple *TypeArray = getTuple(); in TEST_F() local
1257 auto *N = DISubroutineType::get(Context, Flags, 0, TypeArray); in TEST_F()
1260 EXPECT_EQ(TypeArray, N->getTypeArray().get()); in TEST_F()
1261 EXPECT_EQ(N, DISubroutineType::get(Context, Flags, 0, TypeArray)); in TEST_F()
1263 EXPECT_NE(N, DISubroutineType::get(Context, Flags + 1, 0, TypeArray)); in TEST_F()
1268 Context, Flags, dwarf::DW_CC_BORLAND_msfastcall, TypeArray); in TEST_F()
1270 dwarf::DW_CC_BORLAND_stdcall, TypeArray); in TEST_F()
1273 dwarf::DW_CC_BORLAND_msfastcall, TypeArray)); in TEST_F()
1275 Context, Flags, dwarf::DW_CC_BORLAND_stdcall, TypeArray)); in TEST_F()
/external/llvm/include/llvm/IR/
DDebugInfoMetadata.h944 uint8_t CC, DITypeRefArray TypeArray,
947 return getImpl(Context, Flags, CC, TypeArray.get(), Storage, ShouldCreate);
950 uint8_t CC, Metadata *TypeArray,
960 (unsigned Flags, uint8_t CC, DITypeRefArray TypeArray),
961 (Flags, CC, TypeArray))
963 (unsigned Flags, uint8_t CC, Metadata *TypeArray),
964 (Flags, CC, TypeArray))
/external/spirv-llvm/lib/SPIRV/libSPIRV/
DSPIRVOpCodeEnum.h26 _SPIRV_OP(TypeArray, 28)