OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:pathname
(Results
151 - 175
of
1409
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
imputil.py
415
def _compile(
pathname
, timestamp):
418
The file specified by <
pathname
> is compiled to a code object and
425
codestring = open(
pathname
, 'rU').read()
428
code = __builtin__.compile(codestring,
pathname
, 'exec')
432
f = open(
pathname
+ _suffix_char, 'wb')
483
def _os_path_isdir(
pathname
):
486
s = _os_stat(
pathname
)
491
def _timestamp(
pathname
):
494
s = _os_stat(
pathname
)
556
def _import_pathname(self,
pathname
, fqname)
[
all
...]
posixpath.py
10
for manipulation of the
pathname
component of URLs.
46
# Normalize the case of a
pathname
. Trivial in Posix, string.lower on Mac.
52
"""Normalize case of
pathname
. Has no effect under Posix"""
69
"""Join two or more
pathname
components, inserting '/' as needed.
90
"""Split a
pathname
. Returns tuple "(head, tail)" where "tail" is
101
#
pathname
component; the root is everything before that.
108
# Split a
pathname
into a drive specification and the rest of the
112
"""Split a
pathname
into drive and path. On Posix, drive is always
120
"""Returns the final component of a
pathname
"""
128
"""Returns the directory component of a
pathname
"""
[
all
...]
/prebuilts/python/linux-x86/2.7.5/include/python2.7/
import.h
13
char *name, PyObject *co, char *
pathname
);
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/
imputil.py
415
def _compile(
pathname
, timestamp):
418
The file specified by <
pathname
> is compiled to a code object and
425
codestring = open(
pathname
, 'rU').read()
428
code = __builtin__.compile(codestring,
pathname
, 'exec')
432
f = open(
pathname
+ _suffix_char, 'wb')
483
def _os_path_isdir(
pathname
):
486
s = _os_stat(
pathname
)
491
def _timestamp(
pathname
):
494
s = _os_stat(
pathname
)
556
def _import_pathname(self,
pathname
, fqname)
[
all
...]
posixpath.py
10
for manipulation of the
pathname
component of URLs.
46
# Normalize the case of a
pathname
. Trivial in Posix, string.lower on Mac.
52
"""Normalize case of
pathname
. Has no effect under Posix"""
69
"""Join two or more
pathname
components, inserting '/' as needed.
90
"""Split a
pathname
. Returns tuple "(head, tail)" where "tail" is
101
#
pathname
component; the root is everything before that.
108
# Split a
pathname
into a drive specification and the rest of the
112
"""Split a
pathname
into drive and path. On Posix, drive is always
120
"""Returns the final component of a
pathname
"""
128
"""Returns the directory component of a
pathname
"""
[
all
...]
/sdk/monitor/
monitor
17
# and set up progdir to be the fully-qualified
pathname
of its directory.
/external/chromium_org/third_party/zlib/contrib/minizip/
zip.h
116
extern zipFile ZEXPORT zipOpen OF((const char *
pathname
, int append));
117
extern zipFile ZEXPORT zipOpen64 OF((const void *
pathname
, int append));
120
pathname
contain on Windows XP a filename like "c:\\zlib\\zlib113.zip" or on
122
if the file
pathname
exist and append==APPEND_STATUS_CREATEAFTER, the zip
125
if the file
pathname
exist and append==APPEND_STATUS_ADDINZIP, we will
137
extern zipFile ZEXPORT zipOpen2 OF((const char *
pathname
,
142
extern zipFile ZEXPORT zipOpen2_64 OF((const void *
pathname
,
/external/zlib/src/contrib/minizip/
zip.h
116
extern zipFile ZEXPORT zipOpen OF((const char *
pathname
, int append));
117
extern zipFile ZEXPORT zipOpen64 OF((const void *
pathname
, int append));
120
pathname
contain on Windows XP a filename like "c:\\zlib\\zlib113.zip" or on
122
if the file
pathname
exist and append==APPEND_STATUS_CREATEAFTER, the zip
125
if the file
pathname
exist and append==APPEND_STATUS_ADDINZIP, we will
137
extern zipFile ZEXPORT zipOpen2 OF((const char *
pathname
,
142
extern zipFile ZEXPORT zipOpen2_64 OF((const void *
pathname
,
/frameworks/base/core/jni/
android_os_SELinux.cpp
403
* Parameters:
pathname
: the
pathname
for the file to be relabeled
412
ScopedUtfChars
pathname
(env, pathnameStr);
413
if (
pathname
.c_str() == NULL) {
414
ALOGV("restorecon(%p) => threw exception",
pathname
);
418
int ret = selinux_android_restorecon(
pathname
.c_str());
419
ALOGV("restorecon(%s) => %d",
pathname
.c_str(), ret);
/external/chromium/sdch/open-vcdiff/src/gtest/
gtest-filepath.cc
111
// Returns true if
pathname
describes something findable in the file-system,
123
// Returns true if
pathname
describes a directory in the file-system
142
// Returns a
pathname
for a file that does not currently exist. The
pathname
145
// already exists. The number will be incremented until a
pathname
is found
/external/srec/portable/include/
PFileSystem.h
143
* Returns the canonical
pathname
string of this abstract
pathname
.
145
* A canonical
pathname
is both absolute and unique. The precise definition of canonical
146
* form is system-dependent. This method first converts this
pathname
to absolute form.
147
* This typically involves removing redundant names such as "." and ".." from the
pathname
,
/external/chromium/testing/gtest/src/
gtest-filepath.cc
200
// Returns true if
pathname
describes something findable in the file-system,
214
// Returns true if
pathname
describes a directory in the file-system
244
// Returns true if
pathname
describes a root directory. (Windows has one
257
// Returns true if
pathname
describes an absolute path.
271
// Returns a
pathname
for a file that does not currently exist. The
pathname
274
// already exists. The number will be incremented until a
pathname
is found
345
// Removes any redundant separators that might be in the
pathname
.
347
// redundancies that might be in a
pathname
involving "." or "..".
/external/chromium_org/sandbox/linux/services/
broker_process.cc
192
int BrokerProcess::Access(const char*
pathname
, int mode) const {
193
return PathAndFlagsSyscall(kCommandAccess,
pathname
, mode);
196
int BrokerProcess::Open(const char*
pathname
, int flags) const {
197
return PathAndFlagsSyscall(kCommandOpen,
pathname
, flags);
205
const char*
pathname
, int flags) const {
209
if (!
pathname
)
227
!GetFileNameIfAllowedToOpen(
pathname
, flags, NULL)) {
231
!GetFileNameIfAllowedToAccess(
pathname
, flags, NULL)) {
238
write_pickle.WriteString(
pathname
);
/external/chromium_org/testing/gtest/src/
gtest-filepath.cc
201
// Returns true if
pathname
describes something findable in the file-system,
215
// Returns true if
pathname
describes a directory in the file-system
245
// Returns true if
pathname
describes a root directory. (Windows has one
258
// Returns true if
pathname
describes an absolute path.
272
// Returns a
pathname
for a file that does not currently exist. The
pathname
275
// already exists. The number will be incremented until a
pathname
is found
346
// Removes any redundant separators that might be in the
pathname
.
348
// redundancies that might be in a
pathname
involving "." or "..".
/external/chromium_org/third_party/mesa/src/src/gtest/src/
gtest-filepath.cc
200
// Returns true if
pathname
describes something findable in the file-system,
214
// Returns true if
pathname
describes a directory in the file-system
244
// Returns true if
pathname
describes a root directory. (Windows has one
257
// Returns true if
pathname
describes an absolute path.
271
// Returns a
pathname
for a file that does not currently exist. The
pathname
274
// already exists. The number will be incremented until a
pathname
is found
345
// Removes any redundant separators that might be in the
pathname
.
347
// redundancies that might be in a
pathname
involving "." or "..".
/external/gtest/src/
gtest-filepath.cc
200
// Returns true if
pathname
describes something findable in the file-system,
214
// Returns true if
pathname
describes a directory in the file-system
244
// Returns true if
pathname
describes a root directory. (Windows has one
257
// Returns true if
pathname
describes an absolute path.
271
// Returns a
pathname
for a file that does not currently exist. The
pathname
274
// already exists. The number will be incremented until a
pathname
is found
345
// Removes any redundant separators that might be in the
pathname
.
347
// redundancies that might be in a
pathname
involving "." or "..".
/external/libvpx/libvpx/third_party/googletest/src/src/
gtest-filepath.cc
200
// Returns true if
pathname
describes something findable in the file-system,
214
// Returns true if
pathname
describes a directory in the file-system
244
// Returns true if
pathname
describes a root directory. (Windows has one
257
// Returns true if
pathname
describes an absolute path.
271
// Returns a
pathname
for a file that does not currently exist. The
pathname
274
// already exists. The number will be incremented until a
pathname
is found
345
// Removes any redundant separators that might be in the
pathname
.
347
// redundancies that might be in a
pathname
involving "." or "..".
/external/llvm/utils/unittest/googletest/
gtest-filepath.cc
198
// Returns true if
pathname
describes something findable in the file-system,
212
// Returns true if
pathname
describes a directory in the file-system
242
// Returns true if
pathname
describes a root directory. (Windows has one
255
// Returns true if
pathname
describes an absolute path.
269
// Returns a
pathname
for a file that does not currently exist. The
pathname
272
// already exists. The number will be incremented until a
pathname
is found
343
// Removes any redundant separators that might be in the
pathname
.
345
// redundancies that might be in a
pathname
involving "." or "..".
/external/mesa3d/src/gtest/src/
gtest-filepath.cc
200
// Returns true if
pathname
describes something findable in the file-system,
214
// Returns true if
pathname
describes a directory in the file-system
244
// Returns true if
pathname
describes a root directory. (Windows has one
257
// Returns true if
pathname
describes an absolute path.
271
// Returns a
pathname
for a file that does not currently exist. The
pathname
274
// already exists. The number will be incremented until a
pathname
is found
345
// Removes any redundant separators that might be in the
pathname
.
347
// redundancies that might be in a
pathname
involving "." or "..".
/external/open-vcdiff/gtest/src/
gtest-filepath.cc
169
// Returns true if
pathname
describes something findable in the file-system,
183
// Returns true if
pathname
describes a directory in the file-system
213
// Returns true if
pathname
describes a root directory. (Windows has one
226
// Returns true if
pathname
describes an absolute path.
240
// Returns a
pathname
for a file that does not currently exist. The
pathname
243
// already exists. The number will be incremented until a
pathname
is found
313
// Normalize removes any redundant separators that might be in the
pathname
.
315
// redundancies that might be in a
pathname
involving "." or "..".
/external/protobuf/gtest/src/
gtest-filepath.cc
169
// Returns true if
pathname
describes something findable in the file-system,
183
// Returns true if
pathname
describes a directory in the file-system
213
// Returns true if
pathname
describes a root directory. (Windows has one
226
// Returns true if
pathname
describes an absolute path.
240
// Returns a
pathname
for a file that does not currently exist. The
pathname
243
// already exists. The number will be incremented until a
pathname
is found
313
// Normalize removes any redundant separators that might be in the
pathname
.
315
// redundancies that might be in a
pathname
involving "." or "..".
/ndk/sources/third_party/googletest/googletest/src/
gtest-filepath.cc
202
// Returns true if
pathname
describes something findable in the file-system,
216
// Returns true if
pathname
describes a directory in the file-system
246
// Returns true if
pathname
describes a root directory. (Windows has one
259
// Returns true if
pathname
describes an absolute path.
273
// Returns a
pathname
for a file that does not currently exist. The
pathname
276
// already exists. The number will be incremented until a
pathname
is found
347
// Removes any redundant separators that might be in the
pathname
.
349
// redundancies that might be in a
pathname
involving "." or "..".
/external/bison/lib/
fopen.c
60
"A
pathname
that contains at least one non-slash character and that
62
single dot character ( '.' ) were appended to the
pathname
."
/external/chromium-trace/trace-viewer/third_party/gl-matrix/tasks/test/
coverage.rake
44
path = coverage_path.join('lib').join(part.
pathname
.basename)
84
path = coverage_path.join('lib-cov').join(part.
pathname
.basename)
/external/chromium_org/content/test/data/indexeddb/
common.js
136
dbname = self.location.
pathname
.substring(
137
1 + self.location.
pathname
.lastIndexOf("/"));
Completed in 1037 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>