Home
last modified time | relevance | path

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

12345678910>>...979

/external/bazel-skylib/tests/
Dtypes_tests.bzl14 """Unit tests for types.bzl."""
17 load("//lib:types.bzl", "types")
25 """Unit tests for types.is_string."""
29 asserts.true(env, types.is_string(""))
30 asserts.true(env, types.is_string("string"))
32 asserts.false(env, types.is_string(4))
33 asserts.false(env, types.is_string([1]))
34 asserts.false(env, types.is_string({}))
35 asserts.false(env, types.is_string(()))
36 asserts.false(env, types.is_string(True))
[all …]
/external/bazelbuild-rules_cc/cc/toolchains/variables/
DBUILD1 load("//cc/toolchains/impl:variables.bzl", "cc_builtin_variables", "cc_variable", "types")
11 type = types.directory,
17 type = types.option(types.file),
23 type = types.file,
29 type = types.option(types.list(types.file)),
35 type = types.option(types.list(types.directory)),
44 type = types.directory,
50 type = types.file,
56 type = types.file,
63 type = types.option(types.void),
[all …]
/external/cronet/stable/third_party/llvm-libc/src/include/
DCMakeLists.txt12 add_subdirectory(llvm-libc-types)
40 .llvm-libc-types.locale_t
50 .llvm-libc-types.ino_t
51 .llvm-libc-types.DIR
52 .llvm-libc-types.struct_dirent
62 .llvm-libc-types.mode_t
63 .llvm-libc-types.struct_flock
64 .llvm-libc-types.struct_flock64
65 .llvm-libc-types.off64_t
66 .llvm-libc-types.pid_t
[all …]
/external/cronet/tot/third_party/llvm-libc/src/include/
DCMakeLists.txt12 add_subdirectory(llvm-libc-types)
40 .llvm-libc-types.locale_t
50 .llvm-libc-types.ino_t
51 .llvm-libc-types.DIR
52 .llvm-libc-types.struct_dirent
62 .llvm-libc-types.mode_t
63 .llvm-libc-types.struct_flock
64 .llvm-libc-types.struct_flock64
65 .llvm-libc-types.off64_t
66 .llvm-libc-types.pid_t
[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/rust/android-crates-io/crates/gl/out/
Dbindings.rs23 pub mod types { module
26 // Common types from OpenGL 1.1
96 // GLES 1 types
99 // GLES 1/2 types (tagged for GLES 1)
110 // GLES 1/2 types (tagged for GLES 2 - attribute syntax is limited)
123 // GLES 2 types (none currently)
125 // Vendor extension types
138 #[allow(dead_code, non_upper_case_globals)] pub const ACTIVE_ATOMIC_COUNTER_BUFFERS: types::GLenum …
139 #[allow(dead_code, non_upper_case_globals)] pub const ACTIVE_ATTRIBUTES: types::GLenum = 0x8B89;
140 #[allow(dead_code, non_upper_case_globals)] pub const ACTIVE_ATTRIBUTE_MAX_LENGTH: types::GLenum = …
[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/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/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/cronet/tot/third_party/libc++/src/test/libcxx/type_traits/
Dis_always_bitcastable.compile.pass.cpp55 types::for_each(Types1{}, []<class T>() { in check()
56 types::for_each(Types2{}, []<class U>() { in check()
69 // Arithmetic types. in test()
71 // Bit-castable arithmetic types. in test()
73 // 8-bit types. in test()
74 using integral_8 = types::type_list<char8_t, std::int8_t, std::uint8_t>; in test()
75 using chars = types::type_list<char, unsigned char, signed char>; in test()
77 check<true, types::concatenate_t<integral_8, chars>>(); in test()
83 // 16-bit types. in test()
84 using integral_16 = types::type_list<char16_t, std::int16_t, std::uint16_t>; in test()
[all …]
/external/cronet/stable/third_party/libc++/src/test/libcxx/type_traits/
Dis_always_bitcastable.compile.pass.cpp55 types::for_each(Types1{}, []<class T>() { in check()
56 types::for_each(Types2{}, []<class U>() { in check()
69 // Arithmetic types. in test()
71 // Bit-castable arithmetic types. in test()
73 // 8-bit types. in test()
74 using integral_8 = types::type_list<char8_t, std::int8_t, std::uint8_t>; in test()
75 using chars = types::type_list<char, unsigned char, signed char>; in test()
77 check<true, types::concatenate_t<integral_8, chars>>(); in test()
83 // 16-bit types. in test()
84 using integral_16 = types::type_list<char16_t, std::int16_t, std::uint16_t>; 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/kotlinpoet/interop/kotlin-metadata/src/main/kotlin/com/squareup/kotlinpoet/metadata/classinspectors/
DJvmDescriptorUtils.kt45 import javax.lang.model.util.Types
114 internal fun TypeMirror.descriptor(types: Types): String = in descriptor()
115 accept(JvmDescriptorTypeVisitor, types) in descriptor()
121 internal fun WildcardType.descriptor(types: Types): String = in descriptor()
122 types.erasure(this).descriptor(types) in descriptor()
128 internal fun TypeVariable.descriptor(types: Types): String = in descriptor()
129 types.erasure(this).descriptor(types) in descriptor()
135 internal fun ArrayType.descriptor(types: Types): String = in descriptor()
136 "[" + componentType.descriptor(types) in descriptor()
142 internal fun ExecutableType.descriptor(types: Types): String { in descriptor()
[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/bazel-skylib/docs/
Dtypes_doc.md3 Skylib module containing functions checking types.
5 <a id="types.is_bool"></a>
7 ## types.is_bool
10 types.is_bool(<a href="#types.is_bool-v">v</a>)
20 | <a id="types.is_bool-v"></a>v | The value whose type should be checked. | none |
27 <a id="types.is_depset"></a>
29 ## types.is_depset
32 types.is_depset(<a href="#types.is_depset-v">v</a>)
42 | <a id="types.is_depset-v"></a>v | The value whose type should be checked. | none |
49 <a id="types.is_dict"></a>
[all …]
/external/cronet/stable/third_party/llvm-libc/src/hdr/types/
DCMakeLists.txt8 libc.include.llvm-libc-types.div_t
19 libc.include.llvm-libc-types.ldiv_t
30 libc.include.llvm-libc-types.lldiv_t
39 libc.include.llvm-libc-types.sigset_t
47 libc.include.llvm-libc-types.struct_epoll_event
55 libc.include.llvm-libc-types.struct_flock
63 libc.include.llvm-libc-types.struct_flock64
71 libc.include.llvm-libc-types.struct_f_owner_ex
79 libc.include.llvm-libc-types.struct_timespec
87 libc.include.llvm-libc-types.size_t
[all …]
/external/cronet/tot/third_party/llvm-libc/src/hdr/types/
DCMakeLists.txt8 libc.include.llvm-libc-types.div_t
19 libc.include.llvm-libc-types.ldiv_t
30 libc.include.llvm-libc-types.lldiv_t
39 libc.include.llvm-libc-types.sigset_t
47 libc.include.llvm-libc-types.struct_epoll_event
55 libc.include.llvm-libc-types.struct_flock
63 libc.include.llvm-libc-types.struct_flock64
71 libc.include.llvm-libc-types.struct_f_owner_ex
79 libc.include.llvm-libc-types.struct_timespec
87 libc.include.llvm-libc-types.size_t
[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/tensorflow/tensorflow/python/autograph/pyct/static_analysis/
Dtype_inference.py45 """Resolver objects handle the process of looking up actual names and types.
50 types
52 * specify types as a Set of inferred types
64 types_ns: types namespace
82 types_ns: types namespace
88 Set of the argument types.
97 types_ns: types namespace
99 f_type: types of the actual function being called, if known
100 args: types of each respective argument in node.args
101 keywords: types of each respective argument in node.keywords
[all …]
/external/cronet/tot/third_party/llvm-libc/src/src/stdio/gpu/
DCMakeLists.txt8 libc.hdr.types.FILE
18 libc.hdr.types.FILE
28 libc.hdr.types.FILE
36 libc.hdr.types.FILE
60 libc.hdr.types.FILE
71 libc.hdr.types.FILE
82 libc.hdr.types.FILE
93 libc.hdr.types.FILE
104 libc.hdr.types.FILE
115 libc.hdr.types.FILE
[all …]
/external/cronet/stable/third_party/llvm-libc/src/src/stdio/gpu/
DCMakeLists.txt8 libc.hdr.types.FILE
18 libc.hdr.types.FILE
28 libc.hdr.types.FILE
36 libc.hdr.types.FILE
60 libc.hdr.types.FILE
71 libc.hdr.types.FILE
82 libc.hdr.types.FILE
93 libc.hdr.types.FILE
104 libc.hdr.types.FILE
115 libc.hdr.types.FILE
[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/iptables/extensions/
Dlibxt_sctp.t12 -p sctp -m sctp --chunk-types all DATA;=;OK
13 -p sctp -m sctp --chunk-types all INIT;=;OK
14 -p sctp -m sctp --chunk-types all INIT_ACK;=;OK
15 -p sctp -m sctp --chunk-types all SACK;=;OK
16 -p sctp -m sctp --chunk-types all HEARTBEAT;=;OK
17 -p sctp -m sctp --chunk-types all HEARTBEAT_ACK;=;OK
18 -p sctp -m sctp --chunk-types all ABORT;=;OK
19 -p sctp -m sctp --chunk-types all SHUTDOWN;=;OK
20 -p sctp -m sctp --chunk-types all SHUTDOWN_ACK;=;OK
21 -p sctp -m sctp --chunk-types all ERROR;=;OK
[all …]
/external/python/cpython3/Tools/c-analyzer/c_analyzer/
Danalyze.py31 def analyze_decl(decl, typespecs, knowntypespecs, types, knowntypes, *, argument
33 resolved = resolve_decl(decl, typespecs, knowntypespecs, types)
39 return analyze_resolved(resolved, decl, types, knowntypes)
45 def analyze_type_decls(types, analyze_decl, handle_unresolved=True): argument
46 unresolved = set(types)
53 types[decl] = IGNORED
62 types[decl] = UNKNOWN
67 # Handle direct recursive types first.
82 types[decl] = resolved
89 # Handle indirect recursive types.
[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 …]

12345678910>>...979