HomeSort by relevance Sort by last modified time
    Searched refs:fullpath (Results 1 - 25 of 50) sorted by null

1 2

  /external/chromium_org/third_party/skia/gm/rebaseline_server/
rs_fixpypath.py 18 fullpath = os.path.join(TRUNK_DIRECTORY, subdir) variable
19 if fullpath not in sys.path:
20 sys.path.append(fullpath)
compare_to_expectations.py 189 fullpath = os.path.join(dirpath, matching_filename)
190 gm_json.WriteToFile(per_builder_dict, fullpath)
  /external/chromium_org/third_party/skia/tools/tests/
fix_pythonpath.py 18 fullpath = os.path.join(TRUNK_DIRECTORY, subdir) variable
19 if fullpath not in sys.path:
20 sys.path.append(fullpath)
  /external/lldb/test/pexpect-2.4/examples/
fix_cvs_files.py 77 fullpath = os.path.join (dirname, n)
78 if os.path.isdir(fullpath) or os.path.islink(fullpath):
80 if is_binary(fullpath):
81 if not is_kb_sticky (fullpath):
82 if VERBOSE: print fullpath
83 cvs_admin_kb (fullpath)
  /external/chromium_org/chrome/third_party/chromevox/third_party/closure-library/closure/bin/build/
treescan.py 73 fullpath = os.path.join(dirpath, filename)
75 if path_filter and not path_filter.match(fullpath):
78 yield os.path.normpath(fullpath)
  /external/chromium_org/build/
get_syzygy_binaries.py 219 fullpath = os.path.join(output_dir, relpath)
220 fulldir = os.path.dirname(fullpath)
222 if os.path.exists(fullpath):
224 if os.path.isdir(fullpath):
225 raise Exception('Directory exists where file expected: %s' % fullpath)
231 actual_md5 = _Md5(fullpath)
233 raise Exception('File has local changes: %s' % fullpath)
236 _LOGGER.debug('Deleting file "%s".', fullpath)
239 os.unlink(fullpath)
287 fullpath = os.path.normpath(os.path.join(fulldir, entry.filename)
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/w3c/
test_importer.py 235 fullpath = os.path.join(root, filename)
237 mimetype = mimetypes.guess_type(fullpath)
239 copy_list.append({'src': fullpath, 'dest': filename})
243 copy_list.append({'src': fullpath, 'dest': filename})
246 test_parser = TestParser(vars(self.options), filename=fullpath)
282 copy_list.append({'src': fullpath, 'dest': filename})
285 copy_list.append({'src': fullpath, 'dest': filename})
  /external/lldb/scripts/
sed-sources 201 my $fullpath = $File::Find::name;
206 if ($fullpath =~ /$ext_regex/i)
208 print "processing: '$fullpath'\n";
209 process_file ($fullpath);
213 print " ignoring: '$fullpath'\n";
  /external/fsck_msdos/
dir.c 100 static char *fullpath(struct dosDirEntry *);
170 fullpath(struct dosDirEntry *dir) function
407 fullpath(dir), dir->size, physicalSize);
419 fullpath(dir));
591 fullpath(dir));
717 fullpath(dir), 2);
756 fullpath(&dirent), 0);
772 fullpath(&dirent));
798 fullpath(&dirent));
802 fullpath(&dirent)
    [all...]
  /external/chromium_org/tools/cr/cr/
loader.py 73 fullpath = os.path.join(path, basename)
74 if os.path.isdir(fullpath):
  /external/lldb/scripts/Python/interface/
SBFileSpec.i 82 __swig_getmethods__["fullpath"] = __get_fullpath__
83 if _newclass: fullpath = property(__get_fullpath__, None, doc='''A read only property that returns the fullpath as a python string.''')
SBModule.i 427 if comp_unit.file.fullpath == key:
436 fullpath = comp_unit.file.fullpath
437 if fullpath:
438 re_match = key.search(fullpath)
SBTarget.i 781 if module.file.fullpath == key:
802 re_match = key.search(module.path.fullpath)
  /external/lldb/source/Plugins/SymbolFile/DWARF/
DWARFDebugLine.cpp 499 std::string fullpath; local
513 if (module_sp->RemapSourceFile (path, fullpath))
514 support_files.Append(FileSpec (fullpath.c_str(), false));
524 fullpath = cu_comp_dir;
526 if (*fullpath.rbegin() != '/')
527 fullpath += '/';
528 fullpath += include_directories[dir_idx];
532 fullpath = include_directories[dir_idx];
536 fullpath = cu_comp_dir;
539 if (!fullpath.empty()
    [all...]
  /external/chromium_org/ppapi/tests/extensions/media_galleries/
test_galleries.cc 61 pp::Var var_fullpath = var_dictionary_message.Get("fullPath");
70 PostMessage("FullPath was missing or not a string.");
73 std::string fullpath = var_fullpath.AsString(); local
89 return pp::FileRef(filesystem, fullpath.c_str());
93 // Extract the filesystem and fullPath from the message.
  /external/chromium_org/chrome/test/ispy/common/
ispy_utils.py 299 marker: String. Only objects whose fullpath starts lexicographically
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
data.py 243 def summary(self, fullpath=False):
247 lines. If `fullpath` is true, then the keys are the full pathnames of
252 if fullpath:
  /external/pdfium/core/src/fxge/android/
fpf_skiafontmgr.cpp 452 CFX_ByteString fullpath = path; local
453 fullpath += "/";
454 fullpath += filename;
456 ScanPath(fullpath);
458 ScanFile(fullpath);
  /external/skia/gm/rebaseline_server/
compare_to_expectations.py 179 fullpath = os.path.join(dirpath, matching_filename)
180 gm_json.WriteToFile(per_builder_dict, fullpath)
  /external/valgrind/main/none/tests/
cmdline1.stdout.exp 60 --fullpath-after= (with nothing after the '=')
62 --fullpath-after=string like --fullpath-after=, but only show the
cmdline2.stdout.exp 60 --fullpath-after= (with nothing after the '=')
62 --fullpath-after=string like --fullpath-after=, but only show the
  /external/pdfium/core/src/fxge/ge/
fx_ge_fontmap.cpp 1378 CFX_ByteString fullpath = path; local
    [all...]
  /external/clang/utils/
FindSpecRefs 823 fullpath = os.path.join(dirpath, filename)
824 references.extend(list(scanFile(fullpath, filename)))
    [all...]
  /external/chromium_org/third_party/cython/src/pyximport/
pyximport.py 149 fullpath = os.path.join(os.path.dirname(dependfile),
151 files.extend(glob.glob(fullpath))
  /external/valgrind/main/coregrind/m_debuginfo/
priv_image.h 62 DiImage* ML_(img_from_local_file)(const HChar* fullpath);

Completed in 1581 milliseconds

1 2