/external/tensorflow/tensorflow/core/lib/gtl/ |
D | int_type.h | 191 typedef IntType<IntTypeName, ValueType> ThisType; // Syntactic sugar. typedef 227 ThisType& operator++() { // prefix ++ 231 const ThisType operator++(int v) { // postfix ++ 232 ThisType temp(*this); 236 ThisType& operator--() { // prefix -- 240 const ThisType operator--(int v) { // postfix -- 241 ThisType temp(*this); 247 constexpr const ThisType operator+() const { return ThisType(value_); } 248 constexpr const ThisType operator-() const { return ThisType(-value_); } 249 constexpr const ThisType operator~() const { return ThisType(~value_); } [all …]
|
/external/swiftshader/tests/VulkanWrapper/ |
D | DrawTester.hpp | 34 using ThisType = DrawTester; typedef in DrawTester 49 void onCreateVertexBuffers(std::function<void(ThisType &tester)> callback); 54 …torSetLayouts(std::function<std::vector<vk::DescriptorSetLayoutBinding>(ThisType &tester)> callbac… 58 void onCreateVertexShader(std::function<vk::ShaderModule(ThisType &tester)> callback); 62 void onCreateFragmentShader(std::function<vk::ShaderModule(ThisType &tester)> callback); 67 …void onUpdateDescriptorSet(std::function<void(ThisType &tester, vk::CommandPool &commandPool, vk::… 125 std::function<void(ThisType &tester)> createVertexBuffers = [](auto &) {}; in __anoncf6d42890102() 126 …std::function<std::vector<vk::DescriptorSetLayoutBinding>(ThisType &tester)> createDescriptorSetLa… in __anoncf6d42890202() 127 …std::function<vk::ShaderModule(ThisType &tester)> createVertexShader = [](auto &) { return vk::Sha… in __anoncf6d42890302() 128 …std::function<vk::ShaderModule(ThisType &tester)> createFragmentShader = [](auto &) { return vk::S… in __anoncf6d42890402() [all …]
|
/external/llvm-project/clang-tools-extra/clang-tidy/bugprone/ |
D | ParentVirtualCallCheck.cpp | 111 const auto *ThisType = ThisTypePtr->getPointeeCXXRecordDecl(); in check() local 112 assert(ThisType); in check() 120 if (isParentOf(*CastToType, *ThisType)) in check() 124 getParentsByGrandParent(*CastToType, *ThisType, *MemberDecl); in check()
|
/external/llvm-project/llvm/test/DebugInfo/PDB/ |
D | pdbdump-yaml-types.test | 82 YAML: ThisType: 4101 92 YAML: ThisType: 4101 182 YAML: ThisType: 4111 195 YAML: ThisType: 4111 205 YAML: ThisType: 4111 305 YAML: ThisType: 4123 315 YAML: ThisType: 4123 408 YAML: ThisType: 4134 418 YAML: ThisType: 4134 548 YAML: ThisType: 4144 [all …]
|
/external/clang/lib/CodeGen/ |
D | CGVTables.cpp | 216 QualType ThisType = MD->getThisType(getContext()); in StartThunk() local 219 ? ThisType in StartThunk() 280 QualType ThisType = MD->getThisType(getContext()); in EmitCallAndReturnForThunk() local 281 CallArgs.add(RValue::get(AdjustedThisPtr), ThisType); in EmitCallAndReturnForThunk() 311 ? ThisType in EmitCallAndReturnForThunk() 357 llvm::Type *ThisType = Args[ThisArgNo]->getType(); in EmitMustTailThunk() local 358 if (ThisType != AdjustedThisPtr->getType()) in EmitMustTailThunk() 359 AdjustedThisPtr = Builder.CreateBitCast(AdjustedThisPtr, ThisType); in EmitMustTailThunk() 364 llvm::Type *ThisType = ThisAddr.getElementType(); in EmitMustTailThunk() local 365 if (ThisType != AdjustedThisPtr->getType()) in EmitMustTailThunk() [all …]
|
D | CGClass.cpp | 2941 QualType ThisType = getContext().getPointerType(getContext().getRecordType(Lambda)); in EmitLambdaBlockInvokeBody() local 2943 CallArgs.add(RValue::get(ThisPtr.getPointer()), ThisType); in EmitLambdaBlockInvokeBody() 2971 QualType ThisType = getContext().getPointerType(getContext().getRecordType(Lambda)); in EmitLambdaDelegatingInvokeBody() local 2972 llvm::Value *ThisPtr = llvm::UndefValue::get(getTypes().ConvertType(ThisType)); in EmitLambdaDelegatingInvokeBody() 2973 CallArgs.add(RValue::get(ThisPtr), ThisType); in EmitLambdaDelegatingInvokeBody()
|
/external/llvm-project/clang/lib/CodeGen/ |
D | CGVTables.cpp | 245 QualType ThisType = MD->getThisType(); in StartThunk() local 250 ResultType = ThisType; in StartThunk() 326 QualType ThisType = MD->getThisType(); in EmitCallAndReturnForThunk() local 327 CallArgs.add(RValue::get(AdjustedThisPtr), ThisType); in EmitCallAndReturnForThunk() 360 ? ThisType in EmitCallAndReturnForThunk() 408 llvm::Type *ThisType = Args[ThisArgNo]->getType(); in EmitMustTailThunk() local 409 if (ThisType != AdjustedThisPtr->getType()) in EmitMustTailThunk() 410 AdjustedThisPtr = Builder.CreateBitCast(AdjustedThisPtr, ThisType); in EmitMustTailThunk() 415 llvm::Type *ThisType = ThisAddr.getElementType(); in EmitMustTailThunk() local 416 if (ThisType != AdjustedThisPtr->getType()) in EmitMustTailThunk() [all …]
|
D | CGClass.cpp | 2062 QualType ThisType = D->getThisType(); in EmitCXXConstructorCall() local 2063 LangAS ThisAS = ThisType.getTypePtr()->getPointeeType().getAddressSpace(); in EmitCXXConstructorCall() 2923 QualType ThisType = getContext().getPointerType(getContext().getRecordType(Lambda)); in EmitLambdaBlockInvokeBody() local 2925 CallArgs.add(RValue::get(ThisPtr.getPointer()), ThisType); in EmitLambdaBlockInvokeBody() 2942 QualType ThisType = getContext().getPointerType(getContext().getRecordType(Lambda)); in EmitLambdaDelegatingInvokeBody() local 2943 llvm::Value *ThisPtr = llvm::UndefValue::get(getTypes().ConvertType(ThisType)); in EmitLambdaDelegatingInvokeBody() 2944 CallArgs.add(RValue::get(ThisPtr), ThisType); in EmitLambdaDelegatingInvokeBody()
|
/external/llvm-project/llvm/test/DebugInfo/COFF/ |
D | static-methods.ll | 20 ; CHECK-NEXT: ThisType: 0x0 32 ; CHECK-NEXT: ThisType: A* const ({{.*}}) 44 ; CHECK-NEXT: ThisType: 0x0
|
D | types-non-virtual-methods.ll | 79 ; CHECK: ThisType: A* const (0x1004) 159 ; CHECK: ThisType: B* const (0x100B) 178 ; CHECK: ThisType: B* const (0x100B) 197 ; CHECK: ThisType: B* const (0x100B)
|
D | types-method-ref-qualifiers.ll | 108 ; CHECK: ThisType: A* const (0x1005) 134 ; CHECK: ThisType: A* const (0x1007) 160 ; CHECK: ThisType: A* const (0x1009)
|
D | function-options.ll | 89 ; CHECK: ThisType: BClass* {{.*}} 126 ; CHECK: ThisType: C1Class* {{.*}} 163 ; CHECK: ThisType: C2Class* {{.*}} 224 ; CHECK: ThisType: FClass* {{.*}} 237 ; CHECK: ThisType: FClass* {{.*}} 302 ; CHECK: ThisType: BStruct* {{.*}} 354 ; CHECK: ThisType: BUnion* {{.*}}
|
D | types-empty-member-fn.ll | 22 ; CHECK-NEXT: ThisType: 0x0
|
D | virtual-methods.ll | 29 ; CHECK-NEXT: ThisType: A* const ({{.*}}) 43 ; CHECK-NEXT: ThisType: B* const ({{.*}}) 57 ; CHECK-NEXT: ThisType: C* const ({{.*}}) 81 ; CHECK-NEXT: ThisType: D* const ({{.*}})
|
D | global-type-hashes.ll | 198 ; YAML: ThisType: 4101 211 ; YAML: ThisType: 4101
|
/external/llvm/test/DebugInfo/COFF/ |
D | types-non-virtual-methods.ll | 79 ; CHECK: ThisType: A* (0x1004) 160 ; CHECK: ThisType: B* (0x100B) 179 ; CHECK: ThisType: B* (0x100B) 198 ; CHECK: ThisType: B* (0x100B)
|
D | virtual-methods.ll | 28 ; CHECK-NEXT: ThisType: A* ({{.*}}) 42 ; CHECK-NEXT: ThisType: B* ({{.*}}) 56 ; CHECK-NEXT: ThisType: C* ({{.*}}) 79 ; CHECK-NEXT: ThisType: D* ({{.*}})
|
D | types-calling-conv.ll | 52 ; CHECK: ThisType: A* (0x1001)
|
/external/llvm/include/llvm/DebugInfo/CodeView/ |
D | TypeRecord.h | 186 TypeIndex ThisType, CallingConvention CallConv, in MemberFunctionRecord() argument 190 ClassType(ClassType), ThisType(ThisType), CallConv(CallConv), in MemberFunctionRecord() 204 TypeIndex getThisType() const { return ThisType; } in getThisType() 215 TypeIndex ThisType; member 225 TypeIndex ThisType; variable
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/CodeView/ |
D | TypeRecord.h | 182 TypeIndex ThisType, CallingConvention CallConv, in MemberFunctionRecord() argument 186 ClassType(ClassType), ThisType(ThisType), CallConv(CallConv), in MemberFunctionRecord() 193 TypeIndex getThisType() const { return ThisType; } in getThisType() 202 TypeIndex ThisType; variable
|
/external/llvm-project/llvm/include/llvm/DebugInfo/CodeView/ |
D | TypeRecord.h | 176 TypeIndex ThisType, CallingConvention CallConv, in MemberFunctionRecord() argument 180 ClassType(ClassType), ThisType(ThisType), CallConv(CallConv), in MemberFunctionRecord() 187 TypeIndex getThisType() const { return ThisType; } in getThisType() 196 TypeIndex ThisType; variable
|
/external/llvm/lib/DebugInfo/CodeView/ |
D | TypeRecord.cpp | 60 return MemberFunctionRecord(L->ReturnType, L->ClassType, L->ThisType, in deserialize() 413 Success &= remapIndex(IndexMap, ThisType); in remapTypeIndices()
|
/external/llvm-project/llvm/unittests/DebugInfo/CodeView/ |
D | TypeIndexDiscoveryTest.cpp | 346 MemberFunction.ThisType, MemberFunction.ArgumentList); in TEST_F() 445 MemberFunction.ThisType, MemberFunction.ArgumentList); in TEST_F()
|
/external/llvm-project/clang/lib/Analysis/ |
D | Consumed.cpp | 774 QualType ThisType = Constructor->getThisType()->getPointeeType(); in VisitCXXConstructExpr() local 776 if (!isConsumableType(ThisType)) in VisitCXXConstructExpr() 797 ConsumedState RetState = mapConsumableAttrState(ThisType); in VisitCXXConstructExpr()
|
/external/clang/lib/Analysis/ |
D | Consumed.cpp | 784 QualType ThisType = Constructor->getThisType(CurrContext)->getPointeeType(); in VisitCXXConstructExpr() local 786 if (!isConsumableType(ThisType)) in VisitCXXConstructExpr() 807 ConsumedState RetState = mapConsumableAttrState(ThisType); in VisitCXXConstructExpr()
|