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

1234567891011>>

/external/opencv3/3rdparty/ffmpeg/
H A Dmake.bat1 set path=c:\dev\msys32\bin;%path% & gcc -Wall -shared -o opencv_ffmpeg.dll -O2 -x c++ -I../include -I../include/ffmpeg_ -I../../modules/highgui/src ffopencv.c -L../lib -lavformat -lavcodec -lavdevice -lswscale -lavutil -lws2_32 variable
2 set path=c:\dev\msys64\bin;%path% & gcc -m64 -Wall -shared -o opencv_ffmpeg_64.dll -O2 -x c++ -I../include -I../include/ffmpeg_ -I. (…) variable
/external/pdfium/build/
H A Dgyp_pdfium.py7 path = os.path.abspath(os.path.split(__file__)[0]) variable
8 execfile(os.path.join(path, 'gyp_pdfium'))
/external/skia/
H A Dgyp_skia.py17 path = os.path.abspath(os.path.split(__file__)[0]) variable
18 execfile(os.path.join(path, 'gyp_skia'))
/external/skia/src/doc/
H A DSkDocument_PDF_None.cpp9 SkDocument* SkDocument::CreatePDF(const char path[], SkScalar) { return nullptr; } argument
H A DSkDocument_XPS_None.cpp13 SkDocument* SkDocument::CreateXPS(const char path[], SkScalar) { return nullptr; } argument
/external/v8/build/
H A Dgyp_v8.py40 path = os.path.abspath(os.path.split(__file__)[0]) variable
41 execfile(os.path.join(path, 'gyp_v8'))
/external/webrtc/webrtc/build/
H A Dgyp_webrtc.py23 path = os.path.abspath(os.path.split(__file__)[0]) variable
24 execfile(os.path.join(path, 'gyp_webrtc'))
/external/autotest/client/cros/networking/
H A Dapmanager_helper.py5 import os.path namespace
9 return os.path.exists('/usr/bin/apmanager')
/external/compiler-rt/lib/profile/
H A DInstrProfilingUtil.c23 void __llvm_profile_recursive_mkdir(char *path) { argument
26 for (i = 1; path[i] != '\0'; ++i) {
27 if (path[i] != '/') continue;
28 path[i] = '\0';
30 _mkdir(path);
32 mkdir(path, 0755); /* Some of these will fail, ignore it. */
34 path[i] = '/';
/external/curl/src/
H A Dtool_bname.c30 char *tool_basename(char *path) argument
35 s1 = strrchr(path, '/');
36 s2 = strrchr(path, '\\');
39 path = (s1 > s2) ? s1 + 1 : s2 + 1;
42 path = s1 + 1;
44 path = s2 + 1;
46 return path;
/external/dbus/dbus/
H A Ddbus-nonce.h37 DBusString path; member in struct:DBusNonceFile
/external/jsoncpp/devtools/
H A Dfixeol.py2 import os.path namespace
4 def fix_source_eol( path, is_dry_run = True, verbose = True, eol = '\n' ):
6 if not os.path.isfile( path ):
7 raise ValueError( 'Path "%s" is not a file' % path )
9 f = open(path, 'rb')
19 print('%s =>' % path, end=' ')
21 f = open(path, "wb")
38 ## for path in python_sources:
39 ## _fix_python_source( path, is_dry_ru
[all...]
/external/libselinux/src/
H A Dlsetfilecon.c10 int lsetfilecon(const char *path, const char *context) argument
12 return lsetxattr(path, XATTR_NAME_SELINUX, context, strlen(context) + 1,
H A Dsetfilecon.c10 int setfilecon(const char *path, const char *context) argument
12 return setxattr(path, XATTR_NAME_SELINUX, context, strlen(context) + 1,
/external/parameter-framework/upstream/utility/
H A DDynamicLibrary.cpp33 std::string DynamicLibrary::osSanitizePathName(const std::string &path) argument
35 if (path.rfind(_osLibrarySuffix) == (path.length() - _osLibrarySuffix.length())) {
37 return path;
40 std::string sanitizedPath = _osLibraryPrefix + path + _osLibrarySuffix;
/external/skia/gm/
H A Dsmallarc.cpp21 SkPath path; local
22 path.moveTo(75, 0);
23 path.cubicTo(33.5, 0, 0, 33.5, 0, 75);
27 canvas->drawPath(path, p);
/external/toybox/toys/other/
H A Dpwdx.c23 char *path; local
26 path = xmprintf("/proc/%s/cwd", *optargs);
27 num_bytes = readlink(path, toybuf, sizeof(toybuf)-1);
28 free(path);
31 path = strerror(errno);
34 path = toybuf;
37 xprintf("%s: %s\n", *optargs, path);
/external/v8/tools/ninja/
H A Dninja_output.py7 import os.path namespace
24 root = os.path.join(v8_root, output_dir)
26 return os.path.join(root, configuration)
28 debug_path = os.path.join(root, 'Debug')
29 release_path = os.path.join(root, 'Release')
33 debug_mtime = os.path.getmtime(os.path.join(debug_path, test_path))
37 rel_mtime = os.path.getmtime(os.path.join(release_path, test_path))
/external/autotest/client/bin/self-test/
H A Dextract_tarball_to_dir2 import sys, os, os.path namespace
5 sys.path.insert(0, autodir + '/bin')
/external/chromium-trace/catapult/firefighter/default/tracing/tracing/
H A Dindex.js7 var path = require('path'); variable
9 var catapultPath = fs.realpathSync(path.join(__dirname, '..', '..'));
10 var catapultBuildPath = path.join(catapultPath, 'catapult_build');
12 var node_bootstrap = require(path.join(catapultBuildPath, 'node_bootstrap.js'));
/external/chromium-trace/catapult/tracing/tracing/
H A Dindex.js7 var path = require('path'); variable
9 var catapultPath = fs.realpathSync(path.join(__dirname, '..', '..'));
10 var catapultBuildPath = path.join(catapultPath, 'catapult_build');
12 var node_bootstrap = require(path.join(catapultBuildPath, 'node_bootstrap.js'));
/external/curl/lib/
H A Dfile.h30 char *path; /* the path we operate on */ member in struct:FILEPROTO
32 differ from the 'path' pointer */
/external/google-breakpad/src/common/linux/
H A Dsafe_readlink.h47 // at least one byte longer than the expected path length (e.g. PATH_MAX,
48 // which is typically defined as the maximum length of a path name
54 bool SafeReadLink(const char* path, char* buffer, size_t buffer_size);
59 bool SafeReadLink(const char* path, char (&buffer)[N]) { argument
60 return SafeReadLink(path, buffer, sizeof(buffer));
/external/icu/icu4c/source/common/
H A Dresbund_cnv.cpp25 ResourceBundle::ResourceBundle( const UnicodeString& path, argument
30 constructForLocale(path, locale, error);
33 ResourceBundle::ResourceBundle( const UnicodeString& path, argument
37 constructForLocale(path, Locale::getDefault(), error);
41 ResourceBundle::constructForLocale(const UnicodeString& path, argument
45 if (path.isEmpty()) {
49 UnicodeString nullTerminatedPath(path);
/external/libchrome/base/files/
H A Dfile_util_linux.cc16 bool GetFileSystemType(const FilePath& path, FileSystemType* type) { argument
18 if (statfs(path.value().c_str(), &statfs_buf) < 0) {

Completed in 1721 milliseconds

1234567891011>>