Home
last modified time | relevance | path

Searched refs:types (Results 1 – 25 of 2419) sorted by relevance

12345678910>>...97

/external/smack/src/org/xbill/DNS/
DType.java224 private static TypeMnemonic types = new TypeMnemonic(); field in Type
227 types.add(A, "A", new ARecord()); in types.add()
228 types.add(NS, "NS", new NSRecord()); in types.add()
229 types.add(MD, "MD", new MDRecord()); in types.add()
230 types.add(MF, "MF", new MFRecord()); in types.add()
231 types.add(CNAME, "CNAME", new CNAMERecord()); in types.add()
232 types.add(SOA, "SOA", new SOARecord()); in types.add()
233 types.add(MB, "MB", new MBRecord()); in types.add()
234 types.add(MG, "MG", new MGRecord()); in types.add()
235 types.add(MR, "MR", new MRRecord()); in types.add()
[all …]
DNSECRecord.java24 private TypeBitmap types; field in NSECRecord
39 NSECRecord(Name name, int dclass, long ttl, Name next, int [] types) { in NSECRecord() argument
42 for (int i = 0; i < types.length; i++) { in NSECRecord()
43 Type.check(types[i]); in NSECRecord()
45 this.types = new TypeBitmap(types); in NSECRecord()
51 types = new TypeBitmap(in); in rrFromWire()
58 types.toWire(out); in rrToWire()
64 types = new TypeBitmap(st); in rdataFromString()
73 if (!types.empty()) { in rrToString()
75 sb.append(types.toString()); in rrToString()
[all …]
DZone.java235 allRRsets(Object types) { in allRRsets() argument
236 if (types instanceof List) { in allRRsets()
237 List typelist = (List) types; in allRRsets()
240 RRset set = (RRset) types; in allRRsets()
246 oneRRset(Object types, int type) { in oneRRset() argument
249 if (types instanceof List) { in oneRRset()
250 List list = (List) types; in oneRRset()
257 RRset set = (RRset) types; in oneRRset()
266 Object types = exactName(name); in findRRset() local
267 if (types == null) in findRRset()
[all …]
DCERTRecord.java53 private static Mnemonic types = new Mnemonic("Certificate type", field in CERTRecord.CertificateType
57 types.setMaximum(0xFFFF);
58 types.setNumericAllowed(true);
60 types.add(PKIX, "PKIX"); in types.add()
61 types.add(SPKI, "SPKI"); in types.add()
62 types.add(PGP, "PGP"); in types.add()
63 types.add(PKIX, "IPKIX"); in types.add()
64 types.add(SPKI, "ISPKI"); in types.add()
65 types.add(PGP, "IPGP"); in types.add()
66 types.add(PGP, "ACPKIX"); in types.add()
[all …]
/external/libsepol/tests/
Dtest-linker-types.c128 char *types[2]; in base_type_tests() local
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 char *types[2]; in module_type_tests() local
185 types[0] = "g_m1_type_1"; in module_type_tests()
186 types[1] = "g_m1_type_2"; in module_type_tests()
187 test_attr_types(base, "g_m1_attr_1", NULL, types, 2); in module_type_tests()
195 types[0] = "o1_m1_type_2"; in module_type_tests()
[all …]
Dtest-linker-roles.c75 char *types[2]; in base_role_tests() local
84 types[0] = "g_b_type_1"; in base_role_tests()
85 role = test_role_type_set(base, "g_b_role_1", NULL, types, 1, 0); in base_role_tests()
94 types[0] = "o1_b_type_1"; in base_role_tests()
95 role = test_role_type_set(base, "o1_b_role_1", decl, types, 1, 0); in base_role_tests()
105 char *types[3]; in module_role_tests() local
115 types[0] = "g_m1_type_1"; in module_role_tests()
116 role = test_role_type_set(base, "g_m1_role_1", NULL, types, 1, 0); in module_role_tests()
125 types[0] = "o1_m1_type_1"; in module_role_tests()
126 role = test_role_type_set(base, "o1_m1_role_1", decl, types, 1, 0); in module_role_tests()
[all …]
/external/libcxx/test/atomics/atomics.types.operations/atomics.types.operations.req/
DAndroid.mk17 test_makefile := external/libcxx/test/atomics/atomics.types.operations/atomics.types.operations.req…
19 test_name := atomics/atomics.types.operations/atomics.types.operations.req/atomic_fetch_or
23 test_name := atomics/atomics.types.operations/atomics.types.operations.req/atomic_compare_exchange_…
27 test_name := atomics/atomics.types.operations/atomics.types.operations.req/atomic_exchange
31 test_name := atomics/atomics.types.operations/atomics.types.operations.req/atomic_compare_exchange_…
35 test_name := atomics/atomics.types.operations/atomics.types.operations.req/atomic_fetch_or_explicit
39 test_name := atomics/atomics.types.operations/atomics.types.operations.req/atomic_fetch_add_explicit
43 test_name := atomics/atomics.types.operations/atomics.types.operations.req/atomic_is_lock_free
47 test_name := atomics/atomics.types.operations/atomics.types.operations.req/atomic_fetch_sub_explicit
51 test_name := atomics/atomics.types.operations/atomics.types.operations.req/atomic_init
[all …]
/external/dexmaker/src/main/java/com/google/dexmaker/
DBinaryOp.java42 @Override Rop rop(TypeList types) { in ADD() argument
43 return Rops.opAdd(types); in ADD()
49 @Override Rop rop(TypeList types) { in SUBTRACT() argument
50 return Rops.opSub(types); in SUBTRACT()
56 @Override Rop rop(TypeList types) { in MULTIPLY() argument
57 return Rops.opMul(types); in MULTIPLY()
63 @Override Rop rop(TypeList types) { in DIVIDE() argument
64 return Rops.opDiv(types); in DIVIDE()
70 @Override Rop rop(TypeList types) { in REMAINDER() argument
71 return Rops.opRem(types); in REMAINDER()
[all …]
DComparison.java30 @Override Rop rop(TypeList types) { in LT() argument
31 return Rops.opIfLt(types); in LT()
37 @Override Rop rop(TypeList types) { in LE() argument
38 return Rops.opIfLe(types); in LE()
44 @Override Rop rop(TypeList types) { in EQ() argument
45 return Rops.opIfEq(types); in EQ()
51 @Override Rop rop(TypeList types) { in GE() argument
52 return Rops.opIfGe(types); in GE()
58 @Override Rop rop(TypeList types) { in GT() argument
59 return Rops.opIfGt(types); in GT()
[all …]
DTypeList.java28 final TypeId<?>[] types; field in TypeList
31 TypeList(TypeId<?>[] types) { in TypeList() argument
32 this.types = types.clone(); in TypeList()
33 this.ropTypes = new StdTypeList(types.length); in TypeList()
34 for (int i = 0; i < types.length; i++) { in TypeList()
35 ropTypes.set(i, types[i].ropType); in TypeList()
43 return Collections.unmodifiableList(Arrays.asList(types)); in asList()
47 return o instanceof TypeList && Arrays.equals(((TypeList) o).types, types); in equals()
51 return Arrays.hashCode(types); in hashCode()
56 for (int i = 0; i < types.length; i++) { in toString()
[all …]
/external/clang/lib/Driver/
DTypes.cpp17 using namespace clang::driver::types;
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()
69 bool types::appendSuffixForType(ID Id) { in appendSuffixForType()
73 bool types::canLipoType(ID Id) { in canLipoType()
80 bool types::isAcceptedByClang(ID Id) { in isAcceptedByClang()
[all …]
DAction.cpp45 InputAction::InputAction(const Arg &_Input, types::ID _Type) in InputAction()
57 JobAction::JobAction(ActionClass Kind, Action *Input, types::ID Type) in JobAction()
61 JobAction::JobAction(ActionClass Kind, const ActionList &Inputs, types::ID Type) in JobAction()
67 PreprocessJobAction::PreprocessJobAction(Action *Input, types::ID OutputType) in PreprocessJobAction()
73 PrecompileJobAction::PrecompileJobAction(Action *Input, types::ID OutputType) in PrecompileJobAction()
79 AnalyzeJobAction::AnalyzeJobAction(Action *Input, types::ID OutputType) in AnalyzeJobAction()
85 MigrateJobAction::MigrateJobAction(Action *Input, types::ID OutputType) in MigrateJobAction()
91 CompileJobAction::CompileJobAction(Action *Input, types::ID OutputType) in CompileJobAction()
97 AssembleJobAction::AssembleJobAction(Action *Input, types::ID OutputType) in AssembleJobAction()
103 LinkJobAction::LinkJobAction(ActionList &Inputs, types::ID Type) in LinkJobAction()
[all …]
/external/chromium_org/chrome/browser/extensions/
Dextension_notification_observer.cc17 std::string Str(const std::vector<extensions::NotificationType>& types) { in Str() argument
21 types.begin(); in Str()
22 it != types.end(); in Str()
63 std::vector<extensions::NotificationType> types; in CheckNotifications() local
64 types.push_back(t1); in CheckNotifications()
65 types.push_back(t2); in CheckNotifications()
66 return CheckNotifications(types); in CheckNotifications()
73 std::vector<extensions::NotificationType> types; in CheckNotifications() local
74 types.push_back(t1); in CheckNotifications()
75 types.push_back(t2); in CheckNotifications()
[all …]
/external/chromium_org/components/sync_driver/
Dmodel_association_manager_unittest.cc66 syncer::ModelTypeSet types(syncer::BOOKMARKS, syncer::APPS); in TEST_F() local
67 DataTypeManager::ConfigureResult expected_result(DataTypeManager::OK, types); in TEST_F()
77 model_association_manager.Initialize(types); in TEST_F()
84 model_association_manager.StartAssociationAsync(types); in TEST_F()
104 syncer::ModelTypeSet types; in TEST_F() local
105 types.Put(syncer::BOOKMARKS); in TEST_F()
108 types); in TEST_F()
115 model_association_manager.Initialize(types); in TEST_F()
116 model_association_manager.StartAssociationAsync(types); in TEST_F()
132 syncer::ModelTypeSet types; in TEST_F() local
[all …]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
DTypeListPool.java52 public void intern(@Nonnull Collection<? extends CharSequence> types) { in intern() argument
53 if (types.size() > 0) { in intern()
54 …tends Collection<? extends CharSequence>> key = new Key<Collection<? extends CharSequence>>(types); in intern()
57 for (CharSequence type: types) { in intern()
69 return typesKey.types; in getTypes()
73 if (key == null || key.types.size() == 0) { in getNullableItemOffset()
82 @Nonnull TypeCollection types; field in TypeListPool.Key
84 public Key(@Nonnull TypeCollection types) { in Key() argument
85 this.types = types; in Key()
91 for (CharSequence type: types) { in hashCode()
[all …]
/external/llvm/unittests/IR/
DTypeBuilderTest.cpp51 …EXPECT_EQ(IntegerType::get(getGlobalContext(), 1), (TypeBuilder<types::i<1>, true>::get(getGlobalC… in TEST()
52 …EXPECT_EQ(IntegerType::get(getGlobalContext(), 1), (TypeBuilder<types::i<1>, false>::get(getGlobal… in TEST()
53 …EXPECT_EQ(IntegerType::get(getGlobalContext(), 72), (TypeBuilder<types::i<72>, true>::get(getGloba… in TEST()
54 …EXPECT_EQ(IntegerType::get(getGlobalContext(), 72), (TypeBuilder<types::i<72>, false>::get(getGlob… in TEST()
61 …EXPECT_EQ(Type::getFloatTy(getGlobalContext()), (TypeBuilder<types::ieee_float, true>::get(getGlob… in TEST()
62 …EXPECT_EQ(Type::getFloatTy(getGlobalContext()), (TypeBuilder<types::ieee_float, false>::get(getGlo… in TEST()
63 …EXPECT_EQ(Type::getDoubleTy(getGlobalContext()), (TypeBuilder<types::ieee_double, true>::get(getGl… in TEST()
64 …EXPECT_EQ(Type::getDoubleTy(getGlobalContext()), (TypeBuilder<types::ieee_double, false>::get(getG… in TEST()
65 …EXPECT_EQ(Type::getX86_FP80Ty(getGlobalContext()), (TypeBuilder<types::x86_fp80, true>::get(getGlo… in TEST()
66 …EXPECT_EQ(Type::getX86_FP80Ty(getGlobalContext()), (TypeBuilder<types::x86_fp80, false>::get(getGl… in TEST()
[all …]
/external/iptables/extensions/
Dlibip6t_mh.c75 mhinfo->types[1] = 0xFF; in mh_init()
105 static void parse_mh_types(const char *mhtype, uint8_t *types) in parse_mh_types() argument
112 types[0] = types[1] = name_to_type(buffer); in parse_mh_types()
117 types[0] = buffer[0] ? name_to_type(buffer) : 0; in parse_mh_types()
118 types[1] = cp[0] ? name_to_type(cp) : 0xFF; in parse_mh_types()
120 if (types[0] > types[1]) in parse_mh_types()
132 parse_mh_types(cb->arg, mhinfo->types); in mh_parse()
181 print_types(mhinfo->types[0], mhinfo->types[1], in mh_print()
193 if (mhinfo->types[0] == 0 && mhinfo->types[1] == 0xFF) in mh_save()
199 if (mhinfo->types[0] != mhinfo->types[1]) in mh_save()
[all …]
/external/sepolicy/
Dattributes5 # All types used for devices.
8 # All types used for processes.
11 # All types used for filesystems.
14 # All types used for context= mounts.
17 # All types used for files that can exist on a labeled fs.
18 # Do not use for pseudo file types.
21 # All types used for domain entry points.
24 # All types used for /data files.
27 # All types use for sysfs files.
33 # All types used for nodes/hosts.
[all …]
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
DTypeUtils.java106 public static Type[] add(Type[] types, Type extra) { in add() argument
107 if (types == null) { in add()
110 List list = Arrays.asList(types); in add()
112 return types; in add()
114 Type[] copy = new Type[types.length + 1]; in add()
115 System.arraycopy(types, 0, copy, 0, types.length); in add()
116 copy[types.length] = extra; in add()
138 Type[] types = new Type[names.length]; in fromInternalNames() local
140 types[i] = fromInternalName(names[i]); in fromInternalNames()
142 return types; in fromInternalNames()
[all …]
/external/mockito/cglib-and-asm/src/org/mockito/cglib/beans/
DBulkBean.java35 … public Object newInstance(String target, String[] getters, String[] setters, String[] types); in newInstance() argument
40 protected Class[] types; field in BulkBean
54 return (Class[])types.clone(); in getPropertyTypes()
65 public static BulkBean create(Class target, String[] getters, String[] setters, Class[] types) { in create() argument
70 gen.setTypes(types); in create()
79 private Class[] types; field in BulkBean.Generator
97 public void setTypes(Class[] types) { in setTypes() argument
98 this.types = types; in setTypes()
108 String[] typeClassNames = ReflectUtils.getNames(types); in create()
114 new BulkBeanEmitter(v, getClassName(), target, getters, setters, types); in generateClass()
[all …]
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
DX509CertSelectorTest.java37 int[] types = { 0, 1, 2, 3, 4, 5, 6, 7, 8 }; in test_addSubjectAlternativeNameLintLbyte_array() local
38 for (int i = 0; i < types.length; i++) { in test_addSubjectAlternativeNameLintLbyte_array()
40 new X509CertSelector().addSubjectAlternativeName(types[i], in test_addSubjectAlternativeNameLintLbyte_array()
42 fail("No expected NullPointerException for type: " + types[i]); in test_addSubjectAlternativeNameLintLbyte_array()
53 int[] types = { 0, 3, 4, 5, 6, 7, 8 }; in test_addSubjectAlternativeNameLintLjava_lang_String() local
54 for (int i = 0; i < types.length; i++) { in test_addSubjectAlternativeNameLintLjava_lang_String()
56 new X509CertSelector().addSubjectAlternativeName(types[i], in test_addSubjectAlternativeNameLintLjava_lang_String()
58 fail("IOException expected for type: " + types[i]); in test_addSubjectAlternativeNameLintLjava_lang_String()
86 int[] types = { 0, 1, 2, 3, 4, 5, 6, 7, 8 }; in test_addPathToNameLintLbyte_array() local
87 for (int i = 0; i < types.length; i++) { in test_addPathToNameLintLbyte_array()
[all …]
/external/chromium_org/v8/test/intl/break-iterator/
Dzh-break.js37 var types = []; variable
44 types.push(iterator.breakType());
58 assertEquals('ideo', types[0]);
59 assertEquals('ideo', types[1]);
60 assertEquals('none', types[2]);
61 assertEquals('ideo', types[3]);
62 assertEquals('ideo', types[4]);
63 assertEquals('none', types[types.length - 1]);
Den-break.js36 var types = []; variable
43 types.push(iterator.breakType());
56 assertEquals('letter', types[0]);
57 assertEquals('none', types[1]);
58 assertEquals('letter', types[2]);
59 assertEquals('none', types[3]);
60 assertEquals('letter', types[4]);
61 assertEquals('none', types[types.length - 1]);
/external/chromium_org/third_party/sqlite/src/test/
Dtypes.test15 # $Id: types.test,v 1.20 2009/06/29 06:00:37 danielk1977 Exp $
22 # types-1.*.*: Test that values are stored using the expected storage
25 # types-1.1.*: INSERT INTO <table> VALUES(...)
26 # types-1.2.*: INSERT INTO <table> SELECT...
27 # types-1.3.*: UPDATE <table> SET...
29 # types-2.*.*: Check that values can be stored and retrieving using the
31 # types-2.1.*: INTEGER
32 # types-2.2.*: REAL
33 # types-2.3.*: NULL
34 # types-2.4.*: TEXT
[all …]
/external/clang/include/clang/Driver/
DAction.h66 types::ID Type;
73 Action(ActionClass _Kind, types::ID _Type) in Action()
75 Action(ActionClass _Kind, Action *Input, types::ID _Type) in Action()
77 Action(ActionClass _Kind, const ActionList &_Inputs, types::ID _Type) in Action()
88 types::ID getType() const { return Type; } in getType()
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::ID OutputType);
[all …]

12345678910>>...97