Searched refs:names (Results 1 - 25 of 708) sorted by relevance

1234567891011>>

/external/v8/test/mjsunit/
H A Dkeyed-storage-extend.js12 // * Neither the name of Google Inc. nor the names of its
40 var names = ['a','b','c','d','e','f'];
42 o[names[i++]] = i;
43 o[names[i++]] = i;
44 o[names[i++]] = i;
45 o[names[i++]] = i;
46 o[names[i++]] = i;
47 o[names[i++]] = i;
H A Dfunction-names.js12 // * Neither the name of Google Inc. nor the names of its
29 function TestFunctionNames(object, names) {
30 for (var i = 0; i < names.length; i++) {
31 assertEquals(names[i], object[names[i]].name);
/external/e2fsprogs/e2fsck/
H A Dprofile_helpers.h13 (profile_t profile, const char *const *names, char ***ret_values);
19 (profile_t profile, const char **names, char ***ret_names);
22 (profile_t profile, const char **names, char ***ret_names);
/external/v8/test/mjsunit/regress/
H A Dregress-crbug-40931.js12 // * Neither the name of Google Inc. nor the names of its
34 var names = "a,b,c,d"; variable
37 var splitNames = names.split(/,/);
/external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/impl/
H A DAddPropertyTransformer.java25 private final String[] names; field in class:AddPropertyTransformer
30 names = (String[])props.keySet().toArray(new String[size]);
33 types[i] = (Type)props.get(names[i]);
37 public AddPropertyTransformer(String[] names, Type[] types) { argument
38 this.names = names;
44 EmitUtils.add_properties(this, names, types);
H A DFieldProviderTransformer.java82 final String[] names = (String[])fields.keySet().toArray(new String[fields.size()]);
84 int indexes[] = new int[names.length];
93 initFieldProvider(names);
96 getField(names);
97 setField(names);
98 setByIndex(names, indexes);
99 getByIndex(names, indexes);
102 private void initFieldProvider(String[] names) { argument
104 EmitUtils.push_object(e, names);
107 e.push(names
134 setByIndex(final String[] names, final int[] indexes) argument
153 getByIndex(final String[] names, final int[] indexes) argument
173 getField(String[] names) argument
191 setField(String[] names) argument
[all...]
/external/libcxxabi/src/
H A Dcxa_demangle.cpp59 printf("names:\n");
60 for (auto& s : db.names)
205 db.names.push_back(typename C::String(num, static_cast<std::size_t>(n)));
235 db.names.push_back("(anonymous namespace)");
237 db.names.push_back(std::move(r));
267 db.names.push_back("std::allocator");
271 db.names.push_back("std::basic_string");
275 db.names.push_back("std::string");
279 db.names.push_back("std::istream");
283 db.names
4875 sub_type names; member in struct:__cxxabiv1::__anon7853::Db
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
H A DGeneralNames.java13 private final GeneralName[] names; field in class:GeneralNames
51 this.names = new GeneralName[] { name };
56 GeneralName[] names)
58 this.names = names;
64 this.names = new GeneralName[seq.size()];
68 names[i] = GeneralName.getInstance(seq.getObjectAt(i));
74 GeneralName[] tmp = new GeneralName[names.length];
76 System.arraycopy(names, 0, tmp, 0, names
55 GeneralNames( GeneralName[] names) argument
[all...]
/external/selinux/libselinux/utils/
H A Dgetsebool.c18 char **names; local
31 rc = security_get_boolean_names(&names, &len);
34 "%s: Unable to get boolean names: %s\n",
58 names = malloc(sizeof(char *) * len);
59 if (!names) {
64 names[i] = strdup(argv[i + 1]);
65 if (!names[i]) {
74 active = security_get_boolean_active(names[i]);
79 names[i]);
83 pending = security_get_boolean_pending(names[
[all...]
/external/apache-xml/src/main/java/org/apache/xml/dtm/
H A DAxis.java182 /** The names of the axes for diagnostic purposes. */
183 private static final String[] names = field in class:Axis
213 return names[index];
217 return names.length;
/external/proguard/src/proguard/obfuscate/
H A DDictionaryNameFactory.java27 * This <code>NameFactory</code> generates names that are read from a
38 private final List names; field in class:DictionaryNameFactory
46 * @param file the file from which the names can be read.
47 * @param nameFactory the name factory from which names will be retrieved
48 * if the list of read names has been exhausted.
53 this.names = new ArrayList();
81 // Add the completed name to the list of names, if it's
84 if (!names.contains(name))
86 names.add(name);
126 * @param nameFactory the name factory from which names wil
[all...]
/external/opencv/cv/src/
H A Dcvswitcher.cpp45 #define IPCVAPI_EX(type,func_name,names,modules,arg) \
46 { (void**)&func_name##_p, (void*)(size_t)-1, names, modules, 0 },
/external/linux-tools-perf/src/tools/perf/util/
H A Dhelp.c16 ALLOC_GROW(cmds->names, cmds->cnt + 1, cmds->alloc);
17 cmds->names[cmds->cnt++] = ent;
25 free(cmds->names[i]);
26 free(cmds->names);
46 if (strcmp(cmds->names[i]->name, cmds->names[i-1]->name))
47 cmds->names[j++] = cmds->names[i];
59 cmp = strcmp(cmds->names[ci]->name, excludes->names[e
[all...]
/external/google-breakpad/src/common/
H A Ddwarf_cfi_to_module.cc16 // * Neither the name of Google Inc. nor the names of its
48 vector<string> names(strings, strings + size);
49 return names;
53 static const char *const names[] = { local
65 return MakeVector(names, sizeof(names) / sizeof(names[0]));
69 static const char *const names[] = { local
84 return MakeVector(names, sizeof(names) / sizeo
89 static const char *const names[] = { local
110 static const char *const names[] = { local
[all...]
/external/toybox/toys/lsb/
H A Dkillall.c1 /* killall.c - Send signal (default: TERM) to all processes with given names.
15 Send a signal (default: TERM) to all processes with the given names.
32 char **names;
50 if (TT.names[offset] == name) {
67 TT.names = toys.optargs;
75 if (TT.sig || (*TT.names && **TT.names == '-')) {
76 if (0 > (TT.signum = sig_to_num(TT.sig ? TT.sig : (*TT.names)+1))) {
81 TT.names++;
95 names_to_pid(TT.names, kill_proces
[all...]
/external/selinux/checkpolicy/
H A Dpolicy_parse.y215 default_user_def : DEFAULT_USER names SOURCE ';'
217 | DEFAULT_USER names TARGET ';'
220 default_role_def : DEFAULT_ROLE names SOURCE ';'
222 | DEFAULT_ROLE names TARGET ';'
225 default_type_def : DEFAULT_TYPE names SOURCE ';'
227 | DEFAULT_TYPE names TARGET ';'
230 default_range_def : DEFAULT_RANGE names SOURCE LOW ';'
232 | DEFAULT_RANGE names SOURCE HIGH ';'
234 | DEFAULT_RANGE names SOURCE LOW_HIGH ';'
236 | DEFAULT_RANGE names TARGE
796 names : identifier label
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/impl/
H A DDataRecord.java59 record.pl = in.namedIndex("pl", EPluralization.names);
61 record.genders = in.namedIndexArray("gender", EGender.names);
72 EHalfPlacement.names);
74 EHalfSupport.names);
85 ENumberSystem.names);
91 EZeroHandling.names);
93 EDecimalHandling.names);
95 EFractionHandling.names);
100 EMilliSupport.names);
126 out.namedIndex("pl", EPluralization.names, p
205 public static final String[] names = { "NOLIMIT", "LT", "MT" }; field in interface:DataRecord.ETimeLimit
212 public static final String[] names = { "NODIRECTION", "PAST", "FUTURE" }; field in interface:DataRecord.ETimeDirection
219 public static final String[] names = { "PLURALIZED", "MEDIUM", "SHORT" }; field in interface:DataRecord.EUnitVariant
229 public static final String[] names = { "INTEGER", "INTEGER_CUSTOM", field in interface:DataRecord.ECountVariant
240 public static final String[] names = { "NONE", "PLURAL", "DUAL", field in interface:DataRecord.EPluralization
248 public static final String[] names = { "PREFIX", "AFTER_FIRST", "LAST" }; field in interface:DataRecord.EHalfPlacement
256 public static final String[] names = { "DEFAULT", field in interface:DataRecord.ENumberSystem
263 public static final String[] names = { "ZPLURAL", "ZSINGULAR" }; field in interface:DataRecord.EZeroHandling
271 public static final String[] names = { "DPLURAL", "DSINGULAR", field in interface:DataRecord.EDecimalHandling
280 public static final String[] names = { "FPLURAL", "FSINGULAR_PLURAL", field in interface:DataRecord.EFractionHandling
288 public static final String[] names = { "YES", "NO", "ONE_PLUS" }; field in interface:DataRecord.EHalfSupport
295 public static final String[] names = { "YES", "NO", "WITH_SECONDS" }; field in interface:DataRecord.EMilliSupport
302 public static final String[] names = { "NONE", "SHORT", "FULL" }; field in interface:DataRecord.ESeparatorVariant
309 public static final String[] names = { "M", "F", "N" }; field in interface:DataRecord.EGender
[all...]
/external/linux-tools-perf/src/tools/perf/tests/
H A Devsel-roundtrip-name.c63 static int __perf_evsel__name_array_test(const char *names[], int nr_names) argument
73 err = parse_events(evlist, names[i]);
76 names[i], err);
83 if (strcmp(perf_evsel__name(evsel), names[evsel->idx])) {
85 pr_debug("%s != %s\n", perf_evsel__name(evsel), names[evsel->idx]);
94 #define perf_evsel__name_array_test(names) \
95 __perf_evsel__name_array_test(names, ARRAY_SIZE(names))
/external/v8/test/webkit/fast/js/
H A Darray-functions-non-arrays.js33 var names = [];
36 names.push(propertyName);
39 names.push("length");
40 names.push(extraName1);
41 names.push(extraName2);
42 names.push(extraName3);
43 names.sort();
46 for (i = 0; i < names.length; ++i) {
47 var name = names[i];
48 if (name == names[
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/template/
H A Dparameter.rb25 def names method in class:ANTLR3.Template.ParameterList
26 names = map { | param | param.name.to_s }
27 @splat and names << @splat.to_s
28 @block and names << @block.to_s
29 return( names )
/external/fonttools/Lib/fontTools/ttLib/tables/
H A DL_T_S_H_.py29 names = list(self.yPels.keys())
30 numGlyphs = len(names)
34 for name in names:
40 names = sorted(self.yPels.keys())
41 for name in names:
/external/fonttools/Tools/fontTools/ttLib/tables/
H A DL_T_S_H_.py29 names = list(self.yPels.keys())
30 numGlyphs = len(names)
34 for name in names:
40 names = sorted(self.yPels.keys())
41 for name in names:
/external/google-breakpad/src/testing/gtest/src/
H A Dgtest-typed-test.cc14 // * Neither the name of Google Inc. nor the names of its
48 // Verifies that registered_tests match the test names in
62 for (const char* names = registered_tests; names != NULL;
63 names = SkipComma(names)) {
64 const String name = GetPrefixUntilComma(names);
/external/gtest/src/
H A Dgtest-typed-test.cc14 // * Neither the name of Google Inc. nor the names of its
48 // Verifies that registered_tests match the test names in
62 for (const char* names = registered_tests; names != NULL;
63 names = SkipComma(names)) {
64 const std::string name = GetPrefixUntilComma(names);
/external/javassist/src/main/javassist/convert/
H A DTransformAccessArrayField.java39 private final ArrayAccessReplacementMethodNames names; field in class:TransformAccessArrayField
44 ArrayAccessReplacementMethodNames names) throws NotFoundException {
47 this.names = names;
169 methodName = names.objectRead();
172 methodName = names.byteOrBooleanRead();
175 methodName = names.charRead();
178 methodName = names.doubleRead();
181 methodName = names.floatRead();
184 methodName = names
43 TransformAccessArrayField(Transformer next, String methodClassname, ArrayAccessReplacementMethodNames names) argument
[all...]

Completed in 1411 milliseconds

1234567891011>>