Home
last modified time | relevance | path

Searched defs:Type (Results 1 – 25 of 2409) sorted by relevance

12345678910>>...97

/external/llvm-project/llvm/lib/Object/
DRelocationResolver.cpp26 static bool supportsX86_64(uint64_t Type) { in supportsX86_64()
42 static uint64_t resolveX86_64(uint64_t Type, uint64_t Offset, uint64_t S, in resolveX86_64()
62 static bool supportsAArch64(uint64_t Type) { in supportsAArch64()
74 static uint64_t resolveAArch64(uint64_t Type, uint64_t Offset, uint64_t S, in resolveAArch64() argument
90 static bool supportsBPF(uint64_t Type) { in supportsBPF()
100 static uint64_t resolveBPF(uint64_t Type, uint64_t Offset, uint64_t S, in resolveBPF()
112 static bool supportsMips64(uint64_t Type) { in supportsMips64()
124 static uint64_t resolveMips64(uint64_t Type, uint64_t Offset, uint64_t S, in resolveMips64() argument
140 static bool supportsMSP430(uint64_t Type) { in supportsMSP430()
150 static uint64_t resolveMSP430(uint64_t Type, uint64_t Offset, uint64_t S, in resolveMSP430() argument
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Object/
DRelocationResolver.cpp26 static bool supportsX86_64(uint64_t Type) { in supportsX86_64()
61 static bool supportsAArch64(uint64_t Type) { in supportsAArch64()
82 static bool supportsBPF(uint64_t Type) { in supportsBPF()
103 static bool supportsMips64(uint64_t Type) { in supportsMips64()
130 static bool supportsPPC64(uint64_t Type) { in supportsPPC64()
151 static bool supportsSystemZ(uint64_t Type) { in supportsSystemZ()
172 static bool supportsSparc64(uint64_t Type) { in supportsSparc64()
196 static bool supportsAmdgpu(uint64_t Type) { in supportsAmdgpu()
216 static bool supportsX86(uint64_t Type) { in supportsX86()
240 static bool supportsPPC32(uint64_t Type) { in supportsPPC32()
[all …]
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/type/
DType.java36 public abstract class Type<T extends Type> extends Node { class
40 public Type() { in Type() method in Type
43 public Type(List<AnnotationExpr> annotation){ in Type() method in Type
47 public Type(Range range) { in Type() method in Type
51 public Type(Range range, List<AnnotationExpr> annotations) { in Type() method in Type
/external/llvm-project/clang-tools-extra/clang-tidy/utils/
DTypeTraits.cpp21 bool classHasTrivialCopyAndDestroy(QualType Type) { in classHasTrivialCopyAndDestroy()
28 bool hasDeletedCopyConstructor(QualType Type) { in hasDeletedCopyConstructor()
41 llvm::Optional<bool> isExpensiveToCopy(QualType Type, in isExpensiveToCopy()
92 bool isTriviallyDefaultConstructible(QualType Type, const ASTContext &Context) { in isTriviallyDefaultConstructible()
139 bool isTriviallyDestructible(QualType Type) { in isTriviallyDestructible()
152 bool hasNonTrivialMoveConstructor(QualType Type) { in hasNonTrivialMoveConstructor()
158 bool hasNonTrivialMoveAssignment(QualType Type) { in hasNonTrivialMoveAssignment()
/external/harfbuzz_ng/src/
Dhb-ot-face.hh42 #define HB_OT_TABLE(Namespace, Type) namespace Namespace { struct Type; } argument
43 #define HB_OT_ACCELERATOR(Namespace, Type) HB_OT_TABLE (Namespace, Type##_accelerator_t) argument
53 #define HB_OT_TABLE_ORDER(Namespace, Type) \ argument
58 #define HB_OT_TABLE(Namespace, Type) HB_OT_TABLE_ORDER (Namespace, Type), argument
64 #define HB_OT_TABLE(Namespace, Type) \ argument
66 #define HB_OT_ACCELERATOR(Namespace, Type) \ argument
Dhb-null.hh91 typedef hb_remove_const<hb_remove_reference<QType>> Type; typedef
94 #define Null(Type) NullHelper<Type>::get_null () argument
97 #define DECLARE_NULL_NAMESPACE_BYTES(Namespace, Type) \ argument
108 #define DEFINE_NULL_NAMESPACE_BYTES(Namespace, Type) \ argument
112 #define DECLARE_NULL_INSTANCE(Type) \ argument
121 #define DEFINE_NULL_INSTANCE(Type) \ argument
144 typedef hb_remove_const<hb_remove_reference<QType>> Type; typedef
147 #define Crap(Type) CrapHelper<Type>::get_crap () argument
157 #define CrapOrNull(Type) CrapOrNullHelper<Type>::get () argument
/external/rust/crates/structopt-derive/src/
Dty.rs43 pub fn sub_type(ty: &syn::Type) -> Option<&syn::Type> { in sub_type()
62 fn subty_if<F>(ty: &syn::Type, f: F) -> Option<&syn::Type> in subty_if()
85 pub fn subty_if_name<'a>(ty: &'a syn::Type, name: &str) -> Option<&'a syn::Type> { in subty_if_name()
89 pub fn is_simple_ty(ty: &syn::Type, name: &str) -> bool { in is_simple_ty()
112 fn strip_group(mut ty: &syn::Type) -> &syn::Type { in strip_group()
120 fn is_generic_ty(ty: &syn::Type, name: &str) -> bool { in is_generic_ty()
/external/llvm-project/lld/test/ELF/invalid/
Dsymtab-sh-info.s12 Type: ET_REL label
17 Type: SHT_SYMTAB label
32 Type: ET_REL label
37 Type: SHT_SYMTAB label
51 Type: ET_REL label
56 Type: SHT_SYMTAB label
/external/llvm-project/mlir/lib/Dialect/LLVMIR/IR/
DLLVMTypeSyntax.cpp28 .Case<LLVMVoidType>([&](Type) { return "void"; }) in getTypeKeyword() argument
29 .Case<LLVMHalfType>([&](Type) { return "half"; }) in getTypeKeyword() argument
30 .Case<LLVMBFloatType>([&](Type) { return "bfloat"; }) in getTypeKeyword() argument
31 .Case<LLVMFloatType>([&](Type) { return "float"; }) in getTypeKeyword() argument
32 .Case<LLVMDoubleType>([&](Type) { return "double"; }) in getTypeKeyword() argument
33 .Case<LLVMFP128Type>([&](Type) { return "fp128"; }) in getTypeKeyword() argument
34 .Case<LLVMX86FP80Type>([&](Type) { return "x86_fp80"; }) in getTypeKeyword() argument
35 .Case<LLVMPPCFP128Type>([&](Type) { return "ppc_fp128"; }) in getTypeKeyword() argument
36 .Case<LLVMX86MMXType>([&](Type) { return "x86_mmx"; }) in getTypeKeyword() argument
37 .Case<LLVMTokenType>([&](Type) { return "token"; }) in getTypeKeyword() argument
[all …]
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/type/
DType.java32 public abstract class Type extends Node { class
36 public Type() { in Type() method in Type
39 public Type(List<AnnotationExpr> annotation){ in Type() method in Type
43 public Type(int beginLine, int beginColumn, int endLine, int endColumn) { in Type() method in Type
47 …public Type(int beginLine, int beginColumn, int endLine, int endColumn, List<AnnotationExpr> annot… in Type() method in Type
/external/deqp/framework/referencerenderer/
DrrPrimitiveTypes.hpp53 …PrimitiveTypeTraits<PRIMITIVETYPE_TRIANGLES> { typedef pa::Triangle Type; typedef pa::Triang… typedef
54 …mitiveTypeTraits<PRIMITIVETYPE_TRIANGLE_STRIP> { typedef pa::Triangle Type; typedef pa::Triang… typedef
55 …imitiveTypeTraits<PRIMITIVETYPE_TRIANGLE_FAN> { typedef pa::Triangle Type; typedef pa::Triang… typedef
56 template <> struct PrimitiveTypeTraits<PRIMITIVETYPE_LINES> { typedef pa::Line Type typedef
57 …ct PrimitiveTypeTraits<PRIMITIVETYPE_LINE_STRIP> { typedef pa::Line Type; typedef pa::Line … typedef
58 …ct PrimitiveTypeTraits<PRIMITIVETYPE_LINE_LOOP> { typedef pa::Line Type; typedef pa::Line … typedef
59 …ruct PrimitiveTypeTraits<PRIMITIVETYPE_POINTS> { typedef pa::Point Type; typedef pa::Point … typedef
60 …eTypeTraits<PRIMITIVETYPE_LINES_ADJACENCY> { typedef pa::LineAdjacency Type; typedef pa::Line … typedef
61 …eTraits<PRIMITIVETYPE_LINE_STRIP_ADJACENCY> { typedef pa::LineAdjacency Type; typedef pa::Line … typedef
62 …raits<PRIMITIVETYPE_TRIANGLES_ADJACENCY> { typedef pa::TriangleAdjacency Type; typedef pa::Triang… typedef
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/
DMCELFObjectWriter.h34 unsigned Type; // The type of the relocation. member
119 uint8_t getRType(uint32_t Type) const { in getRType()
122 uint8_t getRType2(uint32_t Type) const { in getRType2()
125 uint8_t getRType3(uint32_t Type) const { in getRType3()
128 uint8_t getRSsym(uint32_t Type) const { in getRSsym()
133 unsigned setRType(unsigned Value, unsigned Type) const { in setRType()
136 unsigned setRType2(unsigned Value, unsigned Type) const { in setRType2()
139 unsigned setRType3(unsigned Value, unsigned Type) const { in setRType3()
142 unsigned setRSsym(unsigned Value, unsigned Type) const { in setRSsym()
/external/llvm/include/llvm/MC/
DMCELFObjectWriter.h34 unsigned Type; // The type of the relocation. member
111 uint8_t getRType(uint32_t Type) const { in getRType()
114 uint8_t getRType2(uint32_t Type) const { in getRType2()
117 uint8_t getRType3(uint32_t Type) const { in getRType3()
120 uint8_t getRSsym(uint32_t Type) const { in getRSsym()
125 unsigned setRType(unsigned Value, unsigned Type) const { in setRType()
128 unsigned setRType2(unsigned Value, unsigned Type) const { in setRType2()
131 unsigned setRType3(unsigned Value, unsigned Type) const { in setRType3()
134 unsigned setRSsym(unsigned Value, unsigned Type) const { in setRSsym()
/external/llvm-project/compiler-rt/lib/sanitizer_common/
Dsanitizer_atomic.h30 typedef u8 Type; typedef
35 typedef u16 Type; typedef
40 typedef s32 Type; typedef
45 typedef u32 Type; typedef
50 typedef u64 Type; typedef
56 typedef uptr Type; typedef
/external/skqp/src/sksl/ir/
DSkSLType.h65 Type(const char* name) in Type() function
75 Type(const char* name, std::vector<Field> fields) in Type() function
86 Type(String name, Kind kind) in Type() function
96 Type(const char* name, std::vector<const Type*> types) in Type() function
107 Type(int offset, String name, std::vector<Field> fields) in Type() function
118 Type(const char* name, NumberKind numberKind, int priority) in Type() function
131 Type(const char* name, in Type() function
148 Type(const char* name, const Type& componentType, int columns) in Type() function
152 Type(String name, Kind kind, const Type& componentType, int columns) in Type() function
166 Type(const char* name, const Type& componentType, int columns, int rows) in Type() function
[all …]
/external/llvm-project/clang/test/CodeGenCXX/
Ddelayed-template-parsing.cpp5 struct Type { struct
7 void Foo() {} in Foo()
9 void Foo<0>() {} in Foo()
/external/clang/test/CodeGenCXX/
Ddelayed-template-parsing.cpp5 struct Type { struct
7 void Foo() {} in Foo()
9 void Foo<0>() {} in Foo()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/BinaryFormat/
DWasm.cpp11 std::string llvm::wasm::toString(wasm::WasmSymbolType Type) { in toString()
27 std::string llvm::wasm::relocTypetoString(uint32_t Type) { in relocTypetoString()
39 bool llvm::wasm::relocTypeHasAddend(uint32_t Type) { in relocTypeHasAddend()
/external/llvm-project/llvm/lib/BinaryFormat/
DWasm.cpp11 std::string llvm::wasm::toString(wasm::WasmSymbolType Type) { in toString()
29 std::string llvm::wasm::relocTypetoString(uint32_t Type) { in relocTypetoString()
41 bool llvm::wasm::relocTypeHasAddend(uint32_t Type) { in relocTypeHasAddend()
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_atomic.h31 typedef u8 Type; typedef
36 typedef u16 Type; typedef
41 typedef u32 Type; typedef
46 typedef u64 Type; typedef
52 typedef uptr Type; typedef
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DTensorSycl.h22 typedef typename cl::sycl::global_ptr<T>::pointer_t Type; typedef
28 typedef typename cl::sycl::local_ptr<T>::pointer_t Type; typedef
40 typedef const T Type; typedef
/external/clang/test/Parser/
Dms-if-exists.cpp5 typedef int Type; typedef in MayExist
36 __if_exists(MayExist::Type) { in __if_exists()
44 __if_not_exists(MayExist::Type) { in __if_not_exists()
82 __if_exists(MayExist::Type) { in __if_exists()
94 __if_not_exists(MayExist::Type) { in __if_not_exists()
/external/llvm-project/clang/test/Parser/
Dms-if-exists.cpp5 typedef int Type; typedef in MayExist
36 __if_exists(MayExist::Type) { in __if_exists()
44 __if_not_exists(MayExist::Type) { in __if_not_exists()
82 __if_exists(MayExist::Type) { in __if_exists()
94 __if_not_exists(MayExist::Type) { in __if_not_exists()
/external/llvm-project/llvm/unittests/BinaryFormat/
DMachOTest.cpp64 Expected<uint32_t> Type = MachO::getCPUType(Triple("x86_64-linux-unknown")); in TEST() local
70 Expected<uint32_t> Type = MachO::getCPUType(Triple("mips-apple-darwin")); in TEST() local
105 Expected<uint32_t> Type = in TEST() local
113 Expected<uint32_t> Type = MachO::getCPUSubType(Triple("mips-apple-darwin")); in TEST() local
/external/llvm/lib/DebugInfo/PDB/
DPDBSymbol.cpp61 #define FACTORY_SYMTAG_CASE(Tag, Type) \ argument
105 #define TRY_DUMP_TYPE(Type) \ argument
109 #define ELSE_TRY_DUMP_TYPE(Type, Dumper) else TRY_DUMP_TYPE(Type, Dumper) argument
128 PDBSymbol::findChildren(PDB_SymType Type, StringRef Name, in findChildren()
134 PDBSymbol::findChildrenByRVA(PDB_SymType Type, StringRef Name, in findChildrenByRVA()

12345678910>>...97