OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:hasAttribute
(Results
1 - 9
of
9
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/include/llvm/MC/
MCSectionMachO.h
54
bool
hasAttribute
(unsigned Value) const {
/src/external/apache2/llvm/dist/clang/lib/Basic/
Attributes.cpp
8
int clang::
hasAttribute
(AttrSyntax Syntax, const IdentifierInfo *Scope,
/src/external/apache2/llvm/dist/llvm/include/llvm/IR/
GlobalVariable.h
198
bool
hasAttribute
(Attribute::AttrKind Kind) const {
199
return Attrs.
hasAttribute
(Kind);
203
bool
hasAttribute
(StringRef Kind) const {
204
return Attrs.
hasAttribute
(Kind);
244
return getAttributes().
hasAttribute
("bss-section") ||
245
getAttributes().
hasAttribute
("data-section") ||
246
getAttributes().
hasAttribute
("relro-section") ||
247
getAttributes().
hasAttribute
("rodata-section");
Function.h
444
bool
hasAttribute
(unsigned i, Attribute::AttrKind Kind) const {
445
return getAttributes().
hasAttribute
(i, Kind);
702
return AttributeSets.
hasAttribute
(AttributeList::ReturnIndex,
/src/external/apache2/llvm/dist/llvm/lib/IR/
AttributeImpl.h
62
bool
hasAttribute
(Attribute::AttrKind A) const;
63
bool
hasAttribute
(StringRef Kind) const;
199
bool
hasAttribute
(Attribute::AttrKind Kind) const {
242
bool
hasAttribute
(Attribute::AttrKind Kind) const {
243
return AvailableAttrs.
hasAttribute
(Kind);
245
bool
hasAttribute
(StringRef Kind) const;
309
return AvailableFunctionAttrs.
hasAttribute
(Kind);
Function.cpp
107
return
hasAttribute
(Attribute::ByVal);
113
return
hasAttribute
(Attribute::ByRef);
126
return
hasAttribute
(Attribute::InAlloca);
132
return
hasAttribute
(Attribute::Preallocated);
170
if (ParamAttrs.
hasAttribute
(Attribute::InAlloca) ||
171
ParamAttrs.
hasAttribute
(Attribute::ByVal) ||
172
ParamAttrs.
hasAttribute
(Attribute::StructRet) ||
173
ParamAttrs.
hasAttribute
(Attribute::Preallocated))
241
return
hasAttribute
(Attribute::Nest);
246
return
hasAttribute
(Attribute::NoAlias)
[
all
...]
Attributes.cpp
319
bool Attribute::
hasAttribute
(AttrKind Kind) const {
320
return (pImpl && pImpl->
hasAttribute
(Kind)) || (!pImpl && Kind == None);
323
bool Attribute::
hasAttribute
(StringRef Kind) const {
325
return pImpl && pImpl->
hasAttribute
(Kind);
329
assert(
hasAttribute
(Attribute::Alignment) &&
335
assert(
hasAttribute
(Attribute::StackAlignment) &&
341
assert(
hasAttribute
(Attribute::Dereferenceable) &&
348
assert(
hasAttribute
(Attribute::DereferenceableOrNull) &&
355
assert(
hasAttribute
(Attribute::AllocSize) &&
361
assert(
hasAttribute
(Attribute::VScaleRange) &
[
all
...]
/src/external/apache2/llvm/dist/llvm/include/llvm/ProfileData/
SampleProf.h
454
bool
hasAttribute
(ContextAttributeMask A) { return Attributes & (uint32_t)A; }
/src/external/apache2/llvm/dist/clang/lib/Sema/
SemaDecl.cpp
2655
static bool
hasAttribute
(const Decl *D, attr::Kind Kind) {
2712
if (
hasAttribute
(Def, NewAttribute->getKind())) {
6693
if (PD.getDeclSpec().getAttributes().
hasAttribute
(Kind))
6699
if (PD.getTypeObject(I).getAttrs().
hasAttribute
(Kind))
6704
return PD.getAttributes().
hasAttribute
(Kind);
Completed in 61 milliseconds
Indexes created Tue Feb 24 08:35:24 UTC 2026