/external/chromium_org/native_client_sdk/src/build_tools/ |
build_updater.py | 79 This function also will convert destinations from directories into filenames. 87 the destinations have been changed from directories to filenames.
|
/external/chromium_org/net/base/ |
directory_lister.cc | 28 // comparison function on the filenames for sorting in the user's locale. 65 // comparison function on the filenames for sorting in the user's locale.
|
/external/chromium_org/tools/gn/ |
path_output_unittest.cc | 74 // Spaces and $ in filenames. 91 // Spaces in filenames should get quoted.
|
/external/chromium_org/tools/grit/grit/gather/ |
interface.py | 107 """Returns a set of all filenames inlined by this gatherer.""" 156 '''Sets a function for rewriting filenames before gathering.'''
|
/external/chromium_org/tools/grit/ |
grit_info.py | 58 for root, dirs, filenames in os.walk(grit_root_dir): 59 grit_src = [os.path.join(root, f) for f in filenames
|
/external/chromium_org/tools/telemetry/docs/ |
telemetry.core.discover.html | 39 pattern: Unix shell-style pattern for filtering the filenames to import.<br> 50 pattern: Unix shell-style pattern for filtering the filenames to import.<br>
|
/external/chromium_org/tools/telemetry/telemetry/page/ |
page_set.py | 74 for dirpath, _, filenames in os.walk(serving_dir): 75 for filename in filenames:
|
/external/chromium_org/ui/base/dragdrop/ |
os_exchange_data_provider_aurax11.h | 64 const std::vector<OSExchangeData::FileInfo>& filenames) OVERRIDE; 71 std::vector<OSExchangeData::FileInfo>* filenames) const OVERRIDE;
|
os_exchange_data_provider_win.h | 155 const std::vector<OSExchangeData::FileInfo>& filenames); 168 std::vector<OSExchangeData::FileInfo>* filenames) const;
|
/external/clang/include/clang/Basic/ |
SourceManagerInternals.h | 78 /// \brief Map used to assign unique IDs to filenames in \#line directives. 80 /// This allows us to unique the filenames that
|
/external/openfst/src/include/fst/extensions/far/ |
info.h | 52 void FarInfo(const vector<string> &filenames, const string &begin_key, 54 FarReader<Arc> *far_reader = FarReader<Arc>::Open(filenames);
|
/external/protobuf/python/ |
setup.py | 90 for (dirpath, dirnames, filenames) in os.walk("."): 91 for filename in filenames:
|
/ndk/sources/host-tools/make-3.81/ |
README.DOS | 8 1. Supports long filenames when run from DOS box on Windows 9x. 42 unzip program that supports long filenames in zip files. After 51 2000, use an unzip program that supports long filenames in zip 256 4. Letter-case in filenames. 263 functions honor the letter-case of the filenames they get from 264 the OS, except that by default, they down-case 8+3 DOS filenames 266 many Makefiles otherwise. (The details of which filenames are 277 get the 8+3 DOS filenames in upper case, set FNCASE=y in the
|
/ndk/sources/host-tools/nawk-20071023/ |
main.c | 50 char *pfile[MAX_PFILE]; /* program filenames from -f's */ 51 int npfile = 0; /* number of filenames */
|
/packages/apps/UnifiedEmail/src/org/apache/commons/io/filefilter/ |
NameFileFilter.java | 26 * Filters filenames for a certain name.
49 /** The filenames to search for */
|
/external/chromium_org/chrome/test/functional/ |
omnibox.py | 133 """Test omnibox query with filenames containing special chars. 139 # We got .zip filenames. Change them to .html. 152 # Temp dir for hosting crazy filenames. 154 # Windows has a dual nature dealing with unicode filenames. 157 # filenames. This messes up things.
|
/external/chromium_org/third_party/icu/source/tools/icupkg/ |
icupkg.cpp | 72 "or if the input and output filenames differ,\n" 87 "The filenames can be absolute, or relative to the source/dest dir paths.\n" 110 "\tor a .txt filename with a list of item filenames,\n" 143 "\tThe paths are only prepended to item filenames while adding or\n" 144 "\textracting items, not to ICU .dat package or list filenames.\n"
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/ |
config.py | 156 def _clean(self, *filenames): 157 if not filenames: 158 filenames = self.temp_files 160 log.info("removing: %s", ' '.join(filenames)) 161 for filename in filenames:
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/ |
filelist.py | 24 list of filenames currently being built/filtered/manipulated 188 """Select strings (presumably filenames) from 'self.files' that 200 If 'prefix' is supplied, then only filenames starting with 'prefix' 233 """Remove strings (presumably filenames) from 'files' that match 257 """Find all files under 'dir' and return the list of full filenames
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/ |
config.py | 156 def _clean(self, *filenames): 157 if not filenames: 158 filenames = self.temp_files 160 log.info("removing: %s", ' '.join(filenames)) 161 for filename in filenames:
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/ |
filelist.py | 24 list of filenames currently being built/filtered/manipulated 188 """Select strings (presumably filenames) from 'self.files' that 200 If 'prefix' is supplied, then only filenames starting with 'prefix' 233 """Remove strings (presumably filenames) from 'files' that match 257 """Find all files under 'dir' and return the list of full filenames
|
/external/llvm/lib/DebugInfo/ |
DWARFDebugLine.cpp | 39 if (!FileNames.empty()) { 43 for (uint32_t i = 0; i < FileNames.size(); ++i) { 44 const FileNameEntry& fileEntry = FileNames[i]; 206 prologue->FileNames.push_back(fileEntry); 310 prologue->FileNames.push_back(fileEntry); 608 if (FileIndex == 0 || FileIndex > Prologue.FileNames.size()) 610 const FileNameEntry &Entry = Prologue.FileNames[FileIndex - 1];
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
ConfigParser.py | 45 read(filenames) 285 def read(self, filenames): 286 """Read and parse a filename or a list of filenames. 297 if isinstance(filenames, basestring): 298 filenames = [filenames] 300 for filename in filenames:
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
ConfigParser.py | 45 read(filenames) 285 def read(self, filenames): 286 """Read and parse a filename or a list of filenames. 297 if isinstance(filenames, basestring): 298 filenames = [filenames] 300 for filename in filenames:
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/common/ |
xmlconfig.c | 948 char *filenames[2] = {"/etc/drirc", NULL}; local 962 filenames[1] = MALLOC (len + 7+1); 963 if (filenames[1] == NULL) 966 memcpy (filenames[1], home, len); 967 memcpy (filenames[1] + len, "/.drirc", 7+1); 973 if (filenames[i] == NULL) 980 userData.name = filenames[i]; 992 if (filenames[1]) 993 FREE (filenames[1]); [all...] |