/external/opencv3/3rdparty/ffmpeg/ |
make.bat | 1 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/ |
gyp_pdfium.py | 7 path = os.path.abspath(os.path.split(__file__)[0]) variable 8 execfile(os.path.join(path, 'gyp_pdfium'))
|
/external/skia/ |
gyp_skia.py | 17 path = os.path.abspath(os.path.split(__file__)[0]) variable 18 execfile(os.path.join(path, 'gyp_skia'))
|
/external/v8/build/ |
gyp_v8.py | 40 path = os.path.abspath(os.path.split(__file__)[0]) variable 41 execfile(os.path.join(path, 'gyp_v8'))
|
/external/webrtc/webrtc/build/ |
gyp_webrtc.py | 23 path = os.path.abspath(os.path.split(__file__)[0]) variable 24 execfile(os.path.join(path, 'gyp_webrtc'))
|
/build/tools/ |
normalize_path.py | 20 import os.path namespace 25 print os.path.normpath(p) 29 print os.path.normpath(line.strip())
|
/external/autotest/client/cros/networking/ |
apmanager_helper.py | 5 import os.path namespace 9 return os.path.exists('/usr/bin/apmanager')
|
/external/compiler-rt/test/asan/TestCases/Linux/ |
activation-options.cc | 49 std::string path = std::string(argv[0]) + "-so.so"; local 56 void *dso = dlopen(path.c_str(), RTLD_NOW);
|
/external/dbus/dbus/ |
dbus-nonce.h | 37 DBusString path; member in struct:DBusNonceFile
|
/external/jsoncpp/devtools/ |
fixeol.py | 2 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 [all...] |
/external/libselinux/src/ |
check_context.c | 14 char path[PATH_MAX]; local 22 snprintf(path, sizeof path, "%s/context", selinux_mnt); 23 fd = open(path, O_RDWR);
|
load_policy.c | 21 char path[PATH_MAX]; local 29 snprintf(path, sizeof path, "%s/load", selinux_mnt); 30 fd = open(path, O_RDWR);
|
disable.c | 15 char path[PATH_MAX]; local 23 snprintf(path, sizeof path, "%s/disable", selinux_mnt); 24 fd = open(path, O_WRONLY);
|
setenforce.c | 15 char path[PATH_MAX]; local 23 snprintf(path, sizeof path, "%s/enforce", selinux_mnt); 24 fd = open(path, O_RDWR);
|
/external/skia/gm/ |
smallarc.cpp | 21 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/ |
pwdx.c | 23 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/ |
ninja_output.py | 7 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/ |
extract_tarball_to_dir | 2 import sys, os, os.path namespace 5 sys.path.insert(0, autodir + '/bin')
|
/external/chromium-trace/catapult/tracing/tracing/ |
index.js | 7 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/compiler-rt/test/asan/TestCases/Posix/ |
glob.cc | 17 std::string path = argv[1]; local 18 std::string pattern = path + "/glob_test_root/*a";
|
/external/curl/lib/ |
file.h | 30 char *path; /* the path we operate on */ member in struct:FILEPROTO 32 differ from the 'path' pointer */
|
/external/icu/icu4c/source/common/ |
ures_cnv.c | 34 char *path = pathBuffer; local 40 path = NULL; 52 u_UCharsToChars(myPath, path, length+1); /* length+1 to include the NUL */ 57 length=ucnv_fromUChars(cnv, path, (int32_t)sizeof(pathBuffer), myPath, length, status); 63 /* not NUL-terminated - path too long */ 75 return ures_open(path, localeID, status);
|
/external/parameter-framework/upstream/test/tmpfile/posix/ |
TmpFile.cpp | 45 char path[] = "Tmp_ParameterFramework_XXXXXX"; local 46 int fd = mkstemp(path); 48 throwErrnoError("Could not create tmp file with pattern \"" + string(path) + '"'); 51 throwErrnoError("Could not close tmp file \"" + string(path) + '"'); 53 return path;
|
/external/selinux/libselinux/src/ |
disable.c | 15 char path[PATH_MAX]; local 23 snprintf(path, sizeof path, "%s/disable", selinux_mnt); 24 fd = open(path, O_WRONLY);
|
setenforce.c | 15 char path[PATH_MAX]; local 23 snprintf(path, sizeof path, "%s/enforce", selinux_mnt); 24 fd = open(path, O_RDWR);
|