HomeSort by relevance Sort by last modified time
    Searched defs:path (Results 251 - 275 of 5507) sorted by null

<<11121314151617181920>>

  /external/apache-xml/src/main/java/org/apache/xpath/axes/
HasPositionalPredChecker.java 46 * @param path LocPathIterator that is assumed to be absolute, but needs checking.
47 * @return true if the path is confirmed to be absolute, false if it
50 public static boolean check(LocPathIterator path)
53 path.callVisitors(null, hppc);
86 * Visit a predicate within a location path. Note that there isn't a
  /external/compiler-rt/test/asan/TestCases/Posix/
dlclose-test.cc 48 string path = string(argv[0]) + "-so.so"; local
50 printf("opening %s ... \n", path.c_str());
51 void *lib = dlopen(path.c_str(), RTLD_NOW);
  /external/compiler-rt/test/msan/
dtls_test.c 38 char path[4096]; local
39 snprintf(path, sizeof(path), "%s-so.so", argv[0]);
42 void *handle = dlopen(path, RTLD_LAZY);
  /external/compiler-rt/test/tsan/
load_shared_lib.cc 56 std::string path = std::string(argv[0]) + std::string("-so.so"); local
59 void *lib = dlopen(path.c_str(), RTLD_NOW);
  /external/curl/lib/
gopher.c 81 char *path = data->state.path; local
90 if(strlen(path) <= 2) {
99 newp = path;
http_digest.c 77 unsigned char *path = NULL; local
147 path = (unsigned char *) aprintf("%.*s", urilen, uripath);
151 path = (unsigned char *) strdup((char *) uripath);
153 if(!path)
157 path, digest, &response, &len);
158 free(path);
  /external/desugar/java/com/google/devtools/build/android/
Converters.java 21 import java.nio.file.Path;
40 /** Validating converter for Paths. A Path is considered valid if it resolves to a file. */
41 public static class PathConverter implements Converter<Path> {
54 public Path convert(String input) throws OptionsParsingException {
56 Path path = FileSystems.getDefault().getPath(input); local
57 if (mustExist && !Files.exists(path)) {
59 String.format("%s is not a valid path: it does not exist.", input));
61 return path;
64 String.format("%s is not a valid path: %s.", input, e.getMessage()), e)
    [all...]
  /external/desugar/java/com/google/devtools/common/options/
ParamsFilePreProcessor.java 18 import java.nio.file.Path;
26 * length. A params file argument is defined as a path starting with @. It will also be the only
45 * Parses the param file path and replaces the arguments list with the contents if one exists.
47 * @param args A list of arguments that may contain @&lt;path&gt; to a params file.
49 * @throws OptionsParsingException if the path does not exist.
58 Path path = fs.getPath(args.get(0).substring(1)); local
60 return parse(path);
63 String.format(ERROR_MESSAGE_FORMAT, path, e.getMessage()), args.get(0), e);
73 * @param paramsFile The path of the params file to parse
    [all...]
  /external/expat/lib/
loadlibrary.c 73 * filename [in] - The filename or full path of the DLL to load. If only the
93 /* Detect if there's already a path in the filename and load the library if
111 /* Attempt to get the Windows system path */
114 /* Allocate space for the full DLL path (Room for the null terminator
117 TCHAR *path = malloc(sizeof(TCHAR) * (systemdirlen + 1 + filenamelen)); local
118 if(path && GetSystemDirectory(path, systemdirlen)) {
119 /* Calculate the full DLL path */
120 _tcscpy(path + _tcslen(path), TEXT("\\"))
    [all...]
  /external/fonttools/Lib/fontTools/pens/
reportLabPen.py 4 from reportlab.graphics.shapes import Path
9 """A pen for drawing onto a reportlab.graphics.shapes.Path object."""
11 def __init__(self, glyphSet, path=None):
13 if path is None:
14 path = Path()
15 self.path = path
19 self.path.moveTo(x,y)
23 self.path.lineTo(x,y
47 path = sys.argv[1] variable
    [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/load/model/
UriLoader.java 32 String path = AssetUriParser.toAssetPath(model); local
33 result = getAssetPathFetcher(context, path);
46 protected abstract DataFetcher<T> getAssetPathFetcher(Context context, String path);
  /external/google-breakpad/src/common/tests/
auto_tempdir.h 64 const string& path() const { function in class:google_breakpad::AutoTempDir
69 void DeleteRecursively(const string& path) {
71 DIR* dir = opendir(path.c_str());
79 string entry_path = path + "/" + entry->d_name;
88 EXPECT_TRUE(rmdir(path.c_str()) == 0);
  /external/google-breakpad/src/testing/gtest/test/
gtest-options_test.cc 62 // Turns the given relative path into an absolute path.
92 GTEST_FLAG(output) = "xml:path" GTEST_PATH_SEP_;
95 FilePath(std::string("path") + GTEST_PATH_SEP_ +
165 GTEST_FLAG(output) = "xml:path" GTEST_PATH_SEP_;
169 FilePath(std::string("path") + GTEST_PATH_SEP_ +
193 const std::string path = "c:\\tmp\\"; local
195 const std::string path = "/tmp/";
198 GTEST_FLAG(output) = "xml:" + path;
200 path + GetCurrentExecutableName().c_str() + ".xml"
    [all...]
  /external/googletest/googletest/test/
gtest-options_test.cc 62 // Turns the given relative path into an absolute path.
92 GTEST_FLAG(output) = "xml:path" GTEST_PATH_SEP_;
95 FilePath(std::string("path") + GTEST_PATH_SEP_ +
172 GTEST_FLAG(output) = "xml:path" GTEST_PATH_SEP_;
176 FilePath(std::string("path") + GTEST_PATH_SEP_ +
201 const std::string path = "c:\\tmp\\"; local
203 const std::string path = "/tmp/";
206 GTEST_FLAG(output) = "xml:" + path;
208 path + GetCurrentExecutableName().string() + ".xml"
    [all...]
  /external/guice/extensions/servlet/test/com/google/inject/servlet/
ServletUtilsTest.java 24 String path = ServletUtils.getContextRelativePath(servletRequest); local
25 assertEquals("/test.html", path);
34 String path = ServletUtils.getContextRelativePath(servletRequest); local
35 assertNull(path);
44 String path = ServletUtils.getContextRelativePath(servletRequest); local
45 assertEquals("/", path);
54 String path = ServletUtils.getContextRelativePath(servletRequest); local
55 assertNull(path);
  /external/icu/icu4c/source/test/cintltst/
cposxtst.c 60 const char *path = loadTestData(&ec); local
67 catd = u_catopen(path, "mc", &ec);
  /external/iproute2/lib/
fs.c 33 /* return mount path of first occurrence of given fstype */
36 char path[4096]; local
49 path, fstype) == 2) {
51 mnt = strdup(path);
71 fprintf(stderr, "Failed to allocate memory for cgroup2 path\n");
102 int make_path(const char *path, mode_t mode)
107 delim = dir = strdup(path);
109 fprintf(stderr, "strdup failed copying path");
146 char path[PATH_MAX]; local
150 if (snprintf(path, sizeof(path)
    [all...]
namespace.c 94 const char *path, *ptr; local
96 path = name;
101 path = pathbuf;
103 return open(path, O_RDONLY);
  /external/iptables/include/linux/netfilter/
xt_bpf.h 33 char path[XT_BPF_PATH_MAX]; member in union:xt_bpf_info_v1::__anon22396
xt_cgroup.h 17 char path[PATH_MAX]; member in struct:xt_cgroup_info_v1
  /external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/utils/
SourceRootTest.java 9 import java.nio.file.Path;
16 private final Path root = CodeGenerationUtils.classLoaderRoot(SourceRootTest.class).resolve("com/github/javaparser/utils/");
32 Path path = CodeGenerationUtils.classLoaderRoot(SourceRootTest.class).resolve("/com/github/javaparser/utils/Bla.java"); local
33 new SourceRoot(path);
  /external/jcommander/src/test/java/com/beust/jcommander/
ValidatePropertiesWhenParsingTest.java 15 cmd.parse(new String[] { "a", "-path", "myPathToHappiness" });
28 @Parameter(names = "-path")
29 private String path = "W"; field in class:ValidatePropertiesWhenParsingTest.A
35 @Parameter(names = "-path", validateWith = MyPathValidator.class)
36 private String path = "W"; field in class:ValidatePropertiesWhenParsingTest.B
  /external/jcommander/src/test/java/com/beust/jcommander/args/
ArgsConverter.java 31 import java.nio.file.Path;
45 @Parameter(names = "-path", converter = PathConverter.class)
46 public Path path; field in class:ArgsConverter
  /external/jsilver/src/com/google/clearsilver/jsilver/resourceloader/
ClassLoaderResourceLoader.java 67 String path = basePath + '/' + name; local
68 InputStream stream = classLoader.getResourceAsStream(path);
  /external/kernel-headers/original/uapi/linux/netfilter/
xt_bpf.h 35 char path[XT_BPF_PATH_MAX]; member in union:xt_bpf_info_v1::__anon23119

Completed in 400 milliseconds

<<11121314151617181920>>