HomeSort by relevance Sort by last modified time
    Searched refs:file_content (Results 1 - 18 of 18) sorted by null

  /external/chromium_org/tools/gyp/test/actions-bare/
gyptest-bare.py 19 file_content = 'Hello from bare.py\n' variable
21 test.built_file_must_match('out.txt', file_content, chdir='relocate/src')
  /external/chromium_org/tools/gyp/test/actions-none/
gyptest-none.py 19 file_content = 'foo.cc\n' variable
21 test.built_file_must_match('fake.out', file_content, chdir='relocate/src')
  /external/chromium_org/tools/gyp/test/actions-subdir/
gyptest-action.py 20 file_content = 'Hello from make-file.py\n' variable
23 test.built_file_must_match('file.out', file_content, chdir='src')
  /external/chromium_org/tools/gyp/test/additional-targets/
gyptest-additional.py 27 file_content = 'Hello from emit.py\n' variable
28 test.built_file_must_match('out2.txt', file_content, chdir=chdir)
45 file_content = 'Hello from emit.py\n' variable
  /external/skia/tools/
sanitize_source_files.py 110 def CopywriteChecker(file_content, unused_file_path):
114 return file_content
117 def EOFOneAndOnlyOneNewlineAdder(file_content, file_path):
119 if file_content and (file_content[-1] != '\n' or file_content[-2:-1] == '\n'):
120 file_content = file_content.rstrip()
121 file_content += '\n'
123 return file_content
    [all...]
  /external/chromium_org/remoting/host/
json_host_config.cc 28 std::string file_content; local
29 if (!file_util::ReadFileToString(filename_, &file_content)) {
34 return SetSerializedData(file_content);
  /external/chromium_org/chrome/tools/
webforms_aggregator_unittests.py 134 file_content = {}
135 file_content[self.files['site1_home']] = self.HOME_CONTENT % (
140 file_content[self.files['site1_page1']] = self.SIMPLE_PAGE_CONTENT % (
146 file_content[self.files['site1_page2']] = self.SIMPLE_PAGE_CONTENT % (
152 file_content[self.files['site1_page3']] = self.SIMPLE_PAGE_CONTENT % (
158 file_content[self.files['site1_signin']] = self.SIGNIN_CONTENT % (
164 file_content[self.files['site1_reg']] = self.REG_CONTENT % (
167 for filename, content in file_content.iteritems():
183 file_content = {}
184 file_content[self.files['site2_home']] = self.HOME_CONTENT %
    [all...]
  /external/chromium_org/chrome/browser/chromeos/
swap_metrics.cc 263 std::string file_content; local
264 if (!file_util::ReadFileToString(FilePath(path), &file_content)) {
269 size_t line_count = Tokenize(file_content, "\n", &lines);
298 std::string file_content; local
299 if (!file_util::ReadFileToString(FilePath(path), &file_content)) {
303 size_t tokens_count = Tokenize(file_content, delimiters, tokens);
305 LOG(WARNING) << "unexpected content of " << path << ": " << file_content; local
  /external/chromium_org/remoting/host/win/
elevated_controller.cc 125 std::string file_content(buffer.get(), size);
127 base::JSONReader::Read(file_content, base::JSON_ALLOW_TRAILING_COMMAS));
316 std::string file_content; local
317 base::JSONWriter::Write(config.get(), &file_content);
319 *config_out = ::SysAllocString(UTF8ToUTF16(file_content).c_str());
355 std::string file_content = UTF16ToUTF8( local
358 return WriteConfig(file_content.c_str(), file_content.size(), owner_window_);
  /external/chromium_org/chrome/test/chromedriver/third_party/googlecode/
googlecode_upload.py 142 file_content = f.read()
152 file_content,
  /external/chromium_org/chrome/browser/sync_file_system/drive_backend/
fake_drive_service_helper.h 59 std::string* file_content);
fake_drive_service_helper.cc 240 std::string* file_content) {
260 return file_util::ReadFileToString(temp_file, file_content)
drive_file_sync_service_sync_unittest.cc 393 std::string file_content; local
395 fake_drive_helper_->ReadFile(file_id, &file_content));
397 file_system->VerifyFile(url, file_content));
api_util_unittest.cc 515 std::string file_content = base::StringPrintf("test content %d", i); local
517 SetUpFile(origin_root_id, file_content, file_title, &file);
555 std::string file_content = base::StringPrintf("test content %d", i); local
557 SetUpFile(origin_root_id, file_content, file_title, &file);
  /external/chromium_org/chrome/browser/chromeos/imageburner/
burn_manager.cc 74 ConfigFile::ConfigFile(const std::string& file_content) {
75 reset(file_content);
81 void ConfigFile::reset(const std::string& file_content) {
85 Tokenize(file_content, "\n", &lines);
burn_manager.h 88 explicit ConfigFile(const std::string& file_content);
93 void reset(const std::string& file_content);
  /external/chromium_org/content/common/
plugin_list_posix.cc 117 std::string file_content; local
118 if (!file_util::ReadFileToString(path, &file_content))
120 std::string sha1 = base::SHA1HashString(file_content);
  /external/chromium_org/remoting/host/setup/
daemon_controller_win.cc 460 string16 file_content(static_cast<BSTR>(host_config), host_config.Length());
462 base::JSONReader::Read(UTF16ToUTF8(file_content),

Completed in 354 milliseconds