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

12 3 4 5 6 7 8 91011>>

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
GeneralNames.java 13 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.length)
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/
Axis.java 182 /** 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/chromium_org/mojo/public/cpp/test_support/lib/
test_support.cc 14 char** names = MojoTestSupportEnumerateSourceRootRelativeDirectory( local
17 for (char** ptr = names; *ptr != NULL; ++ptr) {
21 free(names);
  /external/proguard/src/proguard/obfuscate/
DictionaryNameFactory.java 27 * 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 will b
    [all...]
  /external/chromium_org/gpu/command_buffer/common/
cmd_buffer_common.cc 20 static const char* const names[] = { local
29 return (id >= 0 && id < kNumCommands) ? names[id] : "*unknown-command*";
  /external/opencv/cv/src/
cvswitcher.cpp 45 #define IPCVAPI_EX(type,func_name,names,modules,arg) \
46 { (void**)&func_name##_p, (void*)(size_t)-1, names, modules, 0 },
  /external/stlport/test/unit/
max_test.cpp 59 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);
min_test.cpp 57 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);
  /ndk/tests/device/test-gnustl-full/unit/
max_test.cpp 59 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);
min_test.cpp 57 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);
  /ndk/tests/device/test-stlport/unit/
max_test.cpp 59 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);
min_test.cpp 57 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/linux-tools-perf/perf-3.12.0/tools/perf/util/
help.c 16 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[ei]->name)
    [all...]
  /libcore/luni/src/main/java/org/xml/sax/helpers/
AttributeListImpl.java 141 names.add(name);
162 int i = names.indexOf(name);
164 names.remove(i);
182 names.clear();
202 return names.size();
215 if (i < 0 || i >= names.size()) {
218 return names.get(i);
266 return getType(names.indexOf(name));
279 return getValue(names.indexOf(name));
289 private ArrayList<String> names = new ArrayList<String>()
286 private ArrayList<String> names = new ArrayList<String>(); field in class:AttributeListImpl
    [all...]
  /hardware/invensense/6515/libsensors_iio/software/core/mllite/linux/
inv_sysfs_utils.c 97 * @names: Names of sysfs files.
102 int inv_read_raw(const struct inv_sysfs_names_s *names, long *data,
108 count = inv_sysfs_read((char*)names->raw_data, sizeof(str), str);
123 * @names: Names of sysfs files.
128 int inv_read_temperature_raw(const struct inv_sysfs_names_s *names, short *data,
134 count = inv_sysfs_read((char*)names->temperature, sizeof(str), str);
145 * @names: Names of sysfs files
    [all...]
  /hardware/invensense/65xx/libsensors_iio/software/core/mllite/linux/
inv_sysfs_utils.c 91 * @names: Names of sysfs files.
96 int inv_read_raw(const struct inv_sysfs_names_s *names, long *data,
102 count = inv_sysfs_read((char*)names->raw_data, sizeof(str), str);
117 * @names: Names of sysfs files.
122 int inv_read_temperature_raw(const struct inv_sysfs_names_s *names, short *data,
128 count = inv_sysfs_read((char*)names->temperature, sizeof(str), str);
139 * @names: Names of sysfs files
    [all...]
  /external/chromium_org/tools/ipc_fuzzer/message_lib/
message_names.cc 11 names.Add(static_cast<uint32>(name::ID), #name);
13 void PopulateIpcMessageNames(ipc_fuzzer::MessageNames& names) {
  /external/linux-tools-perf/perf-3.12.0/tools/perf/tests/
evsel-roundtrip-name.c 63 static int __perf_evsel__name_array_test(const char *names[], int nr_names)
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))
  /libcore/luni/src/main/java/org/apache/harmony/security/
SystemScope.java 44 private Hashtable names = new Hashtable(); field in class:SystemScope
74 return names.size();
84 return (Identity) names.get(name);
106 if (names.containsKey(name)) {
115 names.put(name, identity);
137 boolean contains = names.containsKey(name);
138 names.remove(name);
156 return names.elements();
  /external/chromium_org/net/third_party/nss/ssl/
authcert.c 53 CERTCertNicknames * names; local
56 names = CERT_GetCertNicknames(CERT_GetDefaultCertDB(),
58 if (names != NULL) {
59 for (i = 0; i < names->numnicknames; i++) {
61 names->nicknames[i], certUsageSSLClient,
80 CERT_FreeNicknames(names);
  /external/checkpolicy/
policy_parse.y 212 default_user_def : DEFAULT_USER names SOURCE ';'
214 | DEFAULT_USER names TARGET ';'
217 default_role_def : DEFAULT_ROLE names SOURCE ';'
219 | DEFAULT_ROLE names TARGET ';'
222 default_type_def : DEFAULT_TYPE names SOURCE ';'
224 | DEFAULT_TYPE names TARGET ';'
227 default_range_def : DEFAULT_RANGE names SOURCE LOW ';'
229 | DEFAULT_RANGE names SOURCE HIGH ';'
231 | DEFAULT_RANGE names SOURCE LOW_HIGH ';'
233 | DEFAULT_RANGE names TARGET LOW ';
754 names : identifier label
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/impl/
FieldProviderTransformer.java 82 final String[] names = (String[])fields.keySet().toArray(new String[fields.size()]); local
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) {
104 EmitUtils.push_object(e, names);
107 e.push(names.length)
    [all...]
  /bionic/benchmarks/
property_benchmark.cpp 63 names = new char* [nprops];
74 names[i] = new char[PROP_NAME_MAX + 1];
77 if (j == 0 || names[i][j-1] == '.' || j == name_lens[i] - 1) {
87 names[i][j] = prop_name_chars[random() % prop_name_len];
89 names[i][name_lens[i]] = 0;
98 if (__system_property_add(names[i], name_lens[i], values[i], value_lens[i]) < 0) {
100 printf("%s = %.*s\n", names[i], value_lens[i], values[i]);
119 delete names[i];
122 delete[] names;
129 char **names; member in struct:LocalPropertyTestState
    [all...]
  /bootable/recovery/applypatch/
freecache.c 74 int FindExpendableFiles(char*** names, int* entries) {
79 *names = malloc(size * sizeof(char*));
110 *names = realloc(*names, size * sizeof(char*));
112 (*names)[(*entries)++] = strdup(path);
121 if (EliminateOpenFiles(*names, *entries) < 0) {
137 char** names; local
140 if (FindExpendableFiles(&names, &entries) < 0) {
158 if (names[i]) {
159 unlink(names[i])
    [all...]
  /external/chromium_org/chrome/browser/devtools/
chrome_devtools_manager_delegate.cc 73 namespace names = ::chrome::devtools::Network::emulateNetworkConditions;
76 if (!params || !params->GetBoolean(names::kParamOffline, &offline))
77 return command->InvalidParamResponse(names::kParamOffline);
80 if (!params->GetDouble(names::kParamLatency, &latency))
81 return command->InvalidParamResponse(names::kParamLatency);
86 if (!params->GetDouble(names::kParamDownloadThroughput, &download_throughput))
87 return command->InvalidParamResponse(names::kParamDownloadThroughput);
92 if (!params->GetDouble(names::kParamUploadThroughput, &upload_throughput))
93 return command->InvalidParamResponse(names::kParamUploadThroughput);

Completed in 1399 milliseconds

12 3 4 5 6 7 8 91011>>