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

1 2

  /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/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/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...]
SymbolFileDWARF.cpp 946 std::string fullpath(cu_comp_dir);
947 if (*fullpath.rbegin() != '/')
948 fullpath += '/';
949 fullpath += cu_die_name;
950 if (module_sp->RemapSourceFile (fullpath.c_str(), ramapped_file))
953 cu_file_spec.SetFile (fullpath.c_str(), false);
    [all...]
  /external/libvncserver/libvncserver/tightvnc-filetransfer/
filetransfermsg.c 130 char fullpath[PATH_MAX]; local
132 memset(fullpath, 0, PATH_MAX);
134 strcpy(fullpath, path);
136 strcat(fullpath, "/");
137 strcat(fullpath, pDirent->d_name);
139 if(stat(fullpath, &stat_buf) < 0) {
141 __FILE__, __FUNCTION__, fullpath);
148 " list failed\n", __FILE__, __FUNCTION__, fullpath);
158 "list failed\n", __FILE__, __FUNCTION__, fullpath);
  /external/chromium-trace/trace-viewer/third_party/Paste/paste/auth/
digest.py 137 fullpath = url_quote(SCRIPT_NAME(environ)) + url_quote(PATH_INFO(environ))
151 assert authpath.split("?", 1)[0] in fullpath
  /external/pdfium/core/src/fxge/android/
fpf_skiafontmgr.cpp 448 CFX_ByteString fullpath = path; local
449 fullpath += "/";
450 fullpath += filename;
452 ScanPath(fullpath);
454 ScanFile(fullpath);
  /external/valgrind/none/tests/
cmdline1.stdout.exp 66 --fullpath-after= (with nothing after the '=')
68 --fullpath-after=string like --fullpath-after=, but only show the
cmdline2.stdout.exp 66 --fullpath-after= (with nothing after the '=')
68 --fullpath-after=string like --fullpath-after=, but only show the
  /external/pdfium/core/src/fxge/ge/
fx_ge_fontmap.cpp 1335 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/selinux/policycoreutils/sandbox/
sandbox 162 def fullpath(cmd):
380 cmds[0] = fullpath(cmds[0])
  /external/valgrind/coregrind/m_debuginfo/
priv_image.h 62 DiImage* ML_(img_from_local_file)(const HChar* fullpath);
image.c 609 DiImage* ML_(img_from_local_file)(const HChar* fullpath)
615 fd = VG_(open)(fullpath, VKI_O_RDONLY, 0);
637 img->source.name = ML_(dinfo_strdup)("di.image.ML_iflf.2", fullpath);
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
EasyDialogs.py 730 fullpath = os.path.join(pardir_path, name_utf8)
732 return unicode(fullpath, 'utf8')
733 return tpwanted(fullpath)
  /external/icu/icu4c/source/test/intltest/
intltest.cpp 973 char fullpath[2048]; local
974 strcpy(fullpath, basePath);
975 strcat(fullpath, currName);
978 knownList = udbg_knownIssue_openU(knownList, ticket, fullpath, msg2.getTerminatedBuffer(), &firstForTicket, &firstForWhere);
    [all...]
  /external/lldb/examples/python/
crashlog.py 553 out_file.write('Path: %s\n' % (lldb.target.executable.fullpath))
580 # This will output the fullpath + line + column
601 out_file.write (' 0x%16.16x - 0x%16.16x %s (%s - ???) <%s> %s\n' % (text_segment_load_addr, text_segment_end_load_addr, identifier, module_version, module.GetUUIDString(), module.file.fullpath))
    [all...]
  /external/lldb/examples/darwin/heap_find/
heap.py     [all...]
  /external/pdfium/core/include/fpdfapi/
fpdf_parser.h 799 void FPDF_FileSpec_SetWin32Path(CPDF_Object* pFileSpec, const CFX_WideString& fullpath);
  /art/tools/
cpplint.py     [all...]
  /external/compiler-rt/lib/sanitizer_common/scripts/
cpplint.py     [all...]

Completed in 1570 milliseconds

1 2