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

1 2 3

  /external/chromium_org/build/toolchain/mac/
setup_toolchain.py 12 with open(source_path) as source_file:
13 tool_source = source_file.readlines()
  /external/chromium_org/tools/json_schema_compiler/
features_cc_generator.py 12 def Generate(self, feature_defs, source_file, namespace):
13 return _Generator(feature_defs, source_file, namespace).Generate()
19 def __init__(self, feature_defs, source_file, namespace):
21 self._source_file = source_file
22 self._source_file_filename, _ = os.path.splitext(source_file)
features_h_generator.py 12 def Generate(self, features, source_file, namespace):
13 return _Generator(features, source_file, namespace).Generate()
19 def __init__(self, features, source_file, namespace):
21 self._source_file = source_file
22 self._source_file_filename, _ = os.path.splitext(source_file)
model.py 30 def AddNamespace(self, json, source_file, include_compiler_options=False):
34 source_file,
85 - |source_file| the file that contained the namespace definition
86 - |source_file_dir| the directory component of |source_file|
87 - |source_file_filename| the filename component of |source_file|
97 def __init__(self, json, source_file, include_compiler_options=False):
106 self.source_file = source_file
107 self.source_file_dir, self.source_file_filename = os.path.split(source_file)
495 hierarchy.insert(0, ' in %s' % entity.source_file)
    [all...]
  /external/chromium_org/tools/gn/
function_read_file.cc 54 SourceFile source_file = cur_dir.ResolveRelativeFile(args[0].string_value()); local
56 scope->settings()->build_settings()->GetFullPath(source_file);
function_write_file.cc 54 SourceFile source_file = cur_dir.ResolveRelativeFile(args[0].string_value()); local
57 source_file.value(), args[0], err))
72 scope->settings()->build_settings()->GetFullPath(source_file);
loader_unittest.cc 33 void AddCannedResponse(const SourceFile& source_file,
71 void MockInputFileManager::AddCannedResponse(const SourceFile& source_file,
74 canned->input_file.reset(new InputFile(source_file));
86 canned_responses_[source_file] = linked_ptr<CannedResult>(canned);
  /external/chromium_org/chrome/installer/util/
duplicate_tree_detector_unittest.cc 140 base::FilePath source_file(temp_source_dir_.path());
141 source_file = source_file.AppendASCII("F1");
142 CreateTextFile(source_file.MaybeAsASCII(), text_content_1_);
147 ASSERT_TRUE(installer::test::CopyFileHierarchy(source_file, dest_file));
154 EXPECT_TRUE(installer::IsIdenticalFileHierarchy(source_file, dest_file));
155 EXPECT_FALSE(installer::IsIdenticalFileHierarchy(source_file, other_file));
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
execfile.py 97 source_file = open_source(filename)
102 source = source_file.read()
104 source_file.close()
html.py 114 source_file = cu.source_file()
116 source = source_file.read()
118 source_file.close()
annotate.py 54 source = cu.source_file()
codeunit.py 103 def source_file(self): member in class:CodeUnit
  /external/chromium_org/tools/clang/scripts/
test_tool.py 48 actual_files = ['-'.join([source_file.rsplit('-', 2)[0], 'actual.cc'])
49 for source_file in source_files]
50 expected_files = ['-'.join([source_file.rsplit('-', 2)[0], 'expected.cc'])
51 for source_file in source_files]
  /art/runtime/mirror/
throwable.cc 72 const char* source_file = mh.GetDeclaringClassSourceFile(); local
74 source_file, line_number);
  /external/e2fsprogs/lib/ss/
test_ss.c 34 static int source_file(const char *cmd_file, int sci_idx) function
129 exit_status = source_file(cmd_file, sci_idx);
  /bootable/recovery/applypatch/
applypatch.c 35 static int GenerateTarget(FileContents* source_file,
726 FileContents source_file; local
728 source_file.data = NULL;
732 // We try to load the target file into the source_file object.
733 if (LoadFileContents(target_filename, &source_file,
735 if (memcmp(source_file.sha1, target_sha1, SHA_DIGEST_SIZE) == 0) {
741 free(source_file.data);
746 if (source_file.data == NULL ||
751 free(source_file.data);
752 source_file.data = NULL
    [all...]
  /external/chromium/chrome/browser/extensions/
crx_installer.h 88 // Install the crx in |source_file|.
89 void InstallCrx(const FilePath& source_file);
92 void InstallUserScript(const FilePath& source_file,
crx_installer.cc 146 void CrxInstaller::InstallCrx(const FilePath& source_file) {
147 source_file_ = source_file;
151 source_file,
161 void CrxInstaller::InstallUserScript(const FilePath& source_file,
165 source_file_ = source_file;
  /external/chromium_org/build/toolchain/win/
setup_toolchain.py 95 with open(source_path) as source_file:
96 tool_source = source_file.readlines()
  /external/chromium_org/chrome/test/functional/
nacl_sdk.py 119 source_file = os.path.join(
122 source_file = os.path.join(
127 subprocess.Popen([source_file, 'list'],
135 source_file = os.path.join(self._extracted_sdk_path, 'nacl_sdk',
138 source_file = os.path.join(self._extracted_sdk_path, 'nacl_sdk',
143 updated_output = subprocess.Popen([source_file, 'update'],
721 source_file = os.path.join(self._temp_dir, 'nacl_sdk.zip')
722 if zipfile.is_zipfile(source_file):
723 zip = zipfile.ZipFile(source_file, 'r')
726 self.fail(msg='%s is not a valid zip file' % source_file)
    [all...]
  /external/chromium_org/chrome/browser/extensions/
crx_installer.h 96 // Install the crx in |source_file|.
97 void InstallCrx(const base::FilePath& source_file);
100 void InstallUserScript(const base::FilePath& source_file,
116 const base::FilePath& source_file() const { return source_file_; } function in class:extensions::CrxInstaller
  /external/chromium_org/ui/gl/
generate_bindings.py     [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/
rebaselineserver.py 111 for source_file in actual_result_files:
112 source_path = filesystem.join(test_results_directory, source_file)
113 destination_file = source_file.replace('-actual', '-expected')
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/w3c/
test_importer.py 261 source_file = os.path.join(os.path.dirname(test_info['reference']), support_file)
262 source_file = os.path.normpath(source_file)
265 to_copy = {'src': source_file, 'dest': support_file}
  /external/e2fsprogs/tests/progs/
test_icount.c 246 static int source_file(const char *cmd_file, int sci_idx) function
354 exit_status = source_file(cmd_file, sci_idx);

Completed in 1920 milliseconds

1 2 3