HomeSort by relevance Sort by last modified time
    Searched defs:paths (Results 51 - 75 of 843) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/test/
test_discovery.py 93 paths = [] variable in class:TestDiscovery.test_find_tests_with_package.Module
98 self.paths.append(path)
127 self.assertEqual(Module.paths, ['test_directory', 'test_directory2'])
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/test/
test_discovery.py 93 paths = [] variable in class:TestDiscovery.test_find_tests_with_package.Module
98 self.paths.append(path)
127 self.assertEqual(Module.paths, ['test_directory', 'test_directory2'])
  /cts/hostsidetests/appsecurity/test-apps/ExternalStorageApp/src/com/android/cts/externalstorageapp/
CommonExternalStorageTest.java 107 final List<File> paths = getAllPackageSpecificPaths(getContext()); local
108 for (File path : paths) {
134 for (File path : paths) {
140 * Return a set of several package-specific external storage paths.
143 final List<File> paths = new ArrayList<File>(); local
144 Collections.addAll(paths, context.getExternalCacheDirs());
145 Collections.addAll(paths, context.getExternalFilesDirs(null));
146 Collections.addAll(paths, context.getExternalFilesDirs(Environment.DIRECTORY_PICTURES));
147 Collections.addAll(paths, context.getExternalMediaDirs());
148 Collections.addAll(paths, context.getObbDirs())
153 final List<File> paths = new ArrayList<File>(); local
162 final List<File> paths = new ArrayList<File>(); local
187 final List<File> paths = new ArrayList<File>(); local
196 final List<File> paths = new ArrayList<File>(); local
206 final List<File> paths = new ArrayList<>(); local
    [all...]
ExternalStorageTest.java 60 final List<File> paths = getAllPackageSpecificPaths(getContext()); local
63 for (File path : paths) {
  /bionic/linker/
linker_config.cpp 326 std::vector<std::string> paths; local
327 split_path(paths_str.c_str(), ":", &paths);
337 for (auto&& path : paths) {
344 // do not remove paths that do not exist
345 resolve_paths(paths, &resolved_paths);
349 return paths;
472 // search paths are resolved (canonicalized). This is required mainly for
475 ns_config->set_search_paths(properties.get_paths(property_name_prefix + ".search.paths", true));
477 // However, for permitted paths, we are not required to resolve the paths
    [all...]
linker_main.cpp 116 std::vector<std::string> paths; local
117 split_path(path, delimiters, &paths);
118 resolve_paths(paths, resolved_paths);
  /build/make/core/
aux_config.mk 19 # setup toolchain paths for various CPU architectures
27 # all the interesting paths are hardcoded in soong, and are not available from here
43 define aux-variant-setup-paths
90 # given a variant:path pair, load the variant conviguration with aux-variant-setup-paths from file
103 $(call aux-variant-setup-paths,$(_name)) \
  /build/make/tools/atree/
files.cpp 269 string paths[2]; local
288 paths[pcount++] = replace_variables(word, variables, &error);
294 errstr = "Error: More than 2 paths per line.";
310 paths[1] = paths[0];
313 add_file(files, op, filename, i+1, paths[0], paths[1]);
  /external/ImageMagick/MagickCore/
configure.c 680 *paths;
693 paths=GetConfigurePaths(filename,exception);
694 if (paths != (LinkedListInfo *) NULL)
696 ResetLinkedListIterator(paths);
697 element=(const char *) GetNextValueInLinkedList(paths);
707 element=(const char *) GetNextValueInLinkedList(paths);
709 paths=DestroyLinkedList(paths,RelinquishMagickMemory);
747 % GetConfigurePaths() returns any Magick configuration paths associated
773 *paths;
666 *paths; local
758 *paths; local
    [all...]
locale.c 822 *paths;
835 paths=GetConfigurePaths(filename,exception);
836 if (paths != (LinkedListInfo *) NULL)
838 ResetLinkedListIterator(paths);
839 element=(const char *) GetNextValueInLinkedList(paths);
849 element=(const char *) GetNextValueInLinkedList(paths);
851 paths=DestroyLinkedList(paths,RelinquishMagickMemory);
807 *paths; local
    [all...]
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_linux_test.cc 238 const char *paths[] = { "", "/", "/path/to/" }; local
242 for (uptr i = 0; i < ARRAY_SIZE(paths); i++)
246 paths[i], base_names[k], suffixes[j]);
  /external/guice/extensions/servlet/test/com/google/inject/servlet/
ServletPipelineRequestDispatcherTest.java 152 final List<String> paths = new ArrayList<String>(); local
156 paths.add(request.getRequestURI());
192 assertTrue("Include did not dispatch to our servlet!", paths.contains(pattern));
  /external/protobuf/java/util/src/main/java/com/google/protobuf/util/
FieldMaskTree.java 90 * a field path to the tree, redundant sub-paths will be removed. That is,
119 // Turn the matching node into a leaf node (i.e., remove sub-paths).
125 * Merges all field paths in a FieldMask into this tree.
139 List<String> paths = new ArrayList<String>(); local
140 getFieldPaths(root, "", paths);
141 return FieldMask.newBuilder().addAllPaths(paths).build();
144 /** Gathers all field paths in a sub-tree. */
145 private void getFieldPaths(Node node, String path, List<String> paths) {
147 paths.add(path);
152 getFieldPaths(entry.getValue(), childPath, paths); local
183 List<String> paths = new ArrayList<String>(); local
    [all...]
  /external/protobuf/src/google/protobuf/
field_mask.pb.cc 84 "le.protobuf\"\032\n\tFieldMask\022\r\n\005paths\030\001 \003(\tB"
192 // repeated string paths = 1;
199 this->paths(this->paths_size() - 1).data(),
200 this->paths(this->paths_size() - 1).length(),
202 "google.protobuf.FieldMask.paths"));
235 // repeated string paths = 1;
238 this->paths(i).data(), this->paths(i).length(),
240 "google.protobuf.FieldMask.paths");
242 1, this->paths(i), output)
350 const ::std::string& FieldMask::paths(int index) const { function in class:google::protobuf::FieldMask
388 FieldMask::paths() const { function in class:google::protobuf::FieldMask
    [all...]
  /external/protobuf/src/google/protobuf/util/
field_mask_util.cc 43 return Join(mask.paths(), ",");
48 vector<string> paths = Split(str, ","); local
49 for (int i = 0; i < paths.size(); ++i) {
50 if (paths[i].empty()) continue;
51 out->add_paths(paths[i]);
104 const string& path = mask.paths(i);
119 vector<string> paths = Split(str, ","); local
120 for (int i = 0; i < paths.size(); ++i) {
121 if (paths[i].empty()) continue;
123 if (!CamelCaseToSnakeCase(paths[i], &snakecase_path))
    [all...]
  /external/r8/src/test/java/com/android/tools/r8/debug/
DebugTestBase.java 16 import java.nio.file.Paths;
88 private static final Path DEBUGGEE_JAR = Paths
90 private static final Path DEBUGGEE_JAVA8_JAR = Paths
184 String[] paths; local
186 paths = new String[] {
191 paths = new String[] {
196 new JUnit3Wrapper(debuggeeClass, paths, commands).runBare();
    [all...]
  /external/selinux/libselinux/src/
label_backends_android.c 212 char **paths = NULL; local
230 paths = calloc(num_paths, sizeof(*paths));
231 if (!paths)
234 rec->spec_files = paths;
241 *paths = strdup(opts[i].value);
242 if (*paths == NULL)
244 paths++;
  /external/slf4j/slf4j-api/src/main/java/org/slf4j/
LoggerFactory.java 232 Enumeration<URL> paths; local
234 paths = ClassLoader.getSystemResources(STATIC_LOGGER_BINDER_PATH);
236 paths = loggerFactoryClassLoader.getResources(STATIC_LOGGER_BINDER_PATH);
238 while (paths.hasMoreElements()) {
239 URL path = (URL) paths.nextElement();
  /external/strace/tests/
file_handle.c 220 struct strval paths[] = { local
314 for (j = 0; j < ARRAY_SIZE(paths); j++) {
322 paths[j].val,
323 paths[j].str,
  /external/strace/tests-m32/
file_handle.c 220 struct strval paths[] = { local
314 for (j = 0; j < ARRAY_SIZE(paths); j++) {
322 paths[j].val,
323 paths[j].str,
  /external/strace/tests-mx32/
file_handle.c 220 struct strval paths[] = { local
314 for (j = 0; j < ARRAY_SIZE(paths); j++) {
322 paths[j].val,
323 paths[j].str,
  /packages/apps/Launcher3/src/com/android/launcher3/testing/
MemoryDumpActivity.java 53 public static String zipUp(ArrayList<String> paths) {
63 for (String filename : paths) {
96 final ArrayList<String> paths = new ArrayList<String>(); local
120 paths.add(path);
124 String zipfile = zipUp(paths);
  /packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
documenttest.cpp 99 const char *paths[] = { local
107 for (size_t i = 0; i < sizeof(paths) / sizeof(paths[0]); i++) {
108 sprintf(buffer, paths[i], filename);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/assetstudio/
CreateAssetSetWizard.java 216 TreePath[] paths = pathList.toArray(new TreePath[pathList.size()]); local
217 final TreeSelection selection = new TreeSelection(paths);
224 // their relative paths from the project; deferring execution with
  /cts/hostsidetests/appsecurity/test-apps/WriteExternalStorageApp/src/com/android/cts/writeexternalstorageapp/
WriteExternalStorageTest.java 59 * Set of file paths that should all refer to the same location to verify
60 * support for legacy paths.
109 * Verify that legacy filesystem paths continue working, and that they all
140 final List<File> paths = getPrimaryPackageSpecificPaths(getContext()); local
143 for (File path : paths) {
201 * Verify mount status for random paths.
217 final List<File> paths = getSecondaryPackageSpecificPaths(getContext()); local
220 for (File path : paths) {
253 final List<File> paths = getAllPackageSpecificPathsExceptMedia(getContext()); local
256 for (File path : paths) {
    [all...]

Completed in 1056 milliseconds

1 23 4 5 6 7 8 91011>>