HomeSort by relevance Sort by last modified time
    Searched refs:path_name (Results 1 - 24 of 24) sorted by null

  /external/valgrind/main/tests/
check_headers_and_includes 144 my $path_name = defined $path ? "$path/$file" : $file;
145 process_file($path_name);
155 my ($path_name) = @_;
157 return ($path_name =~ /^include\//) ? 1 : 0;
164 my ($path_name) = @_;
166 return ($path_name =~ /^coregrind\//) ? 1 : 0;
173 my ($path_name) = @_;
176 return 1 if ($path_name =~ /^$tool\//);
185 my ($path_name) = @_;
187 my $file = basename($path_name);
    [all...]
  /frameworks/compile/mclinker/lib/Support/
RealPath.cpp 51 Path path_name; local
52 detail::get_pwd(path_name);
53 path_name.native() += preferred_separator;
54 path_name.native() += m_PathName;
55 detail::canonicalize(path_name.native());
56 m_PathName = path_name.native();
  /system/media/camera/docs/
camera_metadata_tag_info.mako 36 ${"[%s]" %(path_name(i)) | csym,pad(36)} = "${path_name(i)}",
42 ${"[%s]" %(path_name(i)) | csym,pad(36)} = { ${path_name(i) | csym}_START,
43 ${path_name(i) | csym}_END },
48 static tag_info_t ${path_name(sec) | csyml}[${path_name(sec) | csym}_END -
49 ${path_name(sec) | csym}_START] = {
51 [ ${entry.name | csym} - ${path_name(sec) | csym}_START ] =
60 ${path_name(i) | csyml}
    [all...]
camera_metadata_tags.mako 52 ${path_name(i) | csym},
65 ${path_name(i) + '.start' | csym,ljust(30)} = ${path_name(i) | csym,pad(64)} << 16,
81 ${path_name(find_parent_section(entry)) | csym}_START,
86 ${path_name(sec) | csym}_END,
metadata_helpers.py 106 def path_name(node): function
  /external/chromium_org/third_party/android_crazy_linker/src/src/
crazy_linker_system.h 67 bool PathExists(const char* path_name);
71 bool PathIsFile(const char* path_name);
  /ndk/sources/android/crazy_linker/src/
crazy_linker_system.h 67 bool PathExists(const char* path_name);
71 bool PathIsFile(const char* path_name);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
runpy.py 185 def _get_importer(path_name):
189 importer = cache[path_name]
194 cache[path_name] = None
197 importer = hook(path_name)
207 importer = imp.NullImporter(path_name)
210 cache[path_name] = importer
223 def run_path(path_name, init_globals=None, run_name=None):
235 importer = _get_importer(path_name)
239 code = _get_code_from_file(path_name)
240 return _run_module_code(code, init_globals, run_name, path_name)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
runpy.py 185 def _get_importer(path_name):
189 importer = cache[path_name]
194 cache[path_name] = None
197 importer = hook(path_name)
207 importer = imp.NullImporter(path_name)
210 cache[path_name] = importer
223 def run_path(path_name, init_globals=None, run_name=None):
235 importer = _get_importer(path_name)
239 code = _get_code_from_file(path_name)
240 return _run_module_code(code, init_globals, run_name, path_name)
    [all...]
  /external/oprofile/libutil++/
file_manip.cpp 132 * @param path_name the path where we remove trailing '/'
134 * erase all trailing '/' in path_name except if the last '/' is at pos 0
136 static string erase_trailing_path_separator(string const & path_name)
138 string result(path_name);
172 string op_basename(string const & path_name)
174 string result = erase_trailing_path_separator(path_name);
file_manip.h 80 * @param path_name path
87 std::string op_basename(std::string const & path_name);
  /frameworks/compile/mclinker/unittests/
FactoriesTest.cpp 184 char path_name[100]; local
185 sprintf(path_name, "/proj/mtk%d", counter);
187 sys::fs::Path(string(path_name)),
201 char path_name[100]; local
202 sprintf(path_name, "/proj/mtk%d", counter);
204 sys::fs::Path(string(path_name)),
  /external/chromium_org/base/files/
file_path_watcher_kqueue.cc 112 std::string path_name; local
116 path_name = event_data->path_.value();
119 if (path_name.empty()) {
120 path_name = base::StringPrintf(
123 DLOG(ERROR) << "Error: " << kevents[i].data << " for " << path_name;
  /device/samsung/manta/liblights/
lights.c 175 char path_name[PATH_MAX]; local
182 err = sprintf(path_name, "%s/%s", LED_DIR, command);
190 fd = open(path_name, O_WRONLY);
194 ALOGE("failed to open %s!", path_name);
  /external/pdfium/core/include/fxge/
fx_ge_win32.h 23 FX_LPCWSTR path_name; member in struct:WINDIB_Open_Args_
  /external/chromium_org/cloud_print/virtual_driver/win/port_monitor/
port_monitor.cc 282 base::FilePath ReadPathFromRegistry(HKEY root, const wchar_t* path_name) {
285 if (SUCCEEDED(gcp_key.ReadValue(path_name, &data)) &&
292 base::FilePath ReadPathFromAnyRegistry(const wchar_t* path_name) {
293 base::FilePath result = ReadPathFromRegistry(HKEY_CURRENT_USER, path_name);
296 return ReadPathFromRegistry(HKEY_LOCAL_MACHINE, path_name);
  /external/pdfium/core/src/fxge/win32/
fx_win32_dib.cpp 128 args.path_name = filename;
167 HBITMAP hBitmap = (HBITMAP)LoadImageW(NULL, (wchar_t*)args.path_name, IMAGE_BITMAP, 0, 0, LR_LOADFROMFILE);
fx_win32_gdipext.cpp     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
forking.py 489 file, path_name, etc = imp.find_module(main_name, dirs)
495 '__parents_main__', file, path_name, etc
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
forking.py 489 file, path_name, etc = imp.find_module(main_name, dirs)
495 '__parents_main__', file, path_name, etc
  /libcore/luni/src/main/java/java/security/cert/
X509CertSelector.java 902 GeneralName path_name = new GeneralName(type, name); local
907 pathToNames.add(path_name);
958 GeneralName path_name= new GeneralName(type, name); local
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/
code.c 23 WCHAR path_name[MAX_PATH + 1]; local
29 path_len = GetTempPathW (MAX_PATH, path_name);
33 if (GetTempFileNameW (path_name, L"ps_", 0, file_name) == 0)
  /external/chromium_org/sync/syncable/
directory_unittest.cc 1537 std::string path_name; variable
    [all...]
  /external/chromium_org/chrome/browser/media_galleries/
media_galleries_preferences_unittest.cc 291 const std::string& path_name, const std::string& name,
293 base::FilePath path = MakeMediaGalleriesTestingPath(path_name);
    [all...]

Completed in 2496 milliseconds