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

1234567891011>>

/external/stlport/test/unit/
H A Dinsert_test.cpp36 deque<char const*> names(array1, array1 + 3);
37 deque<char const*>::iterator i = names.begin() + 2;
39 insert_iterator<deque <char const*> > itd(names, i);
40 itd = copy(array2, array2 + 3, insert_iterator<deque <char const*> >(names, i));
42 CPPUNIT_ASSERT( !strcmp(names[0], "laurie") );
43 CPPUNIT_ASSERT( !strcmp(names[1], "jennifer") );
44 CPPUNIT_ASSERT( !strcmp(names[2], "amanda") );
45 CPPUNIT_ASSERT( !strcmp(names[3], "saskia") );
46 CPPUNIT_ASSERT( !strcmp(names[4], "carrie") );
47 CPPUNIT_ASSERT( !strcmp(names[
[all...]
H A Dfinsert_test.cpp34 deque<char const*> names; local
35 front_insert_iterator<deque<char const*> > fit(names);
36 fit = copy(array, array + 3, front_insert_iterator<deque <char const*> >(names));
38 CPPUNIT_ASSERT(names[0]==array[2]);
39 CPPUNIT_ASSERT(names[1]==array[1]);
40 CPPUNIT_ASSERT(names[2]==array[0]);
43 CPPUNIT_ASSERT(names[3]==array[2]);
44 CPPUNIT_ASSERT(names[4]==array[1]);
45 CPPUNIT_ASSERT(names[5]==array[0]);
52 deque<char const*> names; local
[all...]
H A Dbinsert_test.cpp33 vector<const char*> names; local
34 back_insert_iterator<vector<const char*> > bit(names);
37 CPPUNIT_ASSERT(!strcmp(names[0],array[0]));
38 CPPUNIT_ASSERT(!strcmp(names[1],array[1]));
39 CPPUNIT_ASSERT(!strcmp(names[2],array[2]));
42 CPPUNIT_ASSERT(!strcmp(names[3],array[0]));
43 CPPUNIT_ASSERT(!strcmp(names[4],array[1]));
44 CPPUNIT_ASSERT(!strcmp(names[5],array[2]));
49 vector<const char*> names; local
50 copy(array, array + 3, back_inserter(names));
[all...]
H A Dmax_test.cpp59 const char* names[] = { "Brett", "Graham", "Jack", "Mike", "Todd" }; local
61 const unsigned namesCt = sizeof(names) / sizeof(names[0]);
62 const char** r = max_element((const char**)names, (const char**)names + namesCt, str_compare);
H A Dmin_test.cpp57 const char* names[] = { "Brett", "Graham", "Jack", "Mike", "Todd" }; local
59 const unsigned namesCt = sizeof(names) / sizeof(names[0]);
60 const char** r = min_element((const char**)names, (const char**)names + namesCt, str_compare);
/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/gcc-demangle/
H A Dtest.c3 const char* names[4] = {"_ZN6SkPath4IterC1ERKS_b", variable
18 printf ("%s -> %s\n", names[i], demangle_symbol_name(names[i]));
/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/smali/dexlib/src/main/java/org/jf/dexlib/EncodedValue/
H A DAnnotationEncodedSubValue.java46 public final StringIdItem[] names; field in class:AnnotationEncodedSubValue
57 names = new StringIdItem[in.readUnsignedLeb128()];
58 values = new EncodedValue[names.length];
60 for (int i=0; i<names.length; i++) {
61 names[i] = dexFile.StringIdsSection.getItemByIndex(in.readUnsignedLeb128());
67 * Constructs a new <code>AnnotationEncodedValue</code> with the given values. names and values must be the same
70 * @param names An array of the names of the elements of the annotation
73 public AnnotationEncodedSubValue(TypeIdItem annotationType, StringIdItem[] names, EncodedValue[] values) { argument
75 if (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/util/
H A Dhelp.c15 ALLOC_GROW(cmds->names, cmds->cnt + 1, cmds->alloc);
16 cmds->names[cmds->cnt++] = ent;
24 free(cmds->names[i]);
25 free(cmds->names);
45 if (strcmp(cmds->names[i]->name, cmds->names[i-1]->name))
46 cmds->names[j++] = cmds->names[i];
58 cmp = strcmp(cmds->names[ci]->name, excludes->names[e
[all...]
/external/webkit/Source/WebCore/platform/graphics/
H A DGraphicsTypes.cpp90 const char* const names[3] = { "butt", "round", "square" };
91 return names[cap];
115 const char* const names[3] = { "miter", "round", "bevel" };
116 return names[join];
123 const char* const names[5] = { "start", "end", "left", "center", "right" };
124 return names[align];
156 const char* const names[6] = { "alphabetic", "top", "middle", "bottom", "ideographic", "hanging" };
157 return names[baseline];
/external/webkit/Source/WebKit/android/WebCoreSupport/autofill/
H A DAutoFillHostAndroid.cpp38 void AutoFillHostAndroid::AutoFillSuggestionsReturned(const std::vector<string16>& names, const std::vector<string16>& labels, const std::vector<string16>& icons, const std::vector<int>& uniqueIds) argument
42 mAutofill->querySuccessful(names[0], labels[0], uniqueIds[0]);
/external/checkpolicy/
H A Dpolicy_parse.y210 default_user_def : DEFAULT_USER names SOURCE ';'
212 | DEFAULT_USER names TARGET ';'
215 default_role_def : DEFAULT_ROLE names SOURCE ';'
217 | DEFAULT_ROLE names TARGET ';'
220 default_range_def : DEFAULT_RANGE names SOURCE LOW ';'
222 | DEFAULT_RANGE names SOURCE HIGH ';'
224 | DEFAULT_RANGE names SOURCE LOW_HIGH ';'
226 | DEFAULT_RANGE names TARGET LOW ';'
228 | DEFAULT_RANGE names TARGET HIGH ';'
230 | DEFAULT_RANGE names TARGE
747 names : identifier label
[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/chromium/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 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...]
/external/libvpx/libvpx/third_party/googletest/src/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/llvm/utils/unittest/googletest/
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);

Completed in 759 milliseconds

1234567891011>>