Searched defs:types (Results 26 - 50 of 428) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/angle/tests/compiler_tests/
H A DVariablePacker_test.cpp12 static sh::GLenum types[] = { variable
73 for (size_t tt = 0; tt < ArraySize(types); ++tt) {
74 sh::GLenum type = types[tt];
122 for (size_t tt = 0; tt < ArraySize(types); ++tt) {
123 GLenum type = types[tt];
/external/chromium_org/tools/gn/
H A Dsubstitution_writer_unittest.cc65 std::vector<SubstitutionType> types; local
66 types.push_back(SUBSTITUTION_SOURCE);
67 types.push_back(SUBSTITUTION_SOURCE_NAME_PART);
68 types.push_back(SUBSTITUTION_SOURCE_DIR);
75 setup.settings(), SourceFile("//foo/bar/baz.txt"), types, options, out);
/external/chromium_org/tools/grit/grit/format/
H A Dandroid_xml.py61 import types namespace
/external/chromium_org/tools/grit/grit/tool/
H A Dmenu_from_parts.py8 import types namespace
64 if isinstance(part, types.StringTypes):
/external/chromium_org/tools/site_compare/scrapers/firefox/
H A Dfirefox2.py10 import types namespace
112 if type(urls) in types.StringTypes: urls = [urls]
169 if type(urls) in types.StringTypes: urls = [urls]
/external/chromium_org/tools/site_compare/scrapers/ie/
H A Die7.py10 import types namespace
92 if type(urls) in types.StringTypes: urls = [urls]
147 if type(urls) in types.StringTypes: urls = [urls]
/external/chromium_org/tools/telemetry/telemetry/
H A Ddecorators.py8 import types namespace
50 if not isinstance(func, types.FunctionType):
79 if not isinstance(func, types.FunctionType):
/external/chromium_org/tools/telemetry/telemetry/timeline/
H A Dcounter_unittest.py5 import types namespace
22 self.assertIsInstance(itr, types.GeneratorType)
47 self.assertIsInstance(events, types.GeneratorType)
55 self.assertIsInstance(events, types.GeneratorType)
/external/chromium_org/ui/base/clipboard/
H A Dcustom_data_helper_unittest.cc36 std::vector<base::string16> types; local
37 ReadCustomDataTypes(pickle.data(), pickle.size(), &types);
38 EXPECT_EQ(0u, types.size());
66 std::vector<base::string16> types; local
67 ReadCustomDataTypes(pickle.data(), pickle.size(), &types);
73 EXPECT_EQ(expected, types);
/external/chromium_org/v8/tools/
H A Dgen-postmortem-metadata.py189 types = {}; # set of all type names variable
240 # For types, we accumulate a string representing the entire InstanceType
272 types[re.sub('\s*=.*', '', entry).lstrip()] = True;
281 for type in types:
316 # Mapping string types is more complicated. Both types and
360 # Despite all that, some types have no corresponding class.
/external/deqp/modules/gles2/functional/
H A Des2fAttribLocationTests.cpp49 const AttribType types[] = local
69 for (int typeNdx = 0; typeNdx < DE_LENGTH_OF_ARRAY(types); typeNdx++)
71 const AttribType& type = types[typeNdx];
82 for (int typeNdx = 0; typeNdx < DE_LENGTH_OF_ARRAY(types); typeNdx++)
84 const AttribType& type = types[typeNdx];
95 for (int typeNdx = 0; typeNdx < DE_LENGTH_OF_ARRAY(types); typeNdx++)
97 const AttribType& type = types[typeNdx];
102 // For types which occupy more than one location. Alias second location.
120 for (int typeNdx = 0; typeNdx < DE_LENGTH_OF_ARRAY(types); typeNdx++)
122 const AttribType& type = types[typeNd
[all...]
/external/dexmaker/src/main/java/com/google/dexmaker/
H A DComparison.java30 @Override Rop rop(TypeList types) {
31 return Rops.opIfLt(types);
37 @Override Rop rop(TypeList types) {
38 return Rops.opIfLe(types);
42 /** {@code a == b}. Supports int and reference types. */
44 @Override Rop rop(TypeList types) {
45 return Rops.opIfEq(types);
51 @Override Rop rop(TypeList types) {
52 return Rops.opIfGe(types);
58 @Override Rop rop(TypeList types) {
70 rop(TypeList types) argument
[all...]
H A DTypeList.java25 * An immutable of types.
28 final TypeId<?>[] types; field in class:TypeList
31 TypeList(TypeId<?>[] types) { argument
32 this.types = types.clone();
33 this.ropTypes = new StdTypeList(types.length);
34 for (int i = 0; i < types.length; i++) {
35 ropTypes.set(i, types[i].ropType);
43 return Collections.unmodifiableList(Arrays.asList(types));
47 return o instanceof TypeList && Arrays.equals(((TypeList) o).types, type
[all...]
/external/javasqlite/src/main/java/SQLite/
H A DTableResult.java54 public String types[]; field in class:TableResult
97 types = null;
116 public void types(String types[]) { argument
117 this.types = types;
/external/libsepol/tests/
H A Dtest-linker-roles.c50 * - role a and b in base, b dom a, are types correct (TODO)
75 char *types[2]; local
84 types[0] = "g_b_type_1";
85 role = test_role_type_set(base, "g_b_role_1", NULL, types, 1, 0);
94 types[0] = "o1_b_type_1";
95 role = test_role_type_set(base, "o1_b_role_1", decl, types, 1, 0);
105 char *types[3]; local
115 types[0] = "g_m1_type_1";
116 role = test_role_type_set(base, "g_m1_role_1", NULL, types, 1, 0);
125 types[
[all...]
H A Dtest-linker-types.c32 /* Tests for types:
128 char *types[2]; local
130 /* These tests look at types in the base only, the desire is to ensure that
131 * types are not destroyed or otherwise removed during the link process.
132 * if this happens these tests won't work anyway since we are using types to
141 types[0] = "g_b_type_1";
142 test_attr_types(base, "g_b_attr_1", NULL, types, 1);
150 types[0] = "o1_b_type_1";
151 test_attr_types(base, "o1_b_attr_1", base->decl_val_to_struct[decls[0] - 1], types, 1);
166 char *types[ local
[all...]
/external/llvm/include/llvm/IR/
H A DTypeBuilder.h1 //===---- llvm/TypeBuilder.h - Builder for LLVM types -----------*- C++ -*-===//
11 // create LLVM types with a consistent and simplified interface.
24 /// TypeBuilder - This provides a uniform API for looking up types
26 /// series of tag types in the llvm::types namespace, like i<N>,
30 /// these. TypeBuilder<T, true> removes native C types from this set
32 /// We define the primitive types, pointer types, and functions up to
33 /// 5 arguments here, but to use this class with your own types,
45 /// Function::Create(TypeBuilder<types
81 namespace types { namespace in namespace:llvm
[all...]
/external/mockito/cglib-and-asm/src/org/mockito/cglib/proxy/
H A DFactory.java47 * @param types the constructor argument types
52 Object newInstance(Class[] types, Object[] args, Callback[] callbacks); argument
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
H A DBuilderTypeList.java44 @Nonnull final List<? extends BuilderTypeReference> types; field in class:BuilderTypeList
47 public BuilderTypeList(@Nonnull List<? extends BuilderTypeReference> types) { argument
48 this.types = types;
52 return types.get(index);
56 return types.size();
H A DBuilderTypeListPool.java57 @Nonnull public BuilderTypeList internTypeList(@Nullable List<? extends CharSequence> types) { argument
58 if (types == null || types.size() == 0) {
62 BuilderTypeList ret = internedItems.get(types);
68 ImmutableList.copyOf(Iterables.transform(types, new Function<CharSequence, BuilderTypeReference>() {
84 return key==null?BuilderTypeList.EMPTY:key.types;
/external/chromium_org/base/memory/
H A Ddiscardable_memory_android.cc53 std::vector<DiscardableMemoryType>* types) {
59 types->assign(supported_types, supported_types + arraysize(supported_types));
52 GetSupportedTypes( std::vector<DiscardableMemoryType>* types) argument
/external/chromium_org/build/android/pylib/host_driven/
H A Dsetup.py10 import types namespace
129 return (type(test_class) is types.TypeType and
/external/chromium_org/chrome/browser/sync/
H A Dprofile_sync_components_factory_impl_unittest.cc100 // Asserts that if you disable types via the command line, all other types
102 void TestSwitchDisablesType(syncer::ModelTypeSet types) { argument
104 syncer::ModelTypeSetToString(types));
124 EXPECT_EQ(DefaultDatatypesCount() - types.Size(), controller_states.size());
125 CheckDefaultDatatypesInMapExcept(&controller_states, types);
/external/chromium_org/chrome/browser/ui/autofill/
H A Dautofill_dialog_common.cc33 // Check the groups to distinguish billing types from shipping ones.
121 std::vector<ServerFieldType> types; local
123 types.push_back(inputs[i].type);
125 return types;
/external/chromium_org/chrome/test/perf/
H A Dmach_ports_performancetest.cc54 mach_port_type_array_t types; local
62 &types, &types_count);
71 vm_deallocate(self, reinterpret_cast<vm_address_t>(types),

Completed in 939 milliseconds

1234567891011>>