HomeSort by relevance Sort by last modified time
    Searched refs:names (Results 201 - 225 of 4940) sorted by null

1 2 3 4 5 6 7 891011>>

  /frameworks/base/tools/preload/
LoadedClass.java 106 /** Returns names of processes that loaded this class. */
108 Set<String> names = new HashSet<String>(); local
109 addProcessNames(loads, names);
110 addProcessNames(initializations, names);
111 return names;
114 private void addProcessNames(List<Operation> ops, Set<String> names) {
117 names.add(operation.process.name);
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/Carbon/
MediaDescr.py 7 def __init__(self, trunc, size, names, fmt):
10 self.names = names
17 if len(values) != len(self.names):
18 raise Error, ('Format length does not match number of names')
21 name = self.names[i]
31 for name in self.names:
  /prebuilts/ndk/
gen_blueprints.py 25 def find(path, names):
26 """Finds a list of files in a directory that match the given names."""
30 if file_name in names:
42 def get_prebuilts(names):
43 """Returns a list of prebuilt objects that match the given names."""
45 prebuilts = find(prebuilts_path, names)
59 def gen_prebuilts(module_generator, names):
62 for prebuilt in get_prebuilts(names):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/Carbon/
MediaDescr.py 7 def __init__(self, trunc, size, names, fmt):
10 self.names = names
17 if len(values) != len(self.names):
18 raise Error, ('Format length does not match number of names')
21 name = self.names[i]
31 for name in self.names:
  /toolchain/binutils/binutils-2.27/gold/
target-select.h 90 // Push all supported BFD names onto the vector. This is only used
93 supported_bfd_names(std::vector<const char*>* names)
94 { this->do_supported_bfd_names(names); }
105 supported_emulations(std::vector<const char*>* names)
106 { this->do_supported_emulations(names); }
176 // Return a list of supported BFD names. The child class may
180 do_supported_bfd_names(std::vector<const char*>* names)
183 names->push_back(this->bfd_name_);
261 // a list of BFD names.
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/
AttributeCertificateIssuer.java 50 GeneralName[] names = name.getNames(); local
52 List l = new ArrayList(names.length);
54 for (int i = 0; i != names.length; i++)
56 if (names[i].getTagNo() == GeneralName.directoryName)
58 l.add(X500Name.getInstance(names[i].getName()));
67 GeneralName[] names = targets.getNames(); local
69 for (int i = 0; i != names.length; i++)
71 GeneralName gn = names[i];
  /external/icu/android_icu4j/src/main/java/android/icu/impl/duration/impl/
RecordReader.java 21 byte namedIndex(String name, String[] names);
22 byte[] namedIndexArray(String name, String[] names);
RecordWriter.java 21 void namedIndex(String name, String[] names, int value);
22 void namedIndexArray(String name, String[] names, byte[] values);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/impl/
RecordReader.java 20 byte namedIndex(String name, String[] names);
21 byte[] namedIndexArray(String name, String[] names);
RecordWriter.java 20 void namedIndex(String name, String[] names, int value);
21 void namedIndexArray(String name, String[] names, byte[] values);
  /external/jcommander/src/test/java/com/beust/jcommander/
ValidatePropertiesWhenParsingTest.java 28 @Parameter(names = "-path")
35 @Parameter(names = "-path", validateWith = MyPathValidator.class)
  /external/libcxx/test/std/input.output/file.streams/fstreams/fstream.assign/
member_swap.pass.cpp 23 std::pair<std::string, std::string> names; local
24 names.first = get_temp_file_name();
28 std::FILE *fd1 = std::fopen(names.first.c_str(), "w");
30 names.second = get_temp_file_name();
31 assert(names.first != names.second);
34 std::remove(names.first.c_str());
36 return names;
nonmember_swap.pass.cpp 25 std::pair<std::string, std::string> names; local
26 names.first = get_temp_file_name();
30 std::FILE *fd1 = std::fopen(names.first.c_str(), "w");
32 names.second = get_temp_file_name();
33 assert(names.first != names.second);
36 std::remove(names.first.c_str());
38 return names;
  /external/libcxx/test/std/input.output/file.streams/fstreams/ofstream.assign/
member_swap.pass.cpp 23 std::pair<std::string, std::string> names; local
24 names.first = get_temp_file_name();
28 std::FILE *fd1 = std::fopen(names.first.c_str(), "w");
30 names.second = get_temp_file_name();
31 assert(names.first != names.second);
34 std::remove(names.first.c_str());
36 return names;
nonmember_swap.pass.cpp 24 std::pair<std::string, std::string> names; local
25 names.first = get_temp_file_name();
29 std::FILE *fd1 = std::fopen(names.first.c_str(), "w");
31 names.second = get_temp_file_name();
32 assert(names.first != names.second);
35 std::remove(names.first.c_str());
37 return names;
  /external/linux-kselftest/tools/testing/selftests/networking/timestamping/
hwtstamp_config.c 20 lookup_value(const char **names, int size, const char *name)
25 if (names[value] && strcasecmp(names[value], name) == 0)
32 lookup_name(const char **names, int size, int value)
34 return (value >= 0 && value < size) ? names[value] : NULL;
37 static void list_names(FILE *f, const char **names, int size)
42 if (names[value])
43 fprintf(f, " %s\n", names[value]);
  /external/python/cpython2/Mac/scripts/
zappycfiles.py 20 def walker(dummy, top, names):
21 for name in names:
  /external/python/cpython3/Lib/lib2to3/fixes/
fix_intern.py 38 names = ('sys', 'intern')
39 new = ImportAndCall(node, results, names)
fix_reload.py 35 names = ('imp', 'reload')
36 new = ImportAndCall(node, results, names)
  /external/selinux/libsepol/src/
constraint.c 31 ebitmap_init(&expr->names);
42 ebitmap_destroy(&expr->names);
  /external/tensorflow/tensorflow/contrib/specs/python/
specs.py 129 names: a dictionary containing the new bindings
133 def __init__(self, names):
134 """Create a context manager that binds the names in values.
137 names: A dictionary or module containing the bindings.
139 if not isinstance(names, dict):
140 names = vars(names)
141 self.names = names
146 self.old = {k: bindings.get(k, None) for k in self.names.keys()
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/func/
SecretKeyFactoryThread.java 26 SecretKeyFactoryThread(String[] names) {
27 super(names);
  /libcore/ojluni/src/main/java/java/security/cert/
CertPathHelperImpl.java 59 Set<GeneralNameInterface> names) {
60 sel.setPathToNamesInternal(names);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/include/cloog/
names.h 5 ** names.h **
54 * names (as strings).
61 char ** scalars ; /**< The scalar names (an array of strings). */
62 char ** scattering ; /**< The scattering names (an array of strings). */
63 char ** iterators ; /**< The iterator names (an array of strings). */
64 char ** parameters ; /**< The parameter names (an array of strings). */
93 CloogNames * cloog_names_copy(CloogNames *names);
98 const char * cloog_names_name_at_level(CloogNames *names, int level);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/input.output/file.streams/fstreams/fstream.assign/
member_swap.pass.cpp 23 std::pair<std::string, std::string> names; local
24 names.first = get_temp_file_name();
28 std::FILE *fd1 = std::fopen(names.first.c_str(), "w");
30 names.second = get_temp_file_name();
31 assert(names.first != names.second);
34 std::remove(names.first.c_str());
36 return names;

Completed in 608 milliseconds

1 2 3 4 5 6 7 891011>>