/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 (!base::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/remoting/host/win/ |
elevated_controller.cc | 126 std::string file_content(buffer.get(), size); 128 base::JSONReader::Read(file_content, base::JSON_ALLOW_TRAILING_COMMAS)); 322 std::string file_content; local 323 base::JSONWriter::Write(config.get(), &file_content); 325 *config_out = ::SysAllocString(UTF8ToUTF16(file_content).c_str()); 361 std::string file_content = UTF16ToUTF8( local 364 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_v1/ |
fake_drive_service_helper.h | 61 std::string* file_content);
|
fake_drive_service_helper.cc | 229 std::string* file_content) { 249 return base::ReadFileToString(temp_file, file_content)
|
drive_file_sync_service_sync_unittest.cc | 336 std::string file_content; local 338 fake_drive_helper_->ReadFile(file_id, &file_content)); 340 file_system->VerifyFile(url, file_content));
|
api_util_unittest.cc | 366 std::string file_content = base::StringPrintf("test content %d", i); local 368 SetUpFile(origin_root_id, file_content, file_title, &file); 407 std::string file_content = base::StringPrintf("test content %d", i); local 409 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 (!base::ReadFileToString(path, &file_content)) 120 std::string sha1 = base::SHA1HashString(file_content);
|
/external/chromium_org/remoting/host/setup/ |
daemon_controller_delegate_win.cc | 183 base::string16 file_content( 186 base::JSONReader::Read(UTF16ToUTF8(file_content),
|