Searched defs:names (Results 1 - 25 of 135) sorted by relevance

123456

/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/stlport/test/unit/
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 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 Dincludes_test.cpp66 char const* names[] = { "Todd", "Mike", "Graham", "Jack", "Brett"}; local
68 const unsigned nameSize = sizeof(names)/sizeof(names[0]);
71 v1[i] = names[i];
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);
H A Dpartial_test.cpp99 char const* names[] = { "aa", "ff", "dd", "ee", "cc", "bb" }; local
101 const unsigned nameSize = sizeof(names) / sizeof(names[0]);
104 v1[i] = names[i];
110 CPPUNIT_ASSERT( v1[0] == names[0] );
112 CPPUNIT_ASSERT( v1[1] == names[5] );
114 CPPUNIT_ASSERT( v1[2] == names[4] );
116 CPPUNIT_ASSERT( v1[3] == names[1] );
118 CPPUNIT_ASSERT( v1[4] == names[3] );
120 CPPUNIT_ASSERT( v1[5] == names[
155 char const* names[] = { "aa", "ff", "dd", "ee", "cc", "bb" }; local
[all...]
H A Dadj_test.cpp70 const char* names[] = { "Brett", "Graham", "Jack", "Mike", "Todd" }; local
72 const int nameCount = sizeof(names)/sizeof(names[0]);
75 v[i] = names[i];
/external/mesa3d/src/glsl/
H A Dast_type.cpp54 static const char *const names[] = { local
111 type_name = names[specifier];
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/nist/
H A DNISTNamedCurves.java13 * Utility class for fetching curves using their NIST names as published in FIPS-PUB 186-2
18 static final Hashtable names = new Hashtable(); field in class:NISTNamedCurves
23 names.put(oid, name);
85 return (String)names.get(oid);
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/x509/
H A DAttCertIssuer.java55 * @param names our GeneralNames structure
58 GeneralNames names)
60 obj = names;
57 AttCertIssuer( GeneralNames names) argument
H A DGeneralNames.java12 private final GeneralName[] names; field in class:GeneralNames
45 this.names = new GeneralName[] { name };
51 this.names = new GeneralName[seq.size()];
55 names[i] = GeneralName.getInstance(seq.getObjectAt(i));
61 GeneralName[] tmp = new GeneralName[names.length];
63 System.arraycopy(names, 0, tmp, 0, names.length);
76 return new DERSequence(names);
87 for (int i = 0; i != names.length; i++)
90 buf.append(names[
[all...]
/external/llvm/lib/Target/Blackfin/
H A DBlackfinIntrinsicInfo.cpp39 static const char *const names[] = { local
50 std::string Result(names[IntrID - Intrinsic::num_intrinsics]);
/external/llvm/lib/Target/MBlaze/
H A DMBlazeIntrinsicInfo.cpp42 static const char *const names[] = { local
54 std::string Result(names[IntrID - Intrinsic::num_intrinsics]);
/external/oauth/core/src/main/java/net/oauth/client/
H A DOAuthResponseMessage.java84 public void requireParameters(String... names) throws OAuthProblemException, IOException { argument
86 super.requireParameters(names);
/external/oprofile/libutil++/
H A Dcverb.cpp111 bool verbose::setup(vector<string> const & names) argument
113 for (size_t i = 0; i < names.size(); ++i)
114 if (!setup(names[i]))
/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/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/webkit/Source/WebKit2/WebProcess/Plugins/
H A DPlugin.h59 Vector<String> names; member in struct:WebKit::Plugin::Parameters
/external/webkit/Source/WebCore/bindings/js/
H A DJSDOMStringMapCustom.cpp49 Vector<String> names; local
50 m_impl->getNames(names);
51 size_t length = names.size();
53 propertyNames.add(Identifier(exec, stringToUString(names[i])));
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8DOMStringMapCustom.cpp14 * * Neither the name of Google Inc. nor the names of its
58 Vector<String> names; local
59 V8DOMStringMap::toNative(info.Holder())->getNames(names);
60 v8::Handle<v8::Array> properties = v8::Array::New(names.size());
61 for (unsigned i = 0; i < names.size(); ++i)
62 properties->Set(v8::Integer::New(i), v8String(names[i]));
/external/apache-http/src/org/apache/http/params/
H A DBasicHttpParams.java96 * Assigns the value to all the parameter with the given names
98 * @param names array of parameter name
101 public void setParameters(final String[] names, final Object value) { argument
102 for (int i = 0; i < names.length; i++) {
103 setParameter(names[i], value);
/external/elfutils/tests/
H A Dasm-tst3.c84 /* Add a few strings with names. */
245 static const char *names[4] = local
267 if (strcmp (names[inner],
/external/freetype/src/sfnt/
H A Dttpost.c22 /* file loads the missing PS glyph names and implements an API to access */
48 /* module to grab the glyph names. */
62 /* table of Mac names. Thus, it is possible to build a version of */
67 /* the 258 default Mac PS glyph names */
176 /* There already exist fonts which have more than 32768 glyph names */
200 /* compute number of names stored in table */
267 " using NULL names for gid %d - %d\n",
279 TT_Post_20 table = &face->postscript_names.names.format_20;
356 TT_Post_25 table = &face->postscript_names.names.format_25;
386 /* seek to the beginning of the PS names tabl
418 TT_Post_Names names = &face->postscript_names; local
482 TT_Post_Names names; local
[all...]
/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 1572 milliseconds

123456