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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/tools/valgrind/asan/
asan_symbolize.py 12 def fix_filename(file_name):
14 file_name = re.sub(".*" + path_to_cut, "", file_name)
15 file_name = re.sub(".*asan_[a-z_]*.cc:[0-9]*", "_asan_rtl_", file_name)
16 file_name = re.sub(".*crtstuff.c:0", "???:0", file_name)
17 return file_name
  /external/chromium_org/sync/util/
logging.cc 15 from_here.file_name(), ::strlen(from_here.file_name())));
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
ANTLRFileStream.pm 10 has 'file_name' => (
20 my $file_name = $args->{file_name};
21 if (!defined $file_name) {
28 open $fh, "<:encoding($encoding)", $file_name
29 or croak "Can't open $file_name: $!";
32 open $fh, '<', $file_name
33 or croak "Can't open $file_name: $!";
49 my ($self, $file_name, $encoding) = @_;
51 if (!defined $file_name) {
    [all...]
  /external/chromium/base/i18n/
file_util_icu.h 16 // Returns true if file_name does not have any illegal character. The input
18 bool IsFilenameLegal(const string16& file_name);
20 // Replaces characters in 'file_name' that are illegal for file names with
21 // 'replace_char'. 'file_name' must not be a full or relative path, but just the
23 // trailing whitespace in 'file_name' is removed.
25 // file_name == "bad:file*name?.txt", changed to: "bad-file-name-.txt" when
27 void ReplaceIllegalCharactersInPath(FilePath::StringType* file_name,
file_util_icu.cc 133 bool IsFilenameLegal(const string16& file_name) {
134 return IllegalCharacters::GetInstance()->containsNone(file_name);
137 void ReplaceIllegalCharactersInPath(FilePath::StringType* file_name,
139 DCHECK(file_name);
144 TrimWhitespace(*file_name, TRIM_ALL, file_name);
148 while (cursor < static_cast<int>(file_name->size())) {
153 U8_NEXT(file_name->data(), cursor, static_cast<int>(file_name->length()),
157 U16_NEXT(file_name->data(), cursor, static_cast<int>(file_name->length())
    [all...]
  /external/chromium_org/base/i18n/
file_util_icu.h 16 // Returns true if file_name does not have any illegal character. The input
18 BASE_I18N_EXPORT bool IsFilenameLegal(const string16& file_name);
20 // Replaces characters in 'file_name' that are illegal for file names with
21 // 'replace_char'. 'file_name' must not be a full or relative path, but just the
23 // trailing whitespace in 'file_name' is removed.
25 // file_name == "bad:file*name?.txt", changed to: "bad-file-name-.txt" when
28 base::FilePath::StringType* file_name,
37 // Calculates the canonical file-system representation of |file_name| base name.
38 // Modifies |file_name| in place. No-op if not on ChromeOS.
39 BASE_I18N_EXPORT void NormalizeFileNameEncoding(base::FilePath* file_name);
    [all...]
file_util_icu.cc 87 bool IsFilenameLegal(const string16& file_name) {
88 return IllegalCharacters::GetInstance()->containsNone(file_name);
91 void ReplaceIllegalCharactersInPath(base::FilePath::StringType* file_name,
93 DCHECK(file_name);
98 TrimWhitespace(*file_name, TRIM_ALL, file_name);
102 while (cursor < static_cast<int>(file_name->size())) {
107 U8_NEXT(file_name->data(), cursor, static_cast<int>(file_name->length()),
111 U16_NEXT(file_name->data(), cursor, static_cast<int>(file_name->length())
    [all...]
  /external/chromium_org/base/files/
memory_mapped_file.cc 16 bool MemoryMappedFile::Initialize(const FilePath& file_name) {
20 if (!MapFileToMemory(file_name)) {
46 bool MemoryMappedFile::MapFileToMemory(const FilePath& file_name) {
47 file_ = CreatePlatformFile(file_name, PLATFORM_FILE_OPEN | PLATFORM_FILE_READ,
51 DLOG(ERROR) << "Couldn't open " << file_name.AsUTF8Unsafe();
memory_mapped_file.h 32 bool Initialize(const FilePath& file_name);
40 bool InitializeAsImageSection(const FilePath& file_name);
51 bool MapFileToMemory(const FilePath& file_name);
  /external/protobuf/src/google/protobuf/compiler/javamicro/
javamicro_params.h 76 bool has_java_package(const string& file_name) const {
77 return java_packages_.find(file_name)
80 void set_java_package(const string& file_name,
82 java_packages_[file_name] = java_package;
84 const string& java_package(const string& file_name) const {
87 itr = java_packages_.find(file_name);
98 bool has_java_outer_classname(const string& file_name) const {
99 return java_outer_classnames_.find(file_name)
102 void set_java_outer_classname(const string& file_name,
104 java_outer_classnames_[file_name] = java_outer_classname
    [all...]
  /external/protobuf/src/google/protobuf/compiler/javanano/
javanano_params.h 75 bool has_java_package(const string& file_name) const {
76 return java_packages_.find(file_name)
79 void set_java_package(const string& file_name,
81 java_packages_[file_name] = java_package;
83 const string& java_package(const string& file_name) const {
86 itr = java_packages_.find(file_name);
97 bool has_java_outer_classname(const string& file_name) const {
98 return java_outer_classnames_.find(file_name)
101 void set_java_outer_classname(const string& file_name,
103 java_outer_classnames_[file_name] = java_outer_classname
    [all...]
  /external/chromium_org/courgette/
base_test_unittest.cc 20 std::string BaseTest::FileContents(const char* file_name) const {
22 file_path = file_path.AppendASCII(file_name);
33 std::list<std::string>::iterator file_name = file_names.begin(); local
35 while (file_name != file_names.end()) {
36 result += FileContents(file_name->c_str());
37 file_name++;
  /external/bison/lib/
closeout.c 36 static const char *file_name; variable
43 file_name = file;
113 if (file_name)
114 error (0, errno, "%s: %s", quotearg_colon (file_name),
  /external/bluetooth/bluedroid/btif/include/
btif_config_util.h 53 int btif_config_save_file(const char* file_name);
54 int btif_config_load_file(const char* file_name);
  /frameworks/opt/telephony/tools/
tdi 5 file_name='tdi'
14 echo "Usage: $file_name $cmd <dc> <count> <cause> <retry-time>"
  /external/chromium_org/chrome/test/functional/media/
media_stat_perf.py 48 for file_name in _TEST_VIDEOS:
52 file_url = self.GetFileURLForDataPath(file_name)
64 file_name = os.path.basename(file_name)
65 pyauto_utils.PrintPerfResult('cpu', file_name, cpu_usage, '%')
66 pyauto_utils.PrintPerfResult('memory', file_name, mem_usage_mb, 'KB')
76 pyauto_utils.PrintPerfResult('fps', file_name, decoded_fps, 'fps')
77 pyauto_utils.PrintPerfResult('dropped_fps', file_name, dropped_fps, 'fps')
78 pyauto_utils.PrintPerfResult('dropped_frames', file_name, dropped_frames,
media_scrub_perf.py 39 file_name = self.GetFileURLForDataPath(
44 self.CallJavascriptFunc('startTest', [file_name])
57 pyauto_utils.PrintPerfResult('scrubbing', os.path.basename(file_name) +
59 pyauto_utils.PrintPerfResult('scrubbing', os.path.basename(file_name) +
61 pyauto_utils.PrintPerfResult('scrubbing', os.path.basename(file_name) +
  /external/chromium_org/net/spdy/
spdy_session_test_util.cc 13 const std::string& file_name,
16 file_name_(file_name),
31 if (EndsWith(pending_task.posted_from.file_name(), file_name_, true) &&
  /external/chromium_org/net/disk_cache/simple/
simple_index_file_posix.cc 41 const std::string file_name(result->d_name);
42 if (file_name == "." || file_name == "..")
45 base::FilePath(file_name));
  /external/chromium_org/win8/test/
open_with_dialog_async.h 28 const string16& file_name,
  /external/chromium_org/tools/json_comment_eater/
json_comment_eater_test.py 15 def read(file_name):
16 with open(file_name, 'r') as f:
  /external/chromium_org/sandbox/win/sandbox_poc/pocdll/
handles.cc 115 FILE_NAME_INFORMATION *file_name = NULL; local
126 if (file_name) {
127 delete[] reinterpret_cast<BYTE*>(file_name);
128 file_name = NULL;
133 file_name = reinterpret_cast<FILE_NAME_INFORMATION *>(
137 file_name,
143 if (file_name) {
144 delete[] file_name;
145 file_name = NULL;
150 if (file_name) {
    [all...]
  /external/elfutils/libdwfl/
dwfl_build_id_find_elf.c 57 __libdwfl_open_by_build_id (Dwfl_Module *mod, bool debug, char **file_name)
59 /* If *FILE_NAME was primed into the module, leave it there
116 if (*file_name != NULL)
117 free (*file_name);
118 *file_name = canonicalize_file_name (name);
119 if (*file_name == NULL)
121 *file_name = name;
149 char **file_name, Elf **elfp)
152 int fd = __libdwfl_open_by_build_id (mod, false, file_name);
166 free (*file_name);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/
generate_devtools_html.py 37 (dir_name, file_name) = os.path.split(resource_path)
38 if (file_name.endswith('.js')):
39 return ' <script type="text/javascript" src="%s"></script>\n' % file_name
40 elif (file_name.endswith('.css')):
41 return ' <link rel="stylesheet" type="text/css" href="%s">\n' % file_name
  /external/chromium_org/webkit/browser/fileapi/
local_file_util_unittest.cc 64 FileSystemURL CreateURL(const std::string& file_name) {
66 kOrigin, kFileSystemType, base::FilePath().FromUTF8Unsafe(file_name));
69 base::FilePath LocalPath(const char *file_name) {
72 file_util()->GetLocalFilePath(context.get(), CreateURL(file_name), &path);
76 bool FileExists(const char *file_name) {
77 return base::PathExists(LocalPath(file_name)) &&
78 !base::DirectoryExists(LocalPath(file_name));
81 bool DirectoryExists(const char *file_name) {
82 return base::DirectoryExists(LocalPath(file_name));
85 int64 GetSize(const char *file_name) {
125 const char *file_name = "test_file"; local
171 const char *file_name = "foobar"; local
184 const char *file_name = "test_file"; local
238 const char *file_name = "truncated"; local
    [all...]

Completed in 846 milliseconds

1 2 3 4 5 6 7 8 91011>>