Searched refs:types (Results 226 - 250 of 3331) sorted by relevance

1234567891011>>

/external/libsepol/tests/policies/test-linker/
H A Dmodule2.conf16 role g_m2_role_1 types g_m2_type_1;
21 #add types to role declared in base test
24 role g_b_role_3 types g_m2_type_2;
28 role o4_b_role_1 types g_m2_type_1;
52 role o1_m2_role_1 types o1_m2_type_1;
/external/chromium_org/components/test/data/autofill/merge/tools/
H A Dserialize_profiles.py38 types = [ColumnNameToFieldType(item[0]) for item in cursor.description]
42 profiles[guid] = zip(types, profile)
52 types = [ColumnNameToFieldType(item[0]) for item in cursor.description]
55 profiles[guid].extend(zip(types, profile))
64 types = [ColumnNameToFieldType(item[0]) for item in cursor.description]
67 profiles[guid].extend(zip(types, profile))
/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/libcxx/test/atomics/atomics.types.generic/
H A DAndroid.mk17 test_makefile := external/libcxx/test/atomics/atomics.types.generic/Android.mk
19 test_name := atomics/atomics.types.generic/address
23 test_name := atomics/atomics.types.generic/bool
27 test_name := atomics/atomics.types.generic/cstdint_typedefs
31 test_name := atomics/atomics.types.generic/integral_typedefs
35 test_name := atomics/atomics.types.generic/integral
/external/libcxx/test/utilities/allocator.adaptor/allocator.adaptor.types/
H A DAndroid.mk17 test_makefile := external/libcxx/test/utilities/allocator.adaptor/allocator.adaptor.types/Android.mk
19 test_name := utilities/allocator.adaptor/allocator.adaptor.types/inner_allocator_type
23 test_name := utilities/allocator.adaptor/allocator.adaptor.types/propagate_on_container_copy_assignment
27 test_name := utilities/allocator.adaptor/allocator.adaptor.types/propagate_on_container_swap
31 test_name := utilities/allocator.adaptor/allocator.adaptor.types/allocator_pointers
35 test_name := utilities/allocator.adaptor/allocator.adaptor.types/propagate_on_container_move_assignment
/external/smack/src/org/xbill/DNS/
H A DCERTRecord.java53 private static Mnemonic types = new Mnemonic("Certificate type", field in class:CERTRecord.CertificateType
57 types.setMaximum(0xFFFF);
58 types.setNumericAllowed(true);
60 types.add(PKIX, "PKIX");
61 types.add(SPKI, "SPKI");
62 types.add(PGP, "PGP");
63 types.add(PKIX, "IPKIX");
64 types.add(SPKI, "ISPKI");
65 types.add(PGP, "IPGP");
66 types
[all...]
H A DZone.java235 allRRsets(Object types) { argument
236 if (types instanceof List) {
237 List typelist = (List) types;
240 RRset set = (RRset) types;
246 oneRRset(Object types, int type) { argument
249 if (types instanceof List) {
250 List list = (List) types;
257 RRset set = (RRset) types;
266 Object types = exactName(name);
267 if (types
[all...]
H A DTypeBitmap.java6 * Routines for deal with the lists of types found in NSEC/NSEC3 records.
18 private TreeSet types; field in class:TypeBitmap
22 types = new TreeSet();
30 types.add(new Integer(array[i]));
56 types.add(Mnemonic.toInteger(typecode));
73 types.add(Mnemonic.toInteger(typecode));
80 int [] array = new int[types.size()];
82 for (Iterator it = types.iterator(); it.hasNext(); )
90 for (Iterator it = types.iterator(); it.hasNext(); ) {
116 if (types
[all...]
/external/deqp/modules/gles3/functional/
H A Des3fAttribLocationTests.cpp42 const AttribType types[] = local
96 for (int typeNdx = 0; typeNdx < DE_LENGTH_OF_ARRAY(types); typeNdx++)
98 const AttribType& type = types[typeNdx];
109 for (int typeNdx = 0; typeNdx < DE_LENGTH_OF_ARRAY(types); typeNdx++)
111 const AttribType& type = types[typeNdx];
129 // For types which occupy more than one location. Alias second location.
147 for (int typeNdx = 0; typeNdx < DE_LENGTH_OF_ARRAY(types); typeNdx++)
149 const AttribType& type = types[typeNdx];
175 for (int typeNdx = 0; typeNdx < DE_LENGTH_OF_ARRAY(types); typeNdx++)
177 const AttribType& type = types[typeNd
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-jai.jar ... .tools.ant.BuildException } org/apache/tools/ant/types/ org/apache/tools/ant/types/optional/ org/apache/tools/ant ...
/external/clang/include/clang/Driver/
H A DAction.h66 types::ID Type;
73 Action(ActionClass _Kind, types::ID _Type)
75 Action(ActionClass _Kind, Action *Input, types::ID _Type)
77 Action(ActionClass _Kind, const ActionList &_Inputs, types::ID _Type)
88 types::ID getType() const { return Type; }
106 InputAction(const llvm::opt::Arg &_Input, types::ID _Type);
134 JobAction(ActionClass Kind, Action *Input, types::ID Type);
135 JobAction(ActionClass Kind, const ActionList &Inputs, types::ID Type);
147 PreprocessJobAction(Action *Input, types::ID OutputType);
157 PrecompileJobAction(Action *Input, types
[all...]
/external/llvm/unittests/IR/
H A DTypeBuilderTest.cpp51 EXPECT_EQ(IntegerType::get(getGlobalContext(), 1), (TypeBuilder<types::i<1>, true>::get(getGlobalContext())));
52 EXPECT_EQ(IntegerType::get(getGlobalContext(), 1), (TypeBuilder<types::i<1>, false>::get(getGlobalContext())));
53 EXPECT_EQ(IntegerType::get(getGlobalContext(), 72), (TypeBuilder<types::i<72>, true>::get(getGlobalContext())));
54 EXPECT_EQ(IntegerType::get(getGlobalContext(), 72), (TypeBuilder<types::i<72>, false>::get(getGlobalContext())));
61 EXPECT_EQ(Type::getFloatTy(getGlobalContext()), (TypeBuilder<types::ieee_float, true>::get(getGlobalContext())));
62 EXPECT_EQ(Type::getFloatTy(getGlobalContext()), (TypeBuilder<types::ieee_float, false>::get(getGlobalContext())));
63 EXPECT_EQ(Type::getDoubleTy(getGlobalContext()), (TypeBuilder<types::ieee_double, true>::get(getGlobalContext())));
64 EXPECT_EQ(Type::getDoubleTy(getGlobalContext()), (TypeBuilder<types::ieee_double, false>::get(getGlobalContext())));
65 EXPECT_EQ(Type::getX86_FP80Ty(getGlobalContext()), (TypeBuilder<types::x86_fp80, true>::get(getGlobalContext())));
66 EXPECT_EQ(Type::getX86_FP80Ty(getGlobalContext()), (TypeBuilder<types
[all...]
/external/chromium_org/third_party/angle/
H A Denumerate_files.py6 types = [ ] variable
21 if arg == "-types":
22 curArray = types
35 # If no types were specified, accept all types
36 if len(types) == 0:
37 types.append("*")
48 for type in types:
/external/clang/lib/Driver/
H A DInputInfo.h41 types::ID Type;
46 InputInfo(types::ID _Type, const char *_BaseInput)
49 InputInfo(const char *_Filename, types::ID _Type, const char *_BaseInput)
53 InputInfo(const llvm::opt::Arg *_InputArg, types::ID _Type,
62 types::ID getType() const { return Type; }
/external/chromium_org/components/sync_driver/
H A Dmodel_association_manager_unittest.cc66 syncer::ModelTypeSet types(syncer::BOOKMARKS, syncer::APPS);
67 DataTypeManager::ConfigureResult expected_result(DataTypeManager::OK, types);
77 model_association_manager.Initialize(types);
84 model_association_manager.StartAssociationAsync(types);
104 syncer::ModelTypeSet types; local
105 types.Put(syncer::BOOKMARKS);
108 types);
115 model_association_manager.Initialize(types);
116 model_association_manager.StartAssociationAsync(types);
132 syncer::ModelTypeSet types; local
160 syncer::ModelTypeSet types; local
186 syncer::ModelTypeSet types; local
213 syncer::ModelTypeSet types; local
245 syncer::ModelTypeSet types; local
300 syncer::ModelTypeSet types; local
323 syncer::ModelTypeSet types; local
357 syncer::ModelTypeSet types; local
[all...]
/external/chromium_org/chrome/renderer/resources/extensions/
H A Dweb_view_request_custom_bindings.js18 // |declarativeWebRequestScheme.types|.
20 return utils.lookup(declarativeWebRequestSchema.types,
42 // Setup all data types for the declarative webRequest API from the schema.
43 for (var i = 0; i < declarativeWebRequestSchema.types.length; ++i) {
44 var typeSchema = declarativeWebRequestSchema.types[i];
/external/chromium_org/v8/test/mjsunit/
H A Dtyped-array-slice.js32 var types = [Array, Int8Array, Uint8Array, Int16Array, Uint16Array, variable
47 for (var t = 0; t < types.length; t++) {
48 var type = types[t];
/external/libcxx/test/input.output/iostreams.base/ios.base/ios.types/ios_failure/
H A DAndroid.mk17 test_makefile := external/libcxx/test/input.output/iostreams.base/ios.base/ios.types/ios_failure/Android.mk
19 test_name := input.output/iostreams.base/ios.base/ios.types/ios_failure/ctor_string_error_code
23 test_name := input.output/iostreams.base/ios.base/ios.types/ios_failure/ctor_char_pointer_error_code
/external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/impl/
H A DAddStaticInitTransformer.java35 Type[] types = info.getSignature().getArgumentTypes();
36 if (types.length != 1 ||
37 !types[0].equals(Constants.TYPE_CLASS) ||
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
H A DTypeUtils.java106 public static Type[] add(Type[] types, Type extra) { argument
107 if (types == null) {
110 List list = Arrays.asList(types);
112 return types;
114 Type[] copy = new Type[types.length + 1];
115 System.arraycopy(types, 0, copy, 0, types.length);
116 copy[types.length] = extra;
138 Type[] types = new Type[names.length];
140 types[
145 getStackSize(Type[] types) argument
153 toInternalNames(Type[] types) argument
193 parseConstructor(Type[] types) argument
[all...]
/external/chromium_org/chrome/browser/resources/sync_internals/
H A Dtypes.js5 cr.define('chrome.sync.types', function() {
35 * @param {!Object} e An event containing the list of known sync types.
38 var types = e.details.types;
39 types.map(function(type) {
92 document.addEventListener('DOMContentLoaded', chrome.sync.types.onLoad, false);
/external/chromium_org/ui/views/controls/menu/
H A Dmenu_runner_impl_adapter.cc32 int32 types) {
33 return impl_->RunMenuAt(parent, button, bounds, anchor, types);
27 RunMenuAt( Widget* parent, MenuButton* button, const gfx::Rect& bounds, MenuAnchorPosition anchor, int32 types) argument
/external/emma/ant/ant15/com/vladium/emma/ant/
H A DXFileSet.java13 import org.apache.tools.ant.types.FileSet;
14 import org.apache.tools.ant.types.PatternSet;
/external/iproute2/include/libiptc/
H A Dipt_kernel_headers.h14 #include <sys/types.h>
23 #include <linux/types.h>
/external/iptables/include/libiptc/
H A Dipt_kernel_headers.h15 #include <sys/types.h>
24 #include <linux/types.h>

Completed in 692 milliseconds

1234567891011>>