OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isDecl
(Results
1 - 4
of
4
) sorted by null
/external/llvm/lib/Target/PowerPC/
PPCSubtarget.cpp
155
bool
isDecl
= GV->isDeclaration() && !GV->isMaterializable();
156
if (GV->hasHiddenVisibility() && !
isDecl
&& !GV->hasCommonLinkage())
159
GV->hasCommonLinkage() ||
isDecl
;
/external/llvm/lib/Target/ARM/
ARMSubtarget.cpp
226
bool
isDecl
= GV->hasAvailableExternallyLinkage();
228
isDecl
= true;
239
if (!
isDecl
&& !GV->isWeakForLinker())
249
if (
isDecl
|| GV->hasCommonLinkage())
257
if (!
isDecl
&& !GV->isWeakForLinker())
/external/llvm/lib/Target/X86/
X86Subtarget.cpp
64
bool
isDecl
= GV->hasAvailableExternallyLinkage();
66
isDecl
= true;
79
(
isDecl
|| GV->isWeakForLinker()))
105
if (!
isDecl
&& !GV->isWeakForLinker())
115
if (
isDecl
|| GV->hasCommonLinkage()) {
129
if (!
isDecl
&& !GV->isWeakForLinker())
/external/clang/include/clang/Serialization/
ASTWriter.h
137
bool
isDecl
() const { return !IsType; }
145
assert(
isDecl
() && "Not a decl!");
Completed in 50 milliseconds