Home
last modified time | relevance | path

Searched full:types (Results 1 – 25 of 12529) sorted by relevance

12345678910>>...502

/external/llvm-project/llvm/test/DebugInfo/PDB/
Devery-type.test13 RUN: | FileCheck --check-prefix=TYPES %s
19 RUN: | FileCheck --check-prefix=TYPES %s
21 TYPES: Types (TPI Stream)
22 TYPES-NEXT: ============================================================
23 TYPES-NEXT: Showing 7 records and their dependents (72 records total)
24 TYPES-NEXT: 0x1007 | LF_MODIFIER [size = 12]
25 TYPES-NEXT: referent = 0x0074 (int), modifiers = const
26 TYPES-NEXT: 0x1008 | LF_CLASS [size = 48] `FooClass`
27 TYPES-NEXT: unique name: `.?AVFooClass@@`
28 TYPES-NEXT: vtable: <no type>, base list: <no type>, field list: <no type>
[all …]
Dpdbdump-merge-ids-and-types.test1 ; RUN: llvm-pdbutil yaml2pdb -pdb=%t.1.pdb %p/Inputs/merge-ids-and-types-1.yaml
2 ; RUN: llvm-pdbutil yaml2pdb -pdb=%t.2.pdb %p/Inputs/merge-ids-and-types-2.yaml
4 ; RUN: llvm-pdbutil dump -types %t.3.pdb | FileCheck -check-prefix=TPI-TYPES %s
5 ; RUN: llvm-pdbutil dump -ids %t.3.pdb | FileCheck -check-prefix=IPI-TYPES %s
7 TPI-TYPES: Types (TPI Stream)
8 TPI-TYPES-NEXT: ============================================================
9 TPI-TYPES-NEXT: Showing 9 records
10 TPI-TYPES-NEXT: 0x1000 | LF_POINTER [size = 12]
11 TPI-TYPES-NEXT: referent = 0x0470 (char*), mode = pointer, opts = None, kind = ptr32
12 TPI-TYPES-NEXT: 0x1001 | LF_FIELDLIST [size = 24]
[all …]
/external/llvm-project/clang/test/CXX/temp/temp.decls/temp.variadic/
Dp5.cpp12 template<typename... Types>
14 typedef pair<Types..., int> expand_with_pacs; // okay
15 …typedef pair<Types, int...> expand_no_packs; // expected-error{{pack expansion does not contain a…
16 …typedef pair<pair<Types..., int>..., int> expand_with_expanded_nested; // expected-error{{pack exp…
21 template<typename ...Types>
25 …typedef tuple<pair<Types, OtherTypes>...> type; // expected-error{{pack expansion contains paramet…
41 template<typename T, int N, typename ... Types>
43 …: public Types, public T // expected-error{{base type contains unexpanded parameter pack 'Types'}}
48 …typedef Types *types_pointer; // expected-error{{declaration type contains unexpanded parameter pa…
51 …typedef Types (^block_pointer_1)(int); // expected-error{{declaration type contains unexpanded par…
[all …]
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
Dp5.cpp12 template<typename... Types>
14 typedef pair<Types..., int> expand_with_pacs; // okay
15 …typedef pair<Types, int...> expand_no_packs; // expected-error{{pack expansion does not contain a…
16 …typedef pair<pair<Types..., int>..., int> expand_with_expanded_nested; // expected-error{{pack exp…
21 template<typename ...Types>
25 …typedef tuple<pair<Types, OtherTypes>...> type; // expected-error{{pack expansion contains paramet…
41 template<typename T, int N, typename ... Types>
43 …: public Types, public T // expected-error{{base type contains unexpanded parameter pack 'Types'}}
48 …typedef Types *types_pointer; // expected-error{{declaration type contains unexpanded parameter pa…
51 …typedef Types (^block_pointer_1)(int); // expected-error{{declaration type contains unexpanded par…
[all …]
/external/deqp-deps/SPIRV-Tools/test/opt/
Dtypes_test.cpp15 #include "source/opt/types.h"
29 // Fixture class providing some element types.
42 // Element types to be used for constructing other types for testing.
52 std::vector<std::unique_ptr<Type>> types; \
53 for (int i = 0; i < 10; ++i) types.emplace_back(new ty(__VA_ARGS__)); \
54 for (size_t i = 0; i < types.size(); ++i) { \
55 for (size_t j = 0; j < types.size(); ++j) { \
56 EXPECT_TRUE(types[i]->IsSame(types[j].get())) \
57 << "expected '" << types[i]->str() << "' is the same as '" \
58 << types[j]->str() << "'"; \
[all …]
/external/swiftshader/third_party/SPIRV-Tools/test/opt/
Dtypes_test.cpp15 #include "source/opt/types.h"
29 // Fixture class providing some element types.
42 // Element types to be used for constructing other types for testing.
52 std::vector<std::unique_ptr<Type>> types; \
53 for (int i = 0; i < 10; ++i) types.emplace_back(new ty(__VA_ARGS__)); \
54 for (size_t i = 0; i < types.size(); ++i) { \
55 for (size_t j = 0; j < types.size(); ++j) { \
56 EXPECT_TRUE(types[i]->IsSame(types[j].get())) \
57 << "expected '" << types[i]->str() << "' is the same as '" \
58 << types[j]->str() << "'"; \
[all …]
/external/angle/third_party/vulkan-deps/spirv-tools/src/test/opt/
Dtypes_test.cpp15 #include "source/opt/types.h"
29 // Fixture class providing some element types.
42 // Element types to be used for constructing other types for testing.
52 std::vector<std::unique_ptr<Type>> types; \
53 for (int i = 0; i < 10; ++i) types.emplace_back(new ty(__VA_ARGS__)); \
54 for (size_t i = 0; i < types.size(); ++i) { \
55 for (size_t j = 0; j < types.size(); ++j) { \
56 EXPECT_TRUE(types[i]->IsSame(types[j].get())) \
57 << "expected '" << types[i]->str() << "' is the same as '" \
58 << types[j]->str() << "'"; \
[all …]
/external/llvm-project/clang/test/SemaCXX/
Dwarn-enum-compare.cpp79 …while (B1 == B2); // expected-warning {{comparison of different enumeration types ('name1::Baz' a… in test()
80 …while (name1::B2 == name2::B3); // expected-warning {{comparison of different enumeration types (… in test()
81 …while (z == name2::B2); // expected-warning {{comparison of different enumeration types ('name1::… in test()
83 …while (((((B1)))) == B2); // expected-warning {{comparison of different enumeration types ('name1… in test()
84 … (name2::B3)); // expected-warning {{comparison of different enumeration types ('name1::Baz' and … in test()
85 …while (z == ((((name2::B2))))); // expected-warning {{comparison of different enumeration types (… in test()
87 …while ((((B1))) == (((B2)))); // expected-warning {{comparison of different enumeration types ('n… in test()
88 …name2::B3)))); // expected-warning {{comparison of different enumeration types ('name1::Baz' and … in test()
89 …while ((((z))) == (name2::B2)); // expected-warning {{comparison of different enumeration types (… in test()
91 …while (x == a); // expected-warning {{comparison of different enumeration types ('Foo' and 'name1… in test()
[all …]
/external/clang/test/SemaCXX/
Dwarn-enum-compare.cpp68 …/ expected-warning {{comparison of two values with different enumeration types ('name1::Baz' and … in test()
69 …/ expected-warning {{comparison of two values with different enumeration types ('name1::Baz' and … in test()
70 …/ expected-warning {{comparison of two values with different enumeration types ('name1::Baz' and … in test()
72 …/ expected-warning {{comparison of two values with different enumeration types ('name1::Baz' and … in test()
73 …/ expected-warning {{comparison of two values with different enumeration types ('name1::Baz' and … in test()
74 …/ expected-warning {{comparison of two values with different enumeration types ('name1::Baz' and … in test()
76 …/ expected-warning {{comparison of two values with different enumeration types ('name1::Baz' and … in test()
77 …/ expected-warning {{comparison of two values with different enumeration types ('name1::Baz' and … in test()
78 …/ expected-warning {{comparison of two values with different enumeration types ('name1::Baz' and … in test()
80 …while (x == a); // expected-warning {{comparison of two values with different enumeration types (… in test()
[all …]
/external/javasqlite/src/main/java/SQLite/JDBC2z/
DJDBCDatabaseMetaData.java512 String tableNamePattern, String types[]) in getTables() argument
528 if (types == null || types.length == 0) { in getTables()
533 for (int i = 0; i < types.length; i++) { in getTables()
536 sb.append(SQLite.Shell.sql_quote(types[i].toLowerCase())); in getTables()
623 int types[] = { in getColumns() local
624 Types.VARCHAR, Types.VARCHAR, Types.VARCHAR, in getColumns()
625 Types.VARCHAR, Types.SMALLINT, Types.VARCHAR, in getColumns()
626 Types.INTEGER, Types.INTEGER, Types.INTEGER, in getColumns()
627 Types.INTEGER, Types.INTEGER, Types.VARCHAR, in getColumns()
628 Types.VARCHAR, Types.INTEGER, Types.INTEGER, in getColumns()
[all …]
/external/llvm/utils/
Dllvm.grm197 Types
200 | Types OptAddrSpace ^ "*"
203 | Types "(" ^ ArgTypeListI ^ ")" OptFuncAttrs
205 | "[" ^ EUINT64VAL "x" Types ^ "]"
206 | "<" ^ EUINT64VAL "x" Types ^ ">"
213 ArgType ::= Types OptParamAttrs ;
215 ResultTypes ::= Types | void ;
221 TypeListI ::= Types | TypeListI ^ "," Types ;
223 ConstVal::= Types "[" ^ ConstVector ^ "]"
224 | Types "[" ^ "]"
[all …]
/external/llvm-project/llvm/utils/
Dllvm.grm198 Types
201 | Types OptAddrSpace ^ "*"
204 | Types "(" ^ ArgTypeListI ^ ")" OptFuncAttrs
206 | "[" ^ EUINT64VAL "x" Types ^ "]"
207 | "<" ^ EUINT64VAL "x" Types ^ ">"
214 ArgType ::= Types OptParamAttrs ;
216 ResultTypes ::= Types | void ;
222 TypeListI ::= Types | TypeListI ^ "," Types ;
224 ConstVal::= Types "[" ^ ConstVector ^ "]"
225 | Types "[" ^ "]"
[all …]
/external/tensorflow/tensorflow/python/autograph/pyct/static_analysis/
Dtype_inference.py49 """Resolver objects handle the process of looking up actual names and types.
54 types
56 * specify types as a Set of inferred types
68 types_ns: types namespace
86 types_ns: types namespace
92 Set of the argument types.
101 types_ns: types namespace
103 f_type: types of the actual function being called, if known
104 args: types of each respective argument in node.args
105 keywords: types of each respective argument in node.keywords
[all …]
/external/llvm-project/clang/lib/Driver/
DTypes.cpp1 //===--- Types.cpp - Driver input & temporary type information ------------===//
9 #include "clang/Driver/Types.h"
21 using namespace clang::driver::types;
42 #include "clang/Driver/Types.def"
52 const char *types::getTypeName(ID Id) { in getTypeName()
56 types::ID types::getPreprocessedType(ID Id) { in getPreprocessedType()
68 types::ID types::getPrecompiledType(ID Id) { in getPrecompiledType()
76 const char *types::getTypeTempSuffix(ID Id, bool CLMode) { in getTypeTempSuffix()
93 bool types::onlyPrecompileType(ID Id) { in onlyPrecompileType()
98 bool types::canTypeBeUserSpecified(ID Id) { in canTypeBeUserSpecified()
[all …]
/external/llvm/test/tools/llvm-objdump/X86/
Dmacho-objc-meta-data.test26 OBJC2_64BIT_EXE: types 0x100001b48 v16@0:8
29 OBJC2_64BIT_EXE: types 0x100001b50 v24@0:8@16
68 OBJC2_64BIT_EXE: types 0x100001b50 v24@0:8@16
71 OBJC2_64BIT_EXE: types 0x100001b50 v24@0:8@16
150 OBJC2_64BIT_OBJ: types 0x102e v24@0:8@16
153 OBJC2_64BIT_OBJ: types 0x102e v24@0:8@16
231 OBJC2_32BIT_EXE: types 0x562b c16@0:4@8@12
234 OBJC2_32BIT_EXE: types 0x5608 v12@0:4@8
237 OBJC2_32BIT_EXE: types 0x5608 v12@0:4@8
240 OBJC2_32BIT_EXE: types 0x5608 v12@0:4@8
[all …]
/external/ms-tpm-20-ref/TPMCmd/tpm/include/
DCommandDispatchData.h65 // unmarshaling values in the types array of each command
246 // marshaling values in the types array of each command
331 // This list of aliases allows the types in the _COMMAND_DESCRIPTOR_T to match the
332 // types in the command/response templates of part 3.
361 BYTE types[3]; member
368 /* offsetOfTypes */ offsetof(Startup_COMMAND_DESCRIPTOR_t, types),
370 /* types */ {TPM_SU_P_UNMARSHAL,
393 BYTE types[3]; member
400 /* offsetOfTypes */ offsetof(Shutdown_COMMAND_DESCRIPTOR_t, types),
402 /* types */ {TPM_SU_P_UNMARSHAL,
[all …]
/external/llvm-project/llvm/test/tools/llvm-objdump/MachO/
Dmacho-objc-meta-data.test27 OBJC2_64BIT_EXE: types 0x100001b48 v16@0:8
30 OBJC2_64BIT_EXE: types 0x100001b50 v24@0:8@16
69 OBJC2_64BIT_EXE: types 0x100001b50 v24@0:8@16
72 OBJC2_64BIT_EXE: types 0x100001b50 v24@0:8@16
151 OBJC2_64BIT_OBJ: types 0x102e v24@0:8@16
154 OBJC2_64BIT_OBJ: types 0x102e v24@0:8@16
232 OBJC2_32BIT_EXE: types 0x562b c16@0:4@8@12
235 OBJC2_32BIT_EXE: types 0x5608 v12@0:4@8
238 OBJC2_32BIT_EXE: types 0x5608 v12@0:4@8
241 OBJC2_32BIT_EXE: types 0x5608 v12@0:4@8
[all …]
/external/llvm-project/clang-tools-extra/test/clang-tidy/checkers/
Dbugprone-undefined-memory-manipulation.cpp13 namespace types { namespace
14 // TriviallyCopyable types:
33 // not TriviallyCopyable types:
59 } // end namespace types
61 void f(types::NoDef *s) { in f()
68 …// CHECK-MESSAGES: :[[@LINE-1]]:3: warning: undefined behavior, destination object type 'types::Vi… in memset_temp()
74 …// CHECK-MESSAGES: :[[@LINE-1]]:3: warning: undefined behavior, source object type 'types::Virtual… in memcpy_temp()
80 …// CHECK-MESSAGES: :[[@LINE-1]]:3: warning: undefined behavior, source object type 'types::Virtual… in memmove_temp()
84 using Copy2 = types::Copy;
85 typedef types::Move Move2;
[all …]
/external/selinux/libsepol/tests/
Dtest-linker-types.c32 /* Tests for types:
128 const char *types[2]; in base_type_tests() local
130 /* These tests look at types in the base only, the desire is to ensure that in base_type_tests()
131 * types are not destroyed or otherwise removed during the link process. in base_type_tests()
132 * if this happens these tests won't work anyway since we are using types to in base_type_tests()
141 types[0] = "g_b_type_1"; in base_type_tests()
142 test_attr_types(base, "g_b_attr_1", NULL, types, 1); in base_type_tests()
150 types[0] = "o1_b_type_1"; in base_type_tests()
151 test_attr_types(base, "o1_b_attr_1", base->decl_val_to_struct[decls[0] - 1], types, 1); in base_type_tests()
166 const char *types[2]; in module_type_tests() local
[all …]
/external/clang/lib/Driver/
DTypes.cpp1 //===--- Types.cpp - Driver input & temporary type information ------------===//
10 #include "clang/Driver/Types.h"
17 using namespace clang::driver::types;
29 #include "clang/Driver/Types.def"
39 const char *types::getTypeName(ID Id) { in getTypeName()
43 types::ID types::getPreprocessedType(ID Id) { in getPreprocessedType()
47 const char *types::getTypeTempSuffix(ID Id, bool CLMode) { in getTypeTempSuffix()
57 bool types::onlyAssembleType(ID Id) { in onlyAssembleType()
61 bool types::onlyPrecompileType(ID Id) { in onlyPrecompileType()
65 bool types::canTypeBeUserSpecified(ID Id) { in canTypeBeUserSpecified()
[all …]
/external/auto/common/src/test/java/com/google/auto/common/
DMoreTypesTest.java51 import javax.lang.model.util.Types;
64 Types types = compilationRule.getTypes(); in equivalence() local
80 types.getDeclaredType(mapElement, objectType, objectType); in equivalence()
83 types.getDeclaredType(setElement, types.getDeclaredType(setElement, objectType)); in equivalence()
85 types.getDeclaredType(setElement, types.getDeclaredType(setElement, stringType)); in equivalence()
86 DeclaredType setOfSetOfSetOfObject = types.getDeclaredType(setElement, setOfSetOfObject); in equivalence()
87 DeclaredType setOfSetOfSetOfString = types.getDeclaredType(setElement, setOfSetOfString); in equivalence()
88 WildcardType wildcard = types.getWildcardType(null, null); in equivalence()
89 DeclaredType containerOfObject = types.getDeclaredType(container, objectType); in equivalence()
90 DeclaredType containerOfString = types.getDeclaredType(container, stringType); in equivalence()
[all …]
/external/python/google-api-python-client/docs/dyn/
Ddfareporting_v2_8.creatives.html84 …nderingIds=None, maxResults=None, active=None, companionCreativeIds=None, types=None, searchString…
108 …ing in-stream video creative events. Applicable to the following creative types: all INSTREAM_VIDE…
114 …creative. This is a read-only field. Applicable to the following creative types: all RICH_MEDIA, a…
115 …reatives. This is a read-only field. Applicable to the following creative types: all RICH_MEDIA, a…
116 …ing", # Description of the video ad. Applicable to the following creative types: all INSTREAM_VIDE…
117 …ing", # Advertiser ID of this creative. This is a required field. Applicable to all creative types.
118 ….202.235. This is a read-only field. Applicable to the following creative types: all RICH_MEDIA, a…
119 …sed to record backup image impressions. Applicable to the following creative types: all RICH_MEDIA.
120 …y and auto-generated from clickTags. Applicable to the following creative types: DISPLAY_IMAGE_GAL…
137 …creative. This is a read-only field. Applicable to the following creative types: all RICH_MEDIA an…
[all …]
Ddfareporting_v2_7.creatives.html84 …nderingIds=None, maxResults=None, active=None, companionCreativeIds=None, types=None, searchString…
108 …ing in-stream video creative events. Applicable to the following creative types: all INSTREAM_VIDE…
114 …creative. This is a read-only field. Applicable to the following creative types: all RICH_MEDIA, a…
115 …reatives. This is a read-only field. Applicable to the following creative types: all RICH_MEDIA, a…
116 …ing", # Description of the video ad. Applicable to the following creative types: all INSTREAM_VIDE…
117 …ing", # Advertiser ID of this creative. This is a required field. Applicable to all creative types.
118 ….202.235. This is a read-only field. Applicable to the following creative types: all RICH_MEDIA, a…
119 …sed to record backup image impressions. Applicable to the following creative types: all RICH_MEDIA.
120 …y and auto-generated from clickTags. Applicable to the following creative types: DISPLAY_IMAGE_GAL…
137 …creative. This is a read-only field. Applicable to the following creative types: all RICH_MEDIA an…
[all …]
/external/bsdiff/
Dbsdiff_arguments_unittest.cc12 std::set<CompressorType> types; in TEST() local
13 EXPECT_TRUE(BsdiffArguments::ParseCompressorTypes("Brotli", &types)); in TEST()
14 EXPECT_EQ(1U, types.size()); in TEST()
15 EXPECT_NE(types.end(), types.find(CompressorType::kBrotli)); in TEST()
17 types.clear(); in TEST()
19 EXPECT_TRUE(BsdiffArguments::ParseCompressorTypes("bz2", &types)); in TEST()
20 EXPECT_EQ(1U, types.size()); in TEST()
21 EXPECT_NE(types.end(), types.find(CompressorType::kBZ2)); in TEST()
23 types.clear(); in TEST()
25 EXPECT_FALSE(BsdiffArguments::ParseCompressorTypes("invalid", &types)); in TEST()
[all …]
/external/dexmaker/dexmaker/src/main/java/com/android/dx/
DBinaryOp.java43 Rop rop(TypeList types) { in ADD() argument
44 return Rops.opAdd(types); in ADD()
51 Rop rop(TypeList types) { in SUBTRACT() argument
52 return Rops.opSub(types); in SUBTRACT()
59 Rop rop(TypeList types) { in MULTIPLY() argument
60 return Rops.opMul(types); in MULTIPLY()
67 Rop rop(TypeList types) { in DIVIDE() argument
68 return Rops.opDiv(types); in DIVIDE()
75 Rop rop(TypeList types) { in REMAINDER() argument
76 return Rops.opRem(types); in REMAINDER()
[all …]

12345678910>>...502