/third_party/skia/third_party/externals/abseil-cpp/absl/types/ |
D | span_test.cc | 413 void CheckType(const T& /* value */) { in CheckType() function 426 CheckType<absl::Span<int>>(absl::MakeSpan(vec)); in TEST() 427 CheckType<absl::Span<const int>>(absl::MakeSpan(cvec)); in TEST() 428 CheckType<absl::Span<int>>(absl::MakeSpan(ip, ip + 1)); in TEST() 429 CheckType<absl::Span<int>>(absl::MakeSpan(ip, 1)); in TEST() 430 CheckType<absl::Span<const int>>(absl::MakeSpan(cip, cip + 1)); in TEST() 431 CheckType<absl::Span<const int>>(absl::MakeSpan(cip, 1)); in TEST() 432 CheckType<absl::Span<int>>(absl::MakeSpan(a)); in TEST() 433 CheckType<absl::Span<int>>(absl::MakeSpan(a, a + 1)); in TEST() 434 CheckType<absl::Span<int>>(absl::MakeSpan(a, 1)); in TEST() [all …]
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/image/ |
D | vktImageAtomicSpirvShaders.hpp | 38 enum CheckType enum 46 CheckType checkType; 52 … tcu::TextureFormat::ChannelOrder order, tcu::TextureFormat::ChannelType chtype, CheckType cktype);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/GlobalISel/ |
D | MIPatternMatch.h | 324 struct CheckType { 326 CheckType(const LLT &Ty) : Ty(Ty) {} 333 inline CheckType m_SpecificType(LLT Ty) { return Ty; }
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/ |
D | if_conversion.h | 42 bool CheckType(uint32_t id);
|
D | if_conversion.cpp | 53 if (!CheckType(phi->type_id())) return; in Process() 201 bool IfConversion::CheckType(uint32_t id) { in CheckType() function in spvtools::opt::IfConversion
|
D | upgrade_memory_model.h | 91 std::pair<bool, bool> CheckType(uint32_t type_id,
|
D | scalar_replacement_pass.h | 82 bool CheckType(const Instruction* typeInst) const;
|
D | upgrade_memory_model.cpp | 349 CheckType(inst->type_id(), indices); in TraceInstruction() 404 std::pair<bool, bool> UpgradeMemoryModel::CheckType( in CheckType() function in spvtools::opt::UpgradeMemoryModel
|
D | scalar_replacement_pass.cpp | 679 if (!CheckType(typeInst)) { in CanReplaceVariable() 694 bool ScalarReplacementPass::CheckType(const Instruction* typeInst) const { in CheckType() function in spvtools::opt::ScalarReplacementPass
|
/third_party/skia/third_party/externals/spirv-tools/source/opt/ |
D | if_conversion.h | 42 bool CheckType(uint32_t id);
|
D | if_conversion.cpp | 53 if (!CheckType(phi->type_id())) return; in Process() 201 bool IfConversion::CheckType(uint32_t id) { in CheckType() function in spvtools::opt::IfConversion
|
D | upgrade_memory_model.h | 91 std::pair<bool, bool> CheckType(uint32_t type_id,
|
D | scalar_replacement_pass.h | 82 bool CheckType(const Instruction* typeInst) const;
|
D | upgrade_memory_model.cpp | 349 CheckType(inst->type_id(), indices); in TraceInstruction() 404 std::pair<bool, bool> UpgradeMemoryModel::CheckType( in CheckType() function in spvtools::opt::UpgradeMemoryModel
|
D | scalar_replacement_pass.cpp | 679 if (!CheckType(typeInst)) { in CanReplaceVariable() 694 bool ScalarReplacementPass::CheckType(const Instruction* typeInst) const { in CheckType() function in spvtools::opt::ScalarReplacementPass
|
/third_party/spirv-tools/source/opt/ |
D | if_conversion.h | 42 bool CheckType(uint32_t id);
|
D | if_conversion.cpp | 53 if (!CheckType(phi->type_id())) return; in Process() 200 bool IfConversion::CheckType(uint32_t id) { in CheckType() function in spvtools::opt::IfConversion
|
D | upgrade_memory_model.h | 91 std::pair<bool, bool> CheckType(uint32_t type_id,
|
D | scalar_replacement_pass.h | 82 bool CheckType(const Instruction* typeInst) const;
|
D | upgrade_memory_model.cpp | 349 CheckType(inst->type_id(), indices); in TraceInstruction() 404 std::pair<bool, bool> UpgradeMemoryModel::CheckType( in CheckType() function in spvtools::opt::UpgradeMemoryModel
|
/third_party/typescript/src/linter/ |
D | Utils.ts | 317 export function isDerivedFrom(tsType: Type, checkType: CheckType): tsType is TypeReference { 321 …if (checkType === CheckType.Array && (isGenericArrayType(tsType) || isTypedArray(tsTypeNode))) ret… 322 if (checkType !== CheckType.Array && isType(tsTypeNode, checkType.toString())) return true; 624 …entTypesCheck(parentTypes: NodeArray<ExpressionWithTypeArguments>, checkType: CheckType): boolean { 1030 export enum CheckType { enum
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/TableGen/ |
D | Record.cpp | 1368 static void ProfileIsAOpInit(FoldingSetNodeID &ID, RecTy *CheckType, in ProfileIsAOpInit() argument 1370 ID.AddPointer(CheckType); in ProfileIsAOpInit() 1374 IsAOpInit *IsAOpInit::get(RecTy *CheckType, Init *Expr) { in get() argument 1378 ProfileIsAOpInit(ID, CheckType, Expr); in get() 1384 IsAOpInit *I = new (Allocator) IsAOpInit(CheckType, Expr); in get() 1390 ProfileIsAOpInit(ID, CheckType, Expr); in Profile() 1396 if (TI->getType()->typeIsConvertibleTo(CheckType)) in Fold() 1399 if (isa<RecordRecTy>(CheckType)) { in Fold() 1403 if (!CheckType->typeIsConvertibleTo(TI->getType()) || isa<DefInit>(Expr)) in Fold() 1416 return get(CheckType, NewExpr)->Fold(); in resolveReferences() [all …]
|
/third_party/protobuf/python/google/protobuf/internal/ |
D | descriptor_pool_test.py | 714 msg_type.CheckType(test, None, name, file_desc) 722 def CheckType(self, test, msg_desc, name, file_desc): member in EnumType 747 def CheckType(self, test, containing_type_desc, name, file_desc): member in MessageType 761 subtype.CheckType(test, desc, name, file_desc)
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/TableGen/ |
D | Record.h | 1037 RecTy *CheckType; 1040 IsAOpInit(RecTy *CheckType, Init *Expr) in IsAOpInit() argument 1041 : TypedInit(IK_IsAOpInit, IntRecTy::get()), CheckType(CheckType), in IsAOpInit() 1050 static IsAOpInit *get(RecTy *CheckType, Init *Expr);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
D | LoopAccessAnalysis.h | 714 ScalarEvolution &SE, bool CheckType = true);
|