HomeSort by relevance Sort by last modified time
    Searched refs:names (Results 276 - 300 of 3092) sorted by null

<<11121314151617181920>>

  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
NameConstraints.java 109 // array of lists with permitted General Names divided by type
121 // array of lists with excluded General Names divided by type
153 * names of specified X509Certificate. Restrictions apply only
158 * names the same (i.e. method does not check if it CA's certificate or not,
159 * or if the names differ or not. This check if it is needed should be done
171 List<GeneralName> names; local
173 names = (bytes == null)
183 names.add(new GeneralName(4,
189 return isAcceptable(names);
193 * Check if this list of names is acceptable according to thi
    [all...]
  /ndk/sources/host-tools/make-3.81/
ar.c 59 /* Parse the archive-member reference NAME into the archive and member names.
272 char **names;
295 /* Now put the names into a vector for sorting. */
296 names = (char **) alloca (state.n * sizeof (char *));
299 names[i++] = n->name;
302 qsort ((char *) names, i, sizeof (*names), alpha_compare);
307 n->name = names[i++];
269 char **names; local
  /ndk/sources/host-tools/make-3.81/glob/
glob.c 445 points past the final }. We will accumulate result names from
511 file names, we can safely assume that wherever it
920 names followed by the filename. */
1025 /* Append slashes to directory names. */
1227 struct globlink *names = NULL;
1278 names = (struct globlink *) __alloca (sizeof (struct globlink));
1279 names->name = (char *) malloc (1);
1280 if (names->name == NULL)
1282 names->name[0] = '\0';
1283 names->next = NULL
1226 struct globlink *names = NULL; local
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
ContactsBinaryDictionary.java 67 /** The hash code of ArrayList of contacts names in the most recent dictionary rebuild. */
177 final ArrayList<String> names = new ArrayList<>(); local
181 names.add(name);
191 mHashCodeAtLastRebuild = names.hashCode();
287 // Check all contacts since it's not possible to find out which names have changed.
295 final ArrayList<String> names = new ArrayList<>(); local
301 names.add(name);
306 if (names.hashCode() != mHashCodeAtLastRebuild) {
  /external/e2fsprogs/e2fsck/
profile.c 1271 const char *const *names; member in struct:profile_iterator
1281 profile_iterator_create(profile_t profile, const char *const *names, int flags,
1291 if (!names)
1294 if (!names[0])
1304 iter->names = names;
1391 for (cpp = iter->names; cpp[iter->done_idx]; cpp++) {
1469 const char *names[4]; local
1751 const char **names, *value; local
    [all...]
  /external/chromium_org/mojo/public/cpp/bindings/tests/
validation_unittest.cc 67 std::vector<std::string> GetMatchingTests(const std::vector<std::string>& names,
71 for (size_t i = 0; i < names.size(); ++i) {
72 if (names[i].size() >= suffix.size() &&
73 names[i].substr(0, prefix.size()) == prefix &&
74 names[i].substr(names[i].size() - suffix.size()) == suffix)
75 tests.push_back(names[i].substr(0, names[i].size() - suffix.size()));
160 std::vector<std::string> names = local
162 std::vector<std::string> tests = GetMatchingTests(names, prefix)
    [all...]
  /external/chromium_org/v8/test/mjsunit/
debug-evaluate-arguments.js 12 // * Neither the name of Google Inc. nor the names of its
35 function checkArguments(frame, names, values) {
36 var argc = Math.max(names.length, values.length);
39 if (i < names.length) {
40 assertEquals(names[i], frame.argumentName(i));
  /cts/tests/tests/os/src/android/os/cts/
WorkSourceTest.java 66 private WorkSource wsNew(int[] uids, String[] names) throws IllegalArgumentException,
70 wsAdd(ws, uids[i], names[i]);
72 checkWorkSource("Constructed", ws, uids, names);
106 private void printArrays(StringBuilder sb, int[] uids, String[] names) {
111 if (names != null) {
113 sb.append(names[i]);
129 private void failWorkSource(String op, WorkSource ws, int[] uids, String[] names) {
133 printArrays(sb, uids, names);
159 private void checkWorkSource(String op, WorkSource ws, int[] uids, String[] names) {
170 failWorkSource(op, ws, uids, names);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_format_parse.py 122 function names.'''
257 names = ['']*4
262 names[swizzle] += 'rgba'[i]
267 names[swizzle] += 'zs'[i]
271 if names[i] == '':
272 names[i] = 'x'
274 names = ['x', 'y', 'z', 'w']
298 channel = Channel(type, norm, pure, size, names[i])
  /external/chromium_org/tools/gyp/pylib/gyp/generator/
cmake.py 575 """Converts Gyp target names into CMake target names.
577 CMake requires that target names be globally unique. One way to ensure
578 this is to fully qualify the names of the targets. Unfortunatly, this
581 would be possible to fully qualify all target names, then create
582 unqualified target names which depend on all qualified targets which
585 files for use with IDEs, and fully qualified names are not as user
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_format_parse.py 122 function names.'''
257 names = ['']*4
262 names[swizzle] += 'rgba'[i]
267 names[swizzle] += 'zs'[i]
271 if names[i] == '':
272 names[i] = 'x'
274 names = ['x', 'y', 'z', 'w']
298 channel = Channel(type, norm, pure, size, names[i])
  /frameworks/base/core/tests/coretests/src/android/net/
UriTest.java 662 Set<String> names = uri.getQueryParameterNames(); local
663 assertEquals(1, names.size());
664 assertEquals("a", names.iterator().next());
669 Set<String> names = uri.getQueryParameterNames(); local
670 Iterator<String> iter = names.iterator();
671 assertEquals(3, names.size());
679 Set<String> names = uri.getQueryParameterNames(); local
680 Iterator<String> iter = names.iterator();
681 assertEquals(3, names.size());
689 Set<String> names = uri.getQueryParameterNames() local
699 Set<String> names = uri.getQueryParameterNames(); local
715 Set<String> names = uri.getQueryParameterNames(); local
731 Set<String> names = uri.getQueryParameterNames(); local
    [all...]
  /art/test/
Android.run-test.mk 24 # List all the test names for host and target and compiler variants.
28 define all-run-test-names
41 endef # all-run-test-names
44 define all-run-test-target-names
51 endef # all-run-test-target-names
60 ART_TEST_KNOWN_BROKEN += $(foreach test, $(TEST_ART_TIMING_SENSITIVE_RUN_TESTS), $(call all-run-test-names,$(test),,))
61 ART_TEST_KNOWN_BROKEN += $(foreach test, $(TEST_ART_TIMING_SENSITIVE_RUN_TESTS), $(call all-run-test-names,$(test),-trace,))
62 ART_TEST_KNOWN_BROKEN += $(foreach test, $(TEST_ART_TIMING_SENSITIVE_RUN_TESTS), $(call all-run-test-names,$(test),-gcverify,))
63 ART_TEST_KNOWN_BROKEN += $(foreach test, $(TEST_ART_TIMING_SENSITIVE_RUN_TESTS), $(call all-run-test-names,$(test),-gcstress,))
64 ART_TEST_KNOWN_BROKEN += $(foreach test, $(TEST_ART_TIMING_SENSITIVE_RUN_TESTS), $(call all-run-test-names,$(test),,-relocate)
    [all...]
  /external/chromium_org/chromeos/network/
network_configuration_handler.cc 241 const std::vector<std::string>& names,
244 if (names.empty()) {
250 for (std::vector<std::string>::const_iterator iter = names.begin();
251 iter != names.end(); ++iter) {
256 names, local
258 AsWeakPtr(), service_path, names, callback),
394 const std::vector<std::string>& names,
398 DCHECK(names.size() == result.GetSize())
407 NET_LOG_ERROR("ClearProperties Failed: " + names[i], service_path);
  /external/chromium_org/third_party/icu/source/common/
unames.c 89 * @param names (const UCharNames *) pointer to the UCharNames indexes
92 #define GET_GROUPS(names) (const uint16_t *)((const char *)names+names->groupsOffset)
106 * Maximum length of character names (regular & 1.0).
111 * Set of chars used in character names (regular & 1.0).
197 UCharNames *names; local
213 names=(UCharNames *)udata_getMemory(data);
220 uCharNames=names;
222 names=NULL
    [all...]
  /external/lldb/source/Target/
ObjCLanguageRuntime.cpp 386 ObjCLanguageRuntime::MethodName::GetFullNames (std::vector<ConstString> &names, bool append)
389 names.clear();
398 names.push_back (m_full);
405 names.push_back(ConstString(strm.GetString().c_str()));
413 names.push_back(ConstString(strm.GetString().c_str()));
416 names.push_back(ConstString(strm.GetString().c_str()));
421 names.push_back(ConstString(strm.GetString().c_str()));
424 names.push_back(ConstString(strm.GetString().c_str()));
428 return names.size();
469 // names and find a matc
    [all...]
  /external/apache-http/src/org/apache/http/conn/ssl/
AbstractVerifier.java 122 // Build the list of names we're going to check. Our DEFAULT and
126 LinkedList<String> names = new LinkedList<String>(); local
128 names.add(cns[0]);
133 names.add(subjectAlt);
138 if(names.isEmpty()) {
150 for(Iterator<String> it = names.iterator(); it.hasNext();) {
220 * Extracts the array of SubjectAlt DNS names from an X509Certificate.
231 * @return Array of SubjectALT DNS names stored in the certificate.
  /external/chromium_org/content/child/npapi/
plugin_url_fetcher.cc 126 std::vector<std::string> names; local
128 PluginHost::SetPostData(buf, len, &names, &values, &body);
129 for (size_t i = 0; i < names.size(); ++i) {
132 request_info.headers += names[i] + ": " + values[i];
133 if (LowerCaseEqualsASCII(names[i], "content-type"))
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
HandlerRegistry.js 14 * * Neither the name of Google Inc. nor the names of its
219 var names = this._handlerRegistry.handlerNames;
222 for (var i = 0; i < names.length; ++i) {
224 option.textContent = names[i];
225 option.selected = activeHandler === names[i];
228 this.element.disabled = names.length <= 1;
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/svgadump/
svga_dump.py 325 names = set()
327 names.add(header)
329 names.add(struct)
331 names.add(footer)
333 for class_ in global_ns.classes(lambda decl: decl.name in names):
  /external/chromium_org/ui/views/widget/
window_reorderer_unittest.cc 39 std::string names; local
43 if (!names.empty())
44 names += " ";
45 names += (*it)->name();
47 return names;
  /external/junit/src/junit/framework/
TestSuite.java 147 List<String> names= new ArrayList<String>();
150 addTestMethod(each, names, theClass);
284 private void addTestMethod(Method m, List<String> names, Class<?> theClass) {
286 if (names.contains(name))
293 names.add(name);
  /external/mesa3d/src/gallium/drivers/svga/svgadump/
svga_dump.py 325 names = set()
327 names.add(header)
329 names.add(struct)
331 names.add(footer)
333 for class_ in global_ns.classes(lambda decl: decl.name in names):
  /external/smack/src/org/jivesoftware/smack/
ServerTrustManager.java 204 List<String> names = getSubjectAlternativeNames(x509Certificate); local
205 if (names.isEmpty()) {
212 names = new ArrayList<String>();
213 names.add(name);
215 return names;
  /libcore/luni/src/main/java/java/security/cert/
X509CRLSelector.java 42 // contains X.500 distinguished names in CANONICAL format
44 // contains X500Principal objects corresponding to the names
62 * Sets the criterion for the issuer distinguished names.
65 * names.
68 * the list of issuer distinguished names to match, or {@code
87 * distinguished names.
90 * names.
92 * The specified parameter {@code names} is a collection with an entry for
97 * @param names
98 * the list of issuer distinguished names to match, or {@cod
    [all...]

Completed in 3602 milliseconds

<<11121314151617181920>>