Home
last modified time | relevance | path

Searched refs:full_name (Results 1 – 25 of 42) sorted by relevance

12

/openbsd/src/gnu/usr.bin/gcc/gcc/
Ddoschk.c23 char *full_name; member
90 ent->full_name = (char *)malloc (null-last_slash);
93 strcpy (ent->full_name, last_slash+1);
187 r = strcmp ((*e1)->full_name, (*e2)->full_name);
196 int r = strncmp ((*e1)->full_name, (*e2)->full_name, 14);
200 r = strcmp ((*e1)->full_name, (*e2)->full_name);
210 sprintf (buf, "%s/%s", ent->path, ent->full_name);
212 return ent->full_name;
283 if ((strncmp (elist[i]->full_name, elist[i+1]->full_name, 14) == 0) in display_problems()
297 printf ("%.14s : %s\n", elist[i]->full_name, mpath (elist[i])); in display_problems()
[all …]
/openbsd/src/gnu/usr.bin/perl/ext/Fcntl/t/
Dautoload.t10 my $full_name = "Fcntl::$symbol";
11 if (defined eval $full_name) {
12 foreach my $code ($full_name, "$full_name()") {
17 foreach my $code ($full_name, "$full_name()") {
/openbsd/src/gnu/usr.bin/perl/dist/constant/lib/
Dconstant.pm142 my $full_name = "${pkg}::$name";
143 $declared{$full_name}++;
171 *$full_name = \&{"_dummy"};
174 *$full_name = sub () { $scalar };
187 *$full_name = \&{"_dummy"};
190 else { *$full_name = sub () { @list }; }
192 *$full_name = sub () { };
/openbsd/src/gnu/llvm/compiler-rt/lib/sanitizer_common/
Dsanitizer_libignore.cpp62 if (!TemplateMatch(lib->templ, mod.full_name()) && in OnLibraryLoaded()
64 internal_strcmp(lib->real_name, mod.full_name()) == 0)) in OnLibraryLoaded()
69 SanitizerToolName, lib->templ, lib->name, mod.full_name()); in OnLibraryLoaded()
78 lib->templ, mod.full_name()); in OnLibraryLoaded()
80 lib->name = internal_strdup(mod.full_name()); in OnLibraryLoaded()
109 range.beg, range.end, mod.full_name()); in OnLibraryLoaded()
Dsanitizer_symbolizer.cpp46 module = internal_strdup(mod.full_name()); in FillModuleInfo()
Dsanitizer_linux.h121 bool LibraryNameIs(const char *full_name, const char *base_name);
/openbsd/src/gnu/llvm/compiler-rt/lib/sanitizer_common/tests/
Dsanitizer_linux_test.cpp214 char full_name[256]; in TEST() local
222 internal_snprintf(full_name, ARRAY_SIZE(full_name), "%s%s%s.so", in TEST()
224 EXPECT_TRUE(LibraryNameIs(full_name, base_names[k])) in TEST()
225 << "Full name " << full_name in TEST()
228 EXPECT_FALSE(LibraryNameIs(full_name, wrong_names[m])) in TEST()
229 << "Full name " << full_name in TEST()
Dsanitizer_procmaps_test.cpp51 if (strstr(modules[i].full_name(), binary_name) != 0) in TEST()
/openbsd/src/gnu/usr.bin/perl/regen/
Dembed.pl48 sub full_name ($$) { # Returns the function name with potentially the subroutine
171 $func = full_name($plain_func, $flags);
464 my $full_name = full_name($func, $flags);
465 next if $full_name eq $func; # Don't output a no-op.
466 $ret = indent_define($func, $full_name, $ind);
485 add_indent($ret,full_name($func, $flags) . "(aTHX");
/openbsd/src/gnu/llvm/lldb/source/Plugins/Language/CPlusPlus/
DMSVCUndecoratedNameParser.h19 MSVCUndecoratedNameSpecifier(llvm::StringRef full_name, in MSVCUndecoratedNameSpecifier() argument
21 : m_full_name(full_name), m_base_name(base_name) {} in MSVCUndecoratedNameSpecifier()
DCPlusPlusLanguage.cpp180 char const *full_name, in PrettyPrintFunctionNameWithArgs() argument
183 CPlusPlusLanguage::MethodName cpp_method{ConstString(full_name)}; in PrettyPrintFunctionNameWithArgs()
404 if (auto full_name = parser.ParseAsFullName()) { in ExtractContextAndIdentifier() local
405 identifier = full_name->basename; in ExtractContextAndIdentifier()
406 context = full_name->context; in ExtractContextAndIdentifier()
/openbsd/src/gnu/usr.bin/binutils/gdb/
Dcp-namespace.c607 char *full_name; in cp_lookup_transparent_type_loop() local
619 full_name = alloca (scope_length + 2 + strlen (name) + 1); in cp_lookup_transparent_type_loop()
620 strncpy (full_name, scope, scope_length); in cp_lookup_transparent_type_loop()
621 strncpy (full_name + scope_length, "::", 2); in cp_lookup_transparent_type_loop()
622 strcpy (full_name + scope_length + 2, name); in cp_lookup_transparent_type_loop()
624 return basic_lookup_transparent_type (full_name); in cp_lookup_transparent_type_loop()
Dcp-support.c404 cp_func_name (const char *full_name) in cp_func_name() argument
406 const char *previous_component = full_name; in cp_func_name()
409 if (!full_name) in cp_func_name()
Dcp-support.h63 extern char *cp_func_name (const char *full_name);
/openbsd/src/gnu/llvm/compiler-rt/lib/stats/
Dstats.cpp67 WriteToFile(stats_fd, mod->full_name(), in WriteModuleReport()
68 internal_strlen(mod->full_name()) + 1); in WriteModuleReport()
/openbsd/src/gnu/usr.bin/perl/lib/unicore/
Dmktables5244 my %full_name;
5246 main::set_access('full_name', \%full_name, 'r');
5377 $full_name{$addr} = delete $args{'Full_Name'};
5405 $full_name{$addr} = $name{$addr} if ! defined $full_name{$addr};
5497 $self->add_alias($full_name{$addr},
5506 if (standardize($full_name{$addr}) ne standardize($name{$addr})) {
6734 my $full_name = delete $args{'Full_Name'};
6743 Complete_Name => $full_name,
6744 Full_Name => $full_name,
6768 my $name = $self->property->full_name;
[all …]
/openbsd/src/gnu/usr.bin/perl/lib/Unicode/
DUCD.t937 my $full_name;
1637 my ($name, $full_name) = prop_aliases($prop);
1752 if ($full_name eq 'Perl_Decimal_Digit') {
1772 if ($full_name eq 'Present_In') {
1775 elsif ($full_name eq 'Simple_Case_Folding'
1776 || $full_name =~ /Simple_ (.) .*? case_Mapping /x)
1778 if ($full_name eq 'Simple_Case_Folding') {
1943 my $file_range_format = (grep { $full_name eq $_ } @legacy_file_format)
1949 my $file_map_format = ($full_name eq 'Decomposition_Mapping')
1956 if ($full_name =~ /^ ( Case_Folding
[all …]
/openbsd/src/gnu/llvm/lldb/source/Interpreter/
DOptions.cpp622 std::string full_name("--"); in HandleOptionCompletion() local
627 full_name.erase(full_name.begin() + 2, full_name.end()); in HandleOptionCompletion()
628 full_name.append(def.long_option); in HandleOptionCompletion()
629 request.AddCompletion(full_name, def.usage_text); in HandleOptionCompletion()
/openbsd/src/gnu/usr.bin/perl/dist/constant/t/
Dconstant.t147 my $full_name = $name =~ /::/ ? $name : "${pkg}::$name";
148 $constant::declared{$full_name};
/openbsd/src/gnu/llvm/compiler-rt/lib/lsan/
Dlsan_common_linux.cpp38 return LibraryNameIs(module.full_name(), kLinkerName); in IsLinker()
/openbsd/src/sys/dev/pci/drm/include/linux/
Dof.h16 const char *full_name; member
/openbsd/src/gnu/usr.bin/binutils/binutils/
Dprdbg.c2152 char *full_name; in tg_class_static_member() local
2156 full_name = (char *) xmalloc (len_var + len_class + 3); in tg_class_static_member()
2157 if (! full_name) in tg_class_static_member()
2159 memcpy (full_name, info->stack->next->type, len_class); in tg_class_static_member()
2160 memcpy (full_name + len_class, "::", 2); in tg_class_static_member()
2161 memcpy (full_name + len_class + 2, name, len_var + 1); in tg_class_static_member()
2163 if (! substitute_type (info, full_name)) in tg_class_static_member()
2180 free (full_name); in tg_class_static_member()
/openbsd/src/gnu/usr.bin/binutils-2.17/binutils/
Dprdbg.c2153 char *full_name; in tg_class_static_member() local
2157 full_name = (char *) xmalloc (len_var + len_class + 3); in tg_class_static_member()
2158 if (! full_name) in tg_class_static_member()
2160 memcpy (full_name, info->stack->next->type, len_class); in tg_class_static_member()
2161 memcpy (full_name + len_class, "::", 2); in tg_class_static_member()
2162 memcpy (full_name + len_class + 2, name, len_var + 1); in tg_class_static_member()
2164 if (! substitute_type (info, full_name)) in tg_class_static_member()
2181 free (full_name); in tg_class_static_member()
/openbsd/src/gnu/usr.bin/binutils/gdb/testsuite/lib/
Dgdb.exp368 set full_name "continue to breakpoint: $name"
373 pass $full_name
376 fail $full_name
379 fail "$full_name (timeout)"
/openbsd/src/gnu/llvm/lldb/source/Core/
DFormatEntity.cpp1046 ParseBaseName(char const *full_name) { in ParseBaseName() argument
1047 const char *open_paren = strchr(full_name, '('); in ParseBaseName()
1049 const char *generic = strchr(full_name, '<'); in ParseBaseName()
1084 char const *full_name, in PrettyPrintFunctionNameWithArgs() argument
1087 auto [open_paren, close_paren] = ParseBaseName(full_name); in PrettyPrintFunctionNameWithArgs()
1089 out_stream.Write(full_name, open_paren - full_name + 1); in PrettyPrintFunctionNameWithArgs()
1091 out_stream.PutCString(full_name); in PrettyPrintFunctionNameWithArgs()

12