HomeSort by relevance Sort by last modified time
    Searched defs:file_contents (Results 1 - 15 of 15) sorted by null

  /external/chromium/chrome/common/extensions/
extension_action_unittest.cc 23 std::string file_contents; local
24 file_util::ReadFileToString(path, &file_contents);
26 reinterpret_cast<const unsigned char*>(file_contents.data());
30 bitmap = decoder.Decode(data, file_contents.length());
extension_unpacker.cc 48 std::string file_contents; local
50 !file_util::ReadFileToString(path, &file_contents)) {
56 reinterpret_cast<const unsigned char*>(file_contents.data());
58 SkBitmap bitmap = decoder.Decode(data, file_contents.length());
  /external/chromium/webkit/glue/
webdropdata.h 56 std::string file_contents; member in struct:WebDropData
  /external/chromium/chrome/browser/extensions/
file_reader_unittest.cc 61 std::string file_contents; local
62 bool file_exists = file_util::ReadFileToString(path, &file_contents);
73 EXPECT_EQ(file_contents, receiver.data());
image_loading_tracker.cc 56 std::string file_contents; local
58 if (path.empty() || !file_util::ReadFileToString(path, &file_contents)) {
65 reinterpret_cast<const unsigned char*>(file_contents.data());
68 *decoded = decoder.Decode(data, file_contents.length());
extension_updater_unittest.cc 753 std::string file_contents; local
754 EXPECT_TRUE(file_util::ReadFileToString(tmpfile_path, &file_contents));
755 EXPECT_TRUE(extension_data == file_contents);
876 std::string file_contents; local
878 &file_contents));
879 EXPECT_TRUE(extension_data2 == file_contents);
    [all...]
  /external/chromium/net/proxy/
proxy_resolver_perftest.cc 161 std::string file_contents; local
162 bool ok = file_util::ReadFileToString(path, &file_contents);
170 net::ProxyResolverScriptData::FromUTF8(file_contents), NULL);
proxy_resolver_v8_unittest.cc 105 std::string file_contents; local
106 bool ok = file_util::ReadFileToString(path, &file_contents);
115 return SetPacScript(ProxyResolverScriptData::FromUTF8(file_contents),
  /external/protobuf/src/google/protobuf/compiler/
importer_unittest.cc 364 string file_contents; local
368 file_contents.append(reinterpret_cast<const char*>(data), size);
371 EXPECT_EQ(expected_contents, file_contents);
command_line_interface_unittest.cc 390 string file_contents; local
391 if (!File::ReadFileToString(path, &file_contents)) {
394 if (!descriptor_set->ParseFromString(file_contents)) {
    [all...]
  /external/chromium/chrome/browser/download/
download_manager_unittest.cc 600 std::string file_contents; local
601 EXPECT_TRUE(file_util::ReadFileToString(new_path, &file_contents));
602 EXPECT_EQ(std::string(kTestData), file_contents); local
  /external/chromium/chrome/browser/ui/webui/
gpu_internals_ui.cc 103 void LoadTraceFileComplete(std::string* file_contents);
135 void LoadTraceFileCompleteProxy(std::string* file_contents) {
137 handler_->LoadTraceFileComplete(file_contents);
138 delete file_contents;
306 std::string* file_contents = new std::string(); local
307 if (!file_util::ReadFileToString(path_, file_contents))
313 file_contents));
387 void GpuMessageHandler::LoadTraceFileComplete(std::string* file_contents) {
391 javascript += UTF8ToWide(*file_contents);
net_internals_ui.cc 656 std::string file_contents; local
657 if (!file_util::ReadFileToString(path_, &file_contents))
660 new StringValue(file_contents));
    [all...]
  /external/chromium/chrome/browser/ui/webui/options/
extension_settings_handler.cc 234 std::string file_contents; local
237 &file_contents)) {
242 file_contents = ResourceBundle::GetSharedInstance().GetRawDataResource(
252 reinterpret_cast<const unsigned char*>(file_contents.data());
255 *decoded = decoder.Decode(data, file_contents.length());
266 file_contents.assign(reinterpret_cast<char*>(&output.front()),
272 base::Base64Encode(file_contents, &base64_encoded);
    [all...]
  /external/chromium/base/
file_util_unittest.cc 1389 const wchar_t file_contents[] = L"This is another target."; local
    [all...]

Completed in 603 milliseconds