Home
last modified time | relevance | path

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

1234

/external/selinux/checkpolicy/
Dpolicy_scan.l43 char source_file[PATH_MAX]; variable
295 if (source_file[0])
297 source_file, source_lineno);
311 if (source_file[0])
313 source_file, source_lineno);
327 strncpy(source_file, name, sizeof(source_file)-1);
328 source_file[sizeof(source_file)-1] = '\0';
329 if (strlen(source_file) && source_file[strlen(source_file)-1] == '"')
330 source_file[strlen(source_file)-1] = '\0';
/external/google-breakpad/src/processor/
Dbasic_source_line_resolver_unittest.cc536 long source_file; in TEST() local
540 &line_number, &source_file)); in TEST()
544 EXPECT_EQ(4, source_file); in TEST()
549 &line_number, &source_file)); in TEST()
553 EXPECT_EQ(4, source_file); in TEST()
558 &line_number, &source_file)); in TEST()
562 EXPECT_EQ(4, source_file); in TEST()
571 long source_file; in TEST() local
576 &line_number, &source_file)); in TEST()
580 &line_number, &source_file)); in TEST()
[all …]
Dbasic_source_line_resolver.cc339 long source_file; in ParseLine() local
342 &source_file)) { in ParseLine()
343 return new Line(address, size, source_file, line_number); in ParseLine()
528 long *source_file) { in ParseLine() argument
551 *source_file = strtol(tokens[3], &after_number, 10); in ParseLine()
552 if (!IsValidAfterNumber(after_number) || *source_file < 0 || in ParseLine()
553 *source_file == std::numeric_limits<long>::max()) { in ParseLine()
/external/tensorflow/tensorflow/core/framework/
Dallocator_registry.cc39 void AllocatorFactoryRegistry::Register(const char* source_file, in Register() argument
53 << " priority=" << priority << " at location " << source_file in Register()
56 << existing->source_file << ":" << existing->source_line; in Register()
60 entry.source_file = source_file; in Register()
Dallocator_registry.h65 void Register(const char* source_file, int source_line, const string& name,
93 const char* source_file; member
/external/webrtc/tools/sslroots/
Dgenerate_sslroots.py57 def _SplitCrt(source_file, options): argument
60 root_dir = os.path.dirname(os.path.abspath(source_file)) + '/'
62 f = open(source_file)
131 def _CreateCertSection(root_dir, source_file, label, options): argument
132 command = 'openssl x509 -in %s%s -noout -C' %(root_dir, source_file)
/external/avb/tools/
Dat_auth_unlock.py97 source_file=None): argument
118 self._source_file = source_file
133 def source_file(self): member in UnlockCredentials
192 source_file=archive)
329 if selected_cred.source_file:
331 selected_cred.source_file))
/external/ImageMagick/coders/
Dmpeg.c390 source_file; in CopyDelegateFile() local
425 source_file=open_utf8(source,O_RDONLY | O_BINARY,0); in CopyDelegateFile()
426 if (source_file == -1) in CopyDelegateFile()
432 if ((fstat(source_file,&attributes) == 0) && (attributes.st_size > 0)) in CopyDelegateFile()
438 (void) close(source_file); in CopyDelegateFile()
445 count=(ssize_t) read(source_file,buffer,quantum); in CopyDelegateFile()
454 (void) close(source_file); in CopyDelegateFile()
DMake.com169 $source_file=f$search(f$parse(p1,".c"))
170 $if (source_file .nes. "")
172 $ object_file=f$parse(source_file,,,"name")+".obj"
177 $ source_time=f$file_attribute(source_file,"cdt")
/external/protobuf/src/google/protobuf/io/
Dprinter_unittest.cc242 EXPECT_EQ("path_1", foo->source_file()); in TEST()
243 EXPECT_EQ("path_2", bar->source_file()); in TEST()
282 EXPECT_EQ("path_1", foo->source_file()); in TEST()
283 EXPECT_EQ("path_2", bar->source_file()); in TEST()
309 EXPECT_EQ("path", foobar->source_file()); in TEST()
334 EXPECT_EQ("path", bazbam->source_file()); in TEST()
358 EXPECT_EQ("path", bar->source_file()); in TEST()
/external/chromium-trace/catapult/devil/devil/utils/
Dfile_utils.py20 for source_file in source_files:
21 with open(source_file, 'r') as source_f:
/external/v8/tools/clang/scripts/
Dtest_tool.py155 actual_files = ['-'.join([source_file.rsplit('-', 1)[0], 'actual.cc'])
156 for source_file in source_files]
157 expected_files = ['-'.join([source_file.rsplit('-', 1)[0], 'expected.' + ext])
158 for source_file in source_files]
/external/tensorflow/tensorflow/compiler/xla/service/
Dsource_map_util.h33 if (!op_metadata.source_file().empty()) { in InvalidParameterArgument()
34 absl::StrAppendFormat(&message, " (%s:%d)", op_metadata.source_file(), in InvalidParameterArgument()
/external/icu/icu4c/source/tools/
Dicu-file-utf8-check.py100 source_file = source_file_re.match(f)
101 check_file(f, source_file)
/external/libxml2/vms/
Dbuild_libxml.com241 $ source_file = p1
242 $ name = f$parse(source_file,,,"NAME")
248 $ cc_command'p2' /object='object_file 'source_file'
/external/protobuf/src/google/protobuf/compiler/cpp/
Dmetadata_test.cc158 const GeneratedCodeInfo& info, const string& source_file, in FindAnnotationOnPath() argument
162 if (annotation->source_file() != source_file || in FindAnnotationOnPath()
/external/python/cpython3/Lib/test/
Dtest_symbol.py17 def _copy_file_without_generated_symbols(self, source_file, dest_file): argument
18 with open(source_file) as fp:
/external/vulkan-validation-layers/scripts/
Dthread_safety_generator.py801 self.source_file = (genOpts.filename == 'thread_safety.cpp')
803 if not self.header_file and not self.source_file:
807 if self.source_file:
916 if name == 'vkQueuePresentKHR' or (name in special_functions and self.source_file):
940 if self.source_file:
/external/webrtc/webrtc/common_video/libyuv/
Dscaler_unittest.cc28 FILE* source_file, std::string out_name,
341 FILE* source_file, std::string out_name, in ScaleSequence() argument
352 rewind(source_file); in ScaleSequence()
365 while (feof(source_file) == 0) { in ScaleSequence()
366 if (fread(frame_buffer.get(), 1, src_required_size, source_file) != in ScaleSequence()
/external/googletest/googletest/scripts/
Drelease_docs.py140 source_file = os.path.join(self.wiki_dir, f)
143 text = file(source_file, 'r').read()
/external/e2fsprogs/lib/ss/
Dtest_ss.c35 static int source_file(const char *cmd_file, int sci_idx) in source_file() function
130 exit_status = source_file(cmd_file, sci_idx); in main()
/external/python/cpython3/Lib/test/test_email/
Dtest_parser.py26 source_file = io.StringIO("Subject: bogus\n\nmsg\n")
27 msg = email.message_from_file(source_file,
/external/tensorflow/tensorflow/python/autograph/pyct/
Dtransformer.py65 def __init__(self, source_code, source_file, namespace, arg_values, argument
68 self.source_file = source_file
/external/grpc-grpc/tools/distrib/python/
Dmake_grpcio_tools.py153 source_file = os.path.abspath(
157 shutil.copyfile(source_file, target_file)
/external/python/cpython3/Tools/importbench/
Dimportbench.py166 if options.source_file:
167 with options.source_file:
168 prev_results = json.load(options.source_file)

1234