Searched defs:path (Results 1 - 25 of 3116) sorted by path

1234567891011>>

/external/ant-glob/src/org/apache/tools/ant/types/selectors/
H A DSelectorUtils.java63 * Tests whether or not a given path matches the start of a given
72 * @param str The path to match, as a String. Must not be
75 * @return whether or not a given path matches the start of a given
83 * Tests whether or not a given path matches the start of a given
92 * @param str The path to match, as a String. Must not be
97 * @return whether or not a given path matches the start of a given
118 * Tests whether or not a given path matches the start of a given
127 * @param strDirs The tokenized path to match. Must not be
132 * @return whether or not a given path matches the start of a given
172 * Tests whether or not a given path matche
512 tokenizePath(String path) argument
528 tokenizePath(String path, String separator) argument
545 tokenizePathAsArray(String path) argument
[all...]
/external/ant-glob/src/org/apache/tools/ant/util/
H A DFileUtils.java28 * referred to using abstract path names which are translated to native
107 * Verifies that the specified filename represents an absolute path.
108 * Differs from new java.io.File("filename").isAbsolute() in that a path
110 * at minimum match "\\a\b" to be considered an absolute path.
112 * @return true if the filename represents an absolute path.
143 * Dissect the specified absolute path.
144 * @param path the path to dissect.
145 * @return String[] {root, remaining path}.
146 * @throws java.lang.NullPointerException if path i
149 dissect(String path) argument
[all...]
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jar ... .analysis.NFAState nfaStart java.util.List path org.antlr.analysis.NFAState altStart org. ...
/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/adobe/ com/adobe/ac/ com/adobe/ac/ant/ ...
/external/antlr/antlr-3.4/runtime/Python/
H A Dxmlrunner.py10 import os.path namespace
156 current working directory (if not overridden with the path property),
171 stream = file(os.path.join(self._path, filename), "w")
206 def _set_path(self, path):
207 self._path = path
209 path = property(lambda self: self._path, _set_path, None, variable in class:XMLTestRunner
210 """The path where the XML files are stored.
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
H A Dgrammar.rb18 attr_accessor :path, :force
27 def depends_on( path )
28 path = File.expand_path path.to_s
29 dependencies << path if test( ?f, path )
30 return path
53 def self.global_dependency( path )
54 path = File.expand_path path
[all...]
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
H A DDecisionProbe.java75 * By reaching the same DFA state, a path through the NFA for some input
155 /** Used while finding a path through an NFA whose edge labels match
333 * find the path of NFA states associated with the labels sequence.
353 * The NFA path matching the sample input sequence (labels) is computed
364 List path = new LinkedList();
369 path.add(s);
375 path.add(isolatedAltStart);
377 // add the actual path now
382 path);
383 return path;
811 getNFAPath(NFAState s, int labelIndex, List labels, List path) argument
[all...]
/external/apache-http/src/org/apache/http/client/utils/
H A DURIUtils.java64 * @param path
72 * If both a scheme and a path are given but the path is
82 final String path,
98 if (path == null || !path.startsWith("/")) {
101 if (path != null) {
102 buffer.append(path);
117 * and port are taken from the target host, but whose path, query and
122 * Contains the path, quer
78 createURI( final String scheme, final String host, int port, final String path, final String query, final String fragment) argument
[all...]
/external/apache-http/src/org/apache/http/cookie/
H A DCookieOrigin.java52 private final String path; field in class:CookieOrigin
55 public CookieOrigin(final String host, int port, final String path, boolean secure) { argument
68 if (path == null) {
74 if (path.trim().length() != 0) {
75 this.path = path;
77 this.path = "/";
87 return this.path;
108 buffer.append(this.path);
H A DSetCookie.java86 * Sets the path attribute.
88 * @param path The value of the path attribute
93 void setPath(String path); argument
/external/apache-http/src/org/apache/http/impl/cookie/
H A DBasicClientCookie.java214 * Returns the path attribute of the cookie
216 * @return The value of the path attribute.
225 * Sets the path attribute.
227 * @param path The value of the path attribute
232 public void setPath(String path) { argument
233 cookiePath = path;
342 buffer.append("[path: ");
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DAbsPathChecker.java32 * This class runs over a path expression that is assumed to be absolute, and
42 * @param path LocPathIterator that is assumed to be absolute, but needs checking.
43 * @return true if the path is confirmed to be absolute, false if it
46 public boolean checkAbsolute(LocPathIterator path) argument
49 path.callVisitors(null, this);
H A DRedundentExprEliminator.java180 * For a given path, see if there are any partitial matches in the list,
544 * For the reduction of location path parts, create a list of all
564 // Assuming location path iterators should be OK.
746 * Count the steps in a given location path.
748 * @param lpi The location path iterator that owns the steps.
749 * @return The number of steps in the given location path.
906 // If the location path contains variables, we have to insert the
1050 * Tell if the given LocPathIterator is relative to an absolute path, i.e.
1055 public boolean isAbsolute(LocPathIterator path) argument
1057 int analysis = path
1075 visitLocationPath(ExpressionOwner owner, LocPathIterator path) argument
1268 validateNewAddition(Vector paths, ExpressionOwner owner, LocPathIterator path) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xpath/
H A DXPathVisitor.java57 * @param path The LocationPath object.
60 public boolean visitLocationPath(ExpressionOwner owner, LocPathIterator path) argument
69 * @param path The UnionPath object.
72 public boolean visitUnionPath(ExpressionOwner owner, UnionPathIterator path) argument
78 * Visit a step within a location path.
90 * Visit a predicate within a location path. Note that there isn't a
/external/apache-xml/src/main/java/org/apache/xpath/axes/
H A DHasPositionalPredChecker.java46 * @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) argument
53 path.callVisitors(null, hppc);
86 * Visit a predicate within a location path. Note that there isn't a
/external/bison/lib/
H A Dspawn_faction_addopen.c37 int fd, const char *path, int oflag,
48 return posix_spawn_file_actions_addopen (file_actions, fd, path, oflag, mode);
63 rec->action.open_action.path = path;
36 posix_spawn_file_actions_addopen(posix_spawn_file_actions_t *file_actions, int fd, const char *path, int oflag, mode_t mode) argument
H A Dspawn_int.h43 const char *path; member in struct:__spawn_action::__anon357::__anon360
59 extern int __spawni (pid_t *pid, const char *path,
H A Dspawni.c145 char *path, *p, *name; local
160 might perform the path searching. But this would be done by
256 int new_fd = open_not_cancel (action->action.open_action.path,
293 /* The FILE parameter is actually a path. */
303 /* We have to search for FILE on the path. */
304 path = getenv ("PATH");
305 if (path == NULL)
309 The default search path is the current directory
310 followed by the path 'confstr' returns for '_CS_PATH'. */
312 path
[all...]
/external/blktrace/
H A Dblktrace.c93 char *path; /* path to device special file */ member in struct:devpath
439 "-d <dev> [ -r debugfs path ] [ -o <output> ] [-k ] [ -w time ]\n" \
600 if (dpp->path)
601 free(dpp->path);
665 static FILE *my_fopen(const char *path, const char *mode) argument
670 fp = fopen(path, mode);
676 static int my_open(const char *path, int flags) argument
681 fd = open(path, flags);
1060 dpp->path, errn
1210 add_devpath(char *path) argument
[all...]
/external/blktrace/btreplay/
H A Dbtreplay.c1317 char path[MAXPATHLEN]; local
1324 sprintf(path, "/dev/%s", map_dev(tip->devnm));
1331 tip->ofd = open(path, O_RDWR | O_DIRECT | oflags);
1333 fatal(path, ERR_SYSCALL, "Failed device open\n");
/external/blktrace/btt/
H A Dmisc.c155 FILE *my_fopen(const char *path, const char *mode) argument
160 fp = fopen(path, mode);
166 int my_open(const char *path, int flags) argument
171 fd = open(path, flags);
/external/bluetooth/bluedroid/audio_a2dp_hw/
H A Daudio_a2dp_hw.c199 static int skt_connect(char *path, size_t buffer_sz) argument
206 INFO("connect to %s (sz %zu)", path, buffer_sz);
210 if(socket_local_client_connect(skt_fd, path,
503 /* disconnect audio path */
528 /* disconnect audio path */
/external/bluetooth/bluedroid/bta/include/
H A Dbta_fs_co.h42 /* Maximum path length supported by FS_CO */
143 char path[BTA_FS_CO_PATH_LEN + 1]; /* the "current path". path[0]==0-> root */ member in struct:__anon761
187 ** Parameters p_path - Fully qualified path and file name.
308 ** local path
310 ** Parameters p_path - the new path.
422 ** Parameters p_path - (input) file or directory to access (fully qualified path).
443 ** the pathname given by path. The pathname is a null terminated
444 ** string. All components of the path mus
[all...]
/external/bluetooth/bluedroid/btif/co/
H A Dbta_fs_co.c59 static int del_path (const char *path) argument
66 BTIF_TRACE_DEBUG("in del_path for path:%s", path);
67 dir = opendir(path);
70 BTIF_TRACE_DEBUG("opendir failed on path:%s", path);
76 strncpy(nameBuffer, path, PATH_MAX - 1);
85 BTIF_TRACE_DEBUG("readdir failed for path:%s", path);
104 BTIF_TRACE_DEBUG("lstat failed for path
[all...]
/external/bluetooth/bluedroid/btif/src/
H A Dbtif_config_util.cpp500 char path[256]; local
501 snprintf(path, sizeof(path), "%s/%s", adapter_path, file_name);
502 int fd = open_file_map(path, &map, &size);
503 //debug("in, path:%s, fd:%d, size:%d", path, fd, size);
506 error("open_file_map fail, fd:%d, path:%s, size:%d", fd, path, size);
588 char path[256]; local
589 snprintf(path, sizeo
765 char path[256]; local
825 char path[256]; local
[all...]

Completed in 889 milliseconds

1234567891011>>