Home
last modified time | relevance | path

Searched refs:source_file (Results 1 – 25 of 73) sorted by relevance

123

/third_party/alsa-utils/topology/
Dtopology.c80 static int load(const char *source_file, void **dst, size_t *dst_size) in load() argument
87 if (strcmp(source_file, "-") == 0) { in load()
90 fd = open(source_file, O_RDONLY); in load()
93 source_file, strerror(-errno)); in load()
213 static int dump(const char *source_file, const char *output_file, int cflags, int sflags) in dump() argument
220 err = load(source_file, (void **)&config, &size); in dump()
249 static int pre_process_conf(const char *source_file, const char *output_file, in pre_process_conf() argument
257 err = load(source_file, (void **)&config, &config_size); in pre_process_conf()
270 inc_path = get_inc_path(source_file); in pre_process_conf()
280 static int compile(const char *source_file, const char *output_file, int cflags, in compile() argument
[all …]
/third_party/selinux/checkpolicy/
Dpolicy_scan.l45 char source_file[PATH_MAX]; variable
317 if (source_file[0])
319 source_file, source_lineno);
336 if (source_file[0])
338 source_file, source_lineno);
352 strncpy(source_file, name, sizeof(source_file)-1);
353 source_file[sizeof(source_file)-1] = '\0';
354 if (strlen(source_file) && source_file[strlen(source_file)-1] == '"')
355 source_file[strlen(source_file)-1] = '\0';
/third_party/protobuf/php/src/Google/Protobuf/Internal/GeneratedCodeInfo/
DAnnotation.php30 protected $source_file = null; variable in Google\\Protobuf\\Internal\\GeneratedCodeInfo\\Annotation
108 return isset($this->source_file) ? $this->source_file : '';
113 return isset($this->source_file);
118 unset($this->source_file);
131 $this->source_file = $var;
/third_party/gn/src/gn/
Dfunction_write_file.cc66 SourceFile source_file = cur_dir.ResolveRelativeFile( in RunWriteFile() local
71 scope->settings()->build_settings()->build_dir(), source_file.value(), in RunWriteFile()
74 g_scheduler->AddWrittenFile(source_file); // Track that we wrote this file. in RunWriteFile()
82 scope->settings()->build_settings()->GetFullPath(source_file)); in RunWriteFile()
100 scope->settings()->build_settings()->GetFullPath(source_file); in RunWriteFile()
Dheader_checker_unittest.cc78 void PrintTo(const SourceFile& source_file, ::std::ostream* os) { in PrintTo() argument
79 *os << source_file.value(); in PrintTo()
333 SourceFile source_file = checker->SourceFileForInclude( in TEST_F() local
336 EXPECT_EQ(SourceFile("//lib/header1.h"), source_file); in TEST_F()
343 SourceFile source_file = checker->SourceFileForInclude( in TEST_F() local
346 EXPECT_EQ(SourceFile("/c/custom_include/header2.h"), source_file); in TEST_F()
356 SourceFile source_file = checker->SourceFileForInclude( in TEST_F() local
359 EXPECT_EQ(SourceFile("/d/subdir/header3.h"), source_file); in TEST_F()
369 SourceFile source_file = checker->SourceFileForInclude( in TEST_F() local
371 EXPECT_TRUE(source_file.is_null()); in TEST_F()
[all …]
Dscope_unittest.cc28 const SourceFile& source_file) { in ContainsBuildDependencyFile() argument
31 build_dependency_files.find(source_file); in ContainsBuildDependencyFile()
38 SourceFile source_file = SourceFile("//a/BUILD.gn"); in TEST() local
39 setup.scope()->AddBuildDependencyFile(source_file); in TEST()
43 EXPECT_TRUE(ContainsBuildDependencyFile(&new_scope, source_file)); in TEST()
217 SourceFile source_file = SourceFile("//a/BUILD.gn"); in TEST() local
218 from_scope.AddBuildDependencyFile(source_file); in TEST()
221 EXPECT_FALSE(ContainsBuildDependencyFile(&to_scope, source_file)); in TEST()
229 EXPECT_TRUE(ContainsBuildDependencyFile(&to_scope, source_file)); in TEST()
Dlib_file.cc9 LibFile::LibFile(const SourceFile& source_file) : source_file_(source_file) {} in LibFile() argument
20 const SourceFile& LibFile::source_file() const { in source_file() function in LibFile
Dbundle_file_rule.cc49 const SourceFile& source_file, in ApplyPatternToSource() argument
86 target_, target_->settings(), source_file, subrange.type, in ApplyPatternToSource()
98 const SourceFile& source_file, in ApplyPatternToSourceAsOutputFile() argument
102 if (!ApplyPatternToSource(settings, target, bundle_data, source_file, in ApplyPatternToSourceAsOutputFile()
Dbundle_data.cc85 for (const SourceFile& source_file : target->sources()) { in OnTargetResolved() local
87 if (IsSourceFileFromAssetsCatalog(source_file.value(), &assets_catalog)) { in OnTargetResolved()
91 file_rule_sources.push_back(source_file); in OnTargetResolved()
133 for (const SourceFile& source_file : outputs_as_sources) in GetOutputFiles() local
134 outputs->push_back(OutputFile(settings->build_settings(), source_file)); in GetOutputFiles()
Dheader_checker.cc250 const InputFile& source_file, in SourceFileForInclude() argument
262 const SourceDir& file_dir = source_file.dir(); in SourceFileForInclude()
349 const InputFile& source_file, in CheckInclude() argument
441 last_error = Err(CreatePersistentRange(source_file, range), in CheckInclude()
446 last_error = Err(CreatePersistentRange(source_file, range), in CheckInclude()
469 Err err = MakeUnreachableError(source_file, range, from_target, targets); in CheckInclude()
585 Err HeaderChecker::MakeUnreachableError(const InputFile& source_file, in MakeUnreachableError() argument
639 return Err(CreatePersistentRange(source_file, range), "Include not allowed.", in MakeUnreachableError()
Dloader_unittest.cc25 const SourceFile& source_file) { in ItemContainsBuildDependencyFile() argument
28 build_dependency_files.find(source_file); in ItemContainsBuildDependencyFile()
63 void AddCannedResponse(const SourceFile& source_file,
124 void MockInputFileManager::AddCannedResponse(const SourceFile& source_file, in AddCannedResponse() argument
127 canned->input_file = std::make_unique<InputFile>(source_file); in AddCannedResponse()
141 canned_responses_[source_file] = std::move(canned); in AddCannedResponse()
Dheader_checker.h117 const InputFile& source_file,
134 const InputFile& source_file,
170 static Err MakeUnreachableError(const InputFile& source_file,
Dninja_bundle_data_target_writer.cc19 for (const SourceFile& source_file : target_->sources()) { in Run() local
21 OutputFile(settings_->build_settings(), source_file)); in Run()
Dlib_file.h23 explicit LibFile(const SourceFile& source_file);
29 const SourceFile& source_file() const;
Dbundle_file_rule.h33 const SourceFile& source_file,
39 const SourceFile& source_file,
Dfunction_read_file.cc56 SourceFile source_file = cur_dir.ResolveRelativeFile( in RunReadFile() local
61 scope->settings()->build_settings()->GetFullPath(source_file); in RunReadFile()
Doutput_file.cc15 const SourceFile& source_file) in OutputFile() argument
16 : value_(RebasePath(source_file.value(), in OutputFile()
/third_party/protobuf/src/google/protobuf/compiler/
Dannotation_test_util.cc103 const GeneratedCodeInfo& info, const std::string& source_file, in FindAnnotationsOnPath() argument
108 if (annotation->source_file() != source_file || in FindAnnotationsOnPath()
125 const GeneratedCodeInfo& info, const std::string& source_file, in FindAnnotationOnPath() argument
128 FindAnnotationsOnPath(info, source_file, path, &annotations); in FindAnnotationOnPath()
/third_party/protobuf/src/google/protobuf/io/
Dprinter_unittest.cc245 EXPECT_EQ("path_1", foo->source_file()); in TEST()
246 EXPECT_EQ("path_2", bar->source_file()); in TEST()
285 EXPECT_EQ("path_1", foo->source_file()); in TEST()
286 EXPECT_EQ("path_2", bar->source_file()); in TEST()
312 EXPECT_EQ("path", foobar->source_file()); in TEST()
337 EXPECT_EQ("path", bazbam->source_file()); in TEST()
361 EXPECT_EQ("path", bar->source_file()); in TEST()
398 EXPECT_EQ("path", foo->source_file()); in TEST()
404 EXPECT_EQ("path", bar->source_file()); in TEST()
410 EXPECT_EQ("path", braces->source_file()); in TEST()
[all …]
/third_party/rust/crates/proc-macro2/tests/
Dtest.rs442 let source_file = Span::call_site().source_file(); in default_span() localVariable
443 assert_eq!(source_file.path().to_string_lossy(), "<unspecified>"); in default_span()
444 assert!(!source_file.is_real()); in default_span()
461 assert!(source1[0].span().source_file() != source2[0].span().source_file()); in span_join()
463 source1[0].span().source_file(), in span_join()
464 source1[1].span().source_file() in span_join()
480 joined1.unwrap().source_file(), in span_join()
481 source1[0].span().source_file() in span_join()
/third_party/googletest/googletest/test/
Dgtest_xml_test_utils.py174 source_file = element.getAttributeNode('file')
175 if source_file:
176 source_file.value = re.sub(r'^.*[/\\](.*)', '\\1', source_file.value)
/third_party/skia/third_party/externals/angle2/src/tests/restricted_traces/
Dgen_restricted_traces.py326 def gen_source(source_file, format_args): argument
328 with open(source_file, "w") as out_file:
386 source_file = 'restricted_traces_autogen.cpp'
401 outputs = [gni_file, header_file, source_file, '.gitignore']
434 if not gen_source(source_file, format_args):
/third_party/mesa3d/src/compiler/glsl/tests/
Dlower_precision_test.py2281 with tempfile.NamedTemporaryFile(mode='wt', suffix='.frag') as source_file:
2282 print(source, file=source_file)
2283 source_file.flush()
2288 source_file.name],
/third_party/icu/tools/unicode/c/genprops/misc/
Ducdcopy.py162 for source_file in source_files:
163 basename = os.path.basename(source_file)
182 action(source_file, dest_file)
/third_party/jsoncpp/
Dinstall.py57 file_path = os.path.join(args.source_file, patch)
66 tar_file_path = os.path.join(args.source_file, "jsoncpp-1.9.5.tar.gz")

123