OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Getter
(Results
1 - 25
of
28
) sorted by relevancy
1
2
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
DebugContainerModeling.cpp
32
template <typename
Getter
>
34
Getter
get) const;
77
template <typename
Getter
>
80
Getter
get) const {
DebugIteratorModeling.cpp
32
template <typename
Getter
>
34
Getter
get, SVal Default) const;
80
template <typename
Getter
>
83
Getter
get,
/src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/
ASTMatchersMacros.h
366
template <typename T> struct TypeMatcher##MatcherName##
Getter
{ \
373
::clang::ast_matchers::internal::TypeMatcher##MatcherName##
Getter
, \
380
::clang::ast_matchers::internal::TypeMatcher##MatcherName##
Getter
, \
393
template <typename T> struct TypeMatcher##MatcherName##
Getter
{ \
399
::clang::ast_matchers::internal::TypeMatcher##MatcherName##
Getter
, \
406
template <typename T> struct TypeLocMatcher##MatcherName##
Getter
{ \
414
TypeLocMatcher##MatcherName##
Getter
, \
422
::clang::ast_matchers::internal::TypeLocMatcher##MatcherName##
Getter
, \
431
template <typename T> struct TypeLocMatcher##MatcherName##
Getter
{ \
437
::clang::ast_matchers::internal::TypeLocMatcher##MatcherName##
Getter
, \
[
all
...]
ASTMatchersInternal.h
1896
/// \c OuterT is any type that is supported by \c
Getter
.
1898
/// \code
Getter
<OuterT>::value() \endcode returns a
1902
template <typename OuterT> class
Getter
,
1907
using Self = TypeTraversePolymorphicMatcher<InnerTBase,
Getter
, MatcherImpl,
1921
new MatcherImpl<OuterT>(InnerMatcher,
Getter
<OuterT>::value()));
1954
template <typename InnerTBase, template <typename OuterT> class
Getter
,
1956
TypeTraversePolymorphicMatcher<InnerTBase,
Getter
, MatcherImpl, ReturnTypesF>
1958
InnerTBase,
Getter
, MatcherImpl,
/src/external/apache2/llvm/dist/clang/lib/Sema/
SemaPseudoObject.cpp
20
// of the associated '
getter
' selector, typically:
255
/// Postfix increment and decrement always use the
getter
result as the
268
ObjCMethodDecl *
Getter
;
278
InstanceReceiver(nullptr),
Getter
(nullptr), Setter(nullptr) {
589
} else if (
Getter
) {
590
T =
Getter
->getReturnType();
599
if (
Getter
) return true;
603
if ((
Getter
= RefExpr->getImplicitPropertyGetter())) {
604
GetterSelector =
Getter
->getSelector();
608
// Must build the
getter
selector the hard way
[
all
...]
SemaExprObjC.cpp
2038
ObjCMethodDecl *
Getter
= IFace->lookupInstanceMethod(Sel);
2041
if (!
Getter
)
2042
Getter
= LookupMethodInQualifiedType(Sel, OPT, true);
2045
if (!
Getter
)
2046
Getter
= IFace->lookupPrivateMethod(Sel);
2048
if (
Getter
) {
2050
if (DiagnoseUseOfDecl(
Getter
, MemberLoc))
2053
// If we found a
getter
then this may be a valid dot-reference, we
2091
if (
Getter
|| Setter) {
2094
ObjCPropertyRefExpr(
Getter
, Setter, Context.PseudoObjectTy, VK_LValue
[
all
...]
SemaExprMember.cpp
459
// Also must look for a
getter
or setter name which uses property syntax.
1544
// Also must look for a
getter
name which uses property syntax.
1550
ObjCMethodDecl *
Getter
;
1551
if ((
Getter
= IFace->lookupClassMethod(Sel))) {
1553
if (S.DiagnoseUseOfDecl(
Getter
, MemberLoc))
1556
Getter
= IFace->lookupPrivateMethod(Sel, false);
1557
// If we found a
getter
then this may be a valid dot-reference, we
1573
if (
Getter
|| Setter) {
1575
Getter
, Setter, S.Context.PseudoObjectTy, VK_LValue,
SemaDeclObjC.cpp
3986
if (auto *
Getter
= PropImpl->getGetterMethodDecl())
3987
if (
Getter
->isSynthesizedAccessorStub())
3988
OID->addDecl(
Getter
);
4070
// user-defined setter/
getter
. It also synthesizes setter/
getter
methods
4080
// declared setter or
getter
in current class extension or one
4844
if (auto *
Getter
= PropertyImpl->getGetterMethodDecl())
4845
if (
Getter
->getSelector() == Sel &&
4846
Getter
->isInstanceMethod() == ObjCMethod->isInstanceMethod()) {
4847
assert(
Getter
->isSynthesizedAccessorStub() && "autosynth stub expected")
[
all
...]
SemaCodeComplete.cpp
3665
// GetterName is the
getter
method for a property with name
3667
//
getter
attribute.
4718
// added to the results as they can't be used as a
getter
.
6856
CodeCompletionBuilder
Getter
(Results.getAllocator(),
6858
Getter
.AddTypedTextChunk("
getter
");
6859
Getter
.AddTextChunk("=");
6860
Getter
.AddPlaceholderChunk("method");
6861
Results.AddResult(CodeCompletionResult(
Getter
.TakeString()));
/src/external/apache2/llvm/dist/clang/lib/Index/
IndexBody.cpp
243
if (const ObjCMethodDecl *
Getter
= PRE->getImplicitPropertyGetter()) {
247
if (
Getter
->isClassMethod() &&
248
Getter
->getCanonicalDecl()->findPropertyDecl())
297
} else if (const ObjCMethodDecl *
Getter
= E->getImplicitPropertyGetter()) {
301
if (
Getter
->isClassMethod()) {
302
if (const auto *PD =
Getter
->getCanonicalDecl()->findPropertyDecl()) {
/src/external/apache2/llvm/dist/clang/include/clang/AST/
ExprObjC.h
623
/// to the
getter
, the setter, or both.
636
// implicit property with no
getter
(because the 'foo' -> 'setFoo:'
665
ObjCPropertyRefExpr(ObjCMethodDecl *
Getter
, ObjCMethodDecl *Setter,
669
PropertyOrGetter(
Getter
, true), SetterAndMethodRefFlags(Setter, 0),
675
ObjCPropertyRefExpr(ObjCMethodDecl *
Getter
, ObjCMethodDecl *Setter,
680
PropertyOrGetter(
Getter
, true), SetterAndMethodRefFlags(Setter, 0),
686
ObjCPropertyRefExpr(ObjCMethodDecl *
Getter
, ObjCMethodDecl *Setter,
691
PropertyOrGetter(
Getter
, true), SetterAndMethodRefFlags(Setter, 0),
731
///
getter
.
814
void setImplicitProperty(ObjCMethodDecl *
Getter
, ObjCMethodDecl *Setter
[
all
...]
DeclCXX.h
3942
/// undergoes lvalue-to-rvalue conversion, then a
getter
name is
3949
/// The
getter
and putter methods are permitted to be overloaded,
3954
/// additionally be subscripted, adding extra parameters to the
getter
3961
IdentifierInfo *
Getter
, IdentifierInfo *Setter)
3963
GetterId(
Getter
), SetterId(Setter) {}
3972
IdentifierInfo *
Getter
, IdentifierInfo *Setter);
/src/external/apache2/llvm/dist/llvm/lib/FuzzMutate/
IRMutator.cpp
57
for (const auto &
Getter
: AllowedTypes)
58
Types.push_back(
Getter
(M.getContext()));
/src/external/apache2/llvm/dist/clang/lib/ARCMigrate/
ObjCMT.cpp
265
// Find space location range between receiver expression and
getter
method.
272
// rewrite
getter
method expression into: receiver.property or
455
static void rewriteToObjCProperty(const ObjCMethodDecl *
Getter
,
472
std::string PropertyNameString =
Getter
->getNameAsString();
476
PropertyString += "(
getter
=";
480
PropertyString += ",
getter
=";
493
QualType QT =
Getter
->getReturnType();
497
QualType ResType = Context.getCanonicalType(
Getter
->getReturnType());
508
QualType RT =
Getter
->getReturnType();
546
SourceLocation StartGetterSelectorLoc =
Getter
->getSelectorStartLoc()
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
OpenMPOpt.cpp
151
///
Getter
RTL function associated with this ICV.
152
RuntimeFunction
Getter
;
275
ICV.
Getter
= RTL; \
1622
auto &GetterRFI = OMPInfoCache.RFIs[ICVInfo.
Getter
];
1988
auto &GetterRFI = OMPInfoCache.RFIs[OMPInfoCache.ICVs[ICV].
Getter
];
2176
auto &
Getter
= OMPInfoCache.RFIs[ICVInfo.
Getter
];
2177
if (
Getter
.Declaration == getAssociatedFunction()) {
/src/external/apache2/llvm/dist/llvm/lib/Analysis/
AliasAnalysis.cpp
932
for (auto &
Getter
: ResultGetters)
933
(*
Getter
)(F, AM, R);
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGDebugInfo.cpp
2531
/// \return true if
Getter
has the default name for the property PD.
2533
const ObjCMethodDecl *
Getter
) {
2535
if (!
Getter
)
2538
assert(
Getter
->getDeclName().isObjCZeroArgSelector());
2540
Getter
->getDeclName().getObjCSelector().getNameForSlot(0);
2732
ObjCMethodDecl *
Getter
= PD->getGetterMethodDecl();
2736
hasDefaultGetterName(PD,
Getter
) ? ""
2831
ObjCMethodDecl *
Getter
= PImpD->getGetterMethodDecl();
2835
hasDefaultGetterName(PD,
Getter
)
CodeGenModule.cpp
5551
auto *
Getter
= PID->getGetterMethodDecl();
5552
if (!
Getter
||
Getter
->isSynthesizedAccessorStub())
/src/external/apache2/llvm/dist/clang/tools/libclang/
CXIndexDataConsumer.cpp
844
if (ObjCMethodDecl *
Getter
= D->getGetterMethodDecl()) {
845
getEntityInfo(
Getter
, GetterEntity, SA);
846
DInfo.ObjCPropDeclInfo.
getter
= &GetterEntity;
848
DInfo.ObjCPropDeclInfo.
getter
= nullptr;
/src/external/apache2/llvm/dist/clang/lib/AST/
StmtPrinter.cpp
1068
if (const auto *
Getter
= Node->getImplicitPropertyGetter())
1069
Getter
->getSelector().print(OS);
TextNodeDumper.cpp
1286
OS << " Kind=MethodRef
Getter
=\"";
1308
OS << "
Getter
&Setter";
1310
OS << "
Getter
";
2260
dumpDeclRef(D->getGetterMethodDecl(), "
getter
");
DeclCXX.cpp
3241
IdentifierInfo *
Getter
,
3243
return new (C, DC) MSPropertyDecl(DC, L, N, T, TInfo, StartL,
Getter
, Setter);
/src/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/
RewriteObjC.cpp
784
// Generate the '
getter
' function.
947
// When method is a synthesized one, such as a
getter
/setter there is
5374
if (ObjCMethodDecl *
Getter
= Prop->getGetterMethodDecl())
5375
if (!
Getter
->isDefined())
5376
InstanceMethods.push_back(
Getter
);
5652
if (ObjCMethodDecl *
Getter
= Prop->getGetterMethodDecl())
5653
InstanceMethods.push_back(
Getter
);
RewriteModernObjC.cpp
907
/// mustSynthesizeSetterGetterMethod - returns true if setter or
getter
has not
911
bool
getter
) {
912
auto *OMD = IMP->getInstanceMethod(
getter
? PD->getGetterName()
938
// Generate the '
getter
' function.
944
if (mustSynthesizeSetterGetterMethod(IMD, PD, true /*
getter
*/)) {
1106
// When method is a synthesized one, such as a
getter
/setter there is
7049
if (ObjCMethodDecl *
Getter
= Prop->getGetterMethodDecl())
7050
if (mustSynthesizeSetterGetterMethod(IDecl, PD, true /*
getter
*/))
7051
InstanceMethods.push_back(
Getter
);
7299
if (ObjCMethodDecl *
Getter
= Prop->getGetterMethodDecl()
[
all
...]
/src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderStmt.cpp
1486
auto *
Getter
= readDeclAs<ObjCMethodDecl>();
1488
E->setImplicitProperty(
Getter
, Setter, MethodRefFlags);
Completed in 139 milliseconds
1
2
Indexes created Sun Sep 20 00:26:38 UTC 2026