OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ShortName
(Results
1 - 25
of
25
) sorted by relevancy
/src/external/apache2/llvm/dist/clang/include/clang/Driver/
Tool.h
37
const char *
ShortName
;
43
Tool(const char *Name, const char *
ShortName
, const ToolChain &TC);
50
const char *getShortName() const { return
ShortName
; }
/src/external/apache2/llvm/dist/clang/lib/Driver/
Tool.cpp
15
: Name(_Name),
ShortName
(_ShortName), TheToolChain(TC) {}
Job.cpp
246
StringRef
ShortName
= llvm::sys::path::filename(CrashInfo->Filename);
247
llvm::sys::printArg(OS,
ShortName
.str(), Quote);
/src/external/apache2/llvm/dist/clang/include/clang/Basic/
LangStandard.h
71
const char *
ShortName
;
78
const char *getName() const { return
ShortName
; }
/src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
DWARFTypeUnit.cpp
22
const char *Name = TD.getName(DINameKind::
ShortName
);
DWARFVerifier.cpp
1240
if (const char *Str = DIE.getName(DINameKind::
ShortName
))
DWARFContext.cpp
1153
if (const char *Name = Subprogram.getSubroutineName(DINameKind::
ShortName
))
/src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/COFF/
Object.h
162
static_assert(sizeof(Dest.Name.
ShortName
) == sizeof(Src.Name.
ShortName
),
164
memcpy(Dest.Name.
ShortName
, Src.Name.
ShortName
, sizeof(Dest.Name.
ShortName
));
Writer.cpp
144
strncpy(S.Sym.Name.
ShortName
, S.Name.data(), COFF::NameSize);
/src/external/apache2/llvm/dist/llvm/lib/DebugInfo/GSYM/
DwarfTransformer.cpp
140
StringRef
ShortName
(Die.getName(DINameKind::
ShortName
));
141
if (
ShortName
.empty())
153
return Gsym.insertString(
ShortName
, /* Copy */ false);
158
if (
ShortName
.startswith("_Z") &&
159
(
ShortName
.contains(".isra.") ||
ShortName
.contains(".part.")))
160
return Gsym.insertString(
ShortName
, /* Copy */ false);
164
std::string Name =
ShortName
.str();
166
StringRef ParentName(ParentDeclCtxDie.getName(DINameKind::
ShortName
));
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/DWARFLinker/
DWARFLinkerDeclContext.cpp
88
else if (const char *
ShortName
= DIE.getShortName())
89
NameRef = StringPool.internString(
ShortName
);
DWARFLinker.cpp
1933
if (const char *CurrentName = DIE.getName(DINameKind::
ShortName
))
/src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/
Gnu.h
85
Common(const char *Name, const char *
ShortName
, const ToolChain &TC)
86
: Tool(Name,
ShortName
, TC) {}
Darwin.h
45
MachOTool(const char *Name, const char *
ShortName
, const ToolChain &TC)
46
: Tool(Name,
ShortName
, TC) {}
/src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/
DIContext.h
139
enum class DINameKind { None,
ShortName
, LinkageName };
/src/external/apache2/llvm/dist/llvm/include/llvm/Object/
COFF.h
252
char
ShortName
[COFF::NameSize];
271
char
ShortName
[COFF::NameSize];
309
return CS16 ? CS16->Name.
ShortName
: CS32->Name.
ShortName
;
/src/external/apache2/llvm/dist/llvm/lib/Object/
WindowsResource.cpp
805
coffnamecpy(Symbol->Name.
ShortName
, "@feat.00");
815
coffnamecpy(Symbol->Name.
ShortName
, ".rsrc$01");
834
coffnamecpy(Symbol->Name.
ShortName
, ".rsrc$02");
855
coffnamecpy(Symbol->Name.
ShortName
, RelocationName);
COFFObjectFile.cpp
1040
if (Symbol->Name.
ShortName
[COFF::NameSize - 1] == 0)
1041
return StringRef(Symbol->Name.
ShortName
);
1044
return StringRef(Symbol->Name.
ShortName
, COFF::NameSize);
/src/external/apache2/llvm/dist/clang/utils/TableGen/
MveEmitter.cpp
800
// identifies this variant of the intrinsic, and
ShortName
is the name it
802
std::string
ShortName
, FullName;
839
const std::string &
shortName
() const { return
ShortName
; }
856
bool polymorphic() const { return
ShortName
!= FullName; }
1361
ShortName
= join(std::begin(NameParts), std::end(NameParts), "_");
1715
Int.polymorphic() ? StringTable.GetOrAddStringOffset(Int.
shortName
())
1823
Polymorphic ? Int.
shortName
() : Int.fullName();
1953
StringRef Name = Int.
shortName
();
2071
"__arm_" + (Polymorphic ? Int.
shortName
() : Int.fullName())
[
all
...]
/src/external/apache2/llvm/dist/llvm/tools/llvm-objdump/
SourcePrinter.cpp
49
const char *VarName = VarDie.getName(DINameKind::
ShortName
);
MachODump.cpp
7353
SmallString<128>
ShortName
(llvm::sys::path::filename(DSYMPath));
7354
llvm::sys::path::replace_extension(
ShortName
, "");
7357
ShortName
);
/src/external/apache2/llvm/dist/llvm/tools/llvm-dwarfdump/
llvm-dwarfdump.cpp
357
if (const char *Name = Die.getName(DINameKind::
ShortName
))
/src/external/apache2/llvm/dist/clang/lib/Sema/
SemaDeclAttr.cpp
5115
int32_t
ShortName
;
5132
if (It->
ShortName
== -1)
5134
StringRef
ShortName
(&IntrinNames[It->
ShortName
]);
5135
return AliasName ==
ShortName
;
/src/external/mit/libuv/dist/src/win/
winapi.h
4286
WCHAR
ShortName
[12];
/src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/sys/windows/
winnt.d
3156
BYTE[8]
ShortName
;
Completed in 88 milliseconds
Indexes created Tue Feb 24 08:35:24 UTC 2026