Searched defs:filename (Results 226 - 250 of 1231) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/safe_browsing/
H A Dsafe_browsing_store_unittest_helper.cc321 const base::FilePath& filename) {
323 EXPECT_FALSE(base::PathExists(filename));
348 EXPECT_TRUE(base::PathExists(filename));
350 EXPECT_FALSE(base::PathExists(filename));
320 SafeBrowsingStoreTestDelete(SafeBrowsingStore* store, const base::FilePath& filename) argument
/external/chromium_org/chrome/browser/ui/webui/
H A Dprofiler_ui.cc79 std::string filename = path.empty() ? "profiler.html" : path; variable
82 file_path = base_path.AppendASCII(filename);
/external/chromium_org/chrome/utility/media_galleries/
H A Dpicasa_album_table_reader.cc104 std::string filename; local
105 if (!filename_column.ReadString(i, &filename) || filename.empty())
109 base::FilePath(base::FilePath::FromUTF8Unsafe(filename));
/external/chromium_org/content/browser/
H A Dsession_history_browsertest.cc100 void NavigateAndCheckTitle(const char* filename, argument
104 NavigateToURL(shell(), GetURL(filename));
/external/chromium_org/extensions/common/
H A Dextension_resource_unittest.cc123 const char* filename = "res.ico"; local
124 base::FilePath root_resource = temp.path().AppendASCII(filename);
141 ASSERT_TRUE(file_util::WriteFile(make_path.AppendASCII(filename),
148 base::FilePath().AppendASCII(filename));
160 EXPECT_EQ(ToLower(base::FilePath().AppendASCII(filename).value()),
/external/chromium_org/media/filters/
H A Daudio_file_reader_unittest.cc23 void Initialize(const char* filename) { argument
24 data_ = ReadTestDataFile(filename);
H A Dffmpeg_glue_unittest.cc78 void Initialize(const char* filename) { argument
79 data_ = ReadTestDataFile(filename);
/external/chromium_org/native_client_sdk/src/libraries/xray/
H A Dxray.h52 const char* filename,
96 const char* filename,
95 XRaySaveReport(struct XRayTraceCapture* capture, const char* filename, float percent_cutoff, int cycle_cutoff) argument
/external/chromium_org/net/ftp/
H A Dftp_directory_listing_parser_unittest.h21 const char* filename; member in struct:net::FtpDirectoryListingParserTest::SingleLineTestData
46 EXPECT_EQ(UTF8ToUTF16(test_case.filename), entry.name);
/external/chromium_org/net/http/
H A Dhttp_content_disposition.h35 // Has a valid non-empty 'filename' attribute.
38 // Has a valid non-empty 'filename*' attribute.
41 // The following fields are properties of the 'filename' attribute:
60 const std::string& filename() const { return filename_; } function in class:net::HttpContentDisposition
/external/chromium_org/net/tools/dump_cache/
H A Durl_to_filename_encoder.h5 // URL filename encoder goals:
55 // empty and non-reserved filename).
89 // Helper class for converting a URL into a filename.
92 // Given a |url| and a |base_path|, returns a filename which represents this
99 std::string filename; local
102 EncodeSegment(base_path, url_no_scheme, '/', &filename);
104 ReplaceAll(&filename, "/", "\\");
112 filename.append(base_path);
113 filename.append(host);
115 filename
[all...]
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dwinfirewall.cc92 bool WinFirewall::QueryAuthorized(const char* filename, bool* authorized) argument
94 return QueryAuthorizedW(ToUtf16(filename).c_str(), authorized);
97 bool WinFirewall::QueryAuthorizedW(const wchar_t* filename, bool* authorized) argument
105 _bstr_t bfilename = filename;
133 bool WinFirewall::AddApplication(const char* filename, argument
137 return AddApplicationW(ToUtf16(filename).c_str(),
141 bool WinFirewall::AddApplicationW(const wchar_t* filename, argument
154 _bstr_t bstr = filename;
/external/chromium_org/third_party/libjingle/source/talk/media/devices/
H A Dfilevideocapturer_unittest.cc47 bool OpenFile(const std::string& filename) { argument
48 return capturer_->Init(cricket::GetTestFilePath(filename));
/external/chromium_org/third_party/libxml/src/
H A DtestAutomata.c30 testRegexpFile(const char *filename) { argument
44 input = fopen(filename, "r");
47 "Cannot open %s for reading\n", filename);
H A DtestReader.c66 static void handleFile(const char *filename) { argument
75 reader = xmlNewTextReaderFilename(filename);
96 printf("%s : failed to parse\n", filename);
98 printf("%s : %d elements, %d attributes\n", filename, elem, attrs);
100 fprintf(stderr, "Unable to open %s\n", filename);
H A DtestXPath.c116 testXPathFile(const char *filename) { argument
121 input = fopen(filename, "r");
124 "Cannot open %s for reading\n", filename);
147 char *filename = NULL; local
167 filename = argv[++i];
180 if (filename == NULL)
183 document = xmlReadFile(filename,NULL,XML_PARSE_COMPACT);
209 printf("\t--input filename : or\n");
210 printf("\t-i filename : read the document from filename\
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_debug_refcnt.c132 const char* filename = debug_get_option("GALLIUM_REFCNT_LOG", NULL); local
133 if(filename && filename[0])
134 stream = fopen(filename, "wt");
/external/chromium_org/third_party/npapi/npspy/windows/
H A Dgui_log.cpp107 char filename[_MAX_PATH]; local
108 GetDlgItemText(hWnd, IDC_EDIT_FILE, filename, strlen(filename));
109 logger->setToFile(BST_CHECKED == IsDlgButtonChecked(hWnd, IDC_CHECK_TOFILE), filename);
/external/chromium_org/third_party/openssl/openssl/crypto/threads/
H A Dth-lock.c258 char filename[20]; local
260 strcpy(filename,"/tmp/mttest.XXXXXX");
261 mktemp(filename);
267 arena=usinit(filename);
268 unlink(filename);
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_plugin_unittest.cc73 void TryInsert(const string& filename, const string& insertion_point, argument
76 context->OpenForInsert(filename, insertion_point));
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/java/
H A Djava_plugin_unittest.cc61 string filename = "Test.java"; local
62 TryInsert(filename, "outer_class_scope", context);
63 TryInsert(filename, "class_scope:foo.Bar", context);
64 TryInsert(filename, "class_scope:foo.Bar.Baz", context);
65 TryInsert(filename, "builder_scope:foo.Bar", context);
66 TryInsert(filename, "builder_scope:foo.Bar.Baz", context);
67 TryInsert(filename, "enum_scope:foo.Qux", context);
71 void TryInsert(const string& filename, const string& insertion_point, argument
74 context->OpenForInsert(filename, insertion_point));
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
H A Dplugin.cc72 virtual io::ZeroCopyOutputStream* Open(const string& filename) { argument
74 file->set_name(filename);
79 const string& filename, const string& insertion_point) {
81 file->set_name(filename);
78 OpenForInsert( const string& filename, const string& insertion_point) argument
H A Dzip_writer.cc139 bool ZipWriter::Write(const string& filename, const string& contents) { argument
142 info.name = filename;
143 uint16 filename_size = filename.size();
163 output.WriteString(filename); // file name
176 const string &filename = files_[i].name; local
177 uint16 filename_size = filename.size();
199 output.WriteString(filename); // file name
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/python/
H A Dpython_plugin_unittest.cc68 void TryInsert(const string& filename, const string& insertion_point, argument
71 context->OpenForInsert(filename, insertion_point));
/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Dmessage_unittest.cc108 string filename = TestSourceDir() + local
110 int file = open(filename.c_str(), O_RDONLY | O_BINARY);
120 string filename = local
123 int file = open(filename.c_str(), O_RDONLY | O_BINARY);

Completed in 437 milliseconds

1234567891011>>