OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Setter
(Results
1 - 7
of
7
) sorted by relevancy
/src/external/apache2/llvm/dist/clang/lib/Sema/
SemaExprMember.cpp
459
// Also must look for a getter or
setter
name which uses property syntax.
1558
// will look for the matching
setter
, in case it is needed.
1563
ObjCMethodDecl *
Setter
= IFace->lookupClassMethod(SetterSel);
1564
if (!
Setter
) {
1567
Setter
= IFace->lookupPrivateMethod(SetterSel, false);
1570
if (
Setter
&& S.DiagnoseUseOfDecl(
Setter
, MemberLoc))
1573
if (Getter ||
Setter
) {
1575
Getter,
Setter
, S.Context.PseudoObjectTy, VK_LValue,
SemaPseudoObject.cpp
23
// as a message-send of the associated '
setter
' selector, typically:
248
///
setter
call or the value that was passed to the
setter
?
270
ObjCMethodDecl *
Setter
;
278
InstanceReceiver(nullptr), Getter(nullptr),
Setter
(nullptr) {
609
ObjCMethodDecl *
setter
= RefExpr->getImplicitPropertySetter();
local
610
assert(
setter
&& "both
setter
and getter are null - cannot happen");
612
setter
->getSelector().getIdentifierInfoForSlot(0);
626
/// Try to find the most accurate
setter
declaration for the propert
[
all
...]
SemaExprObjC.cpp
2054
// will look for the matching
setter
, in case it is needed.
2058
ObjCMethodDecl *
Setter
= IFace->lookupInstanceMethod(SetterSel);
2061
if (!
Setter
)
2062
Setter
= LookupMethodInQualifiedType(SetterSel, OPT, true);
2064
if (!
Setter
) {
2067
Setter
= IFace->lookupPrivateMethod(SetterSel);
2070
if (
Setter
&& DiagnoseUseOfDecl(
Setter
, MemberLoc))
2073
// Special warning if member name used in a property-dot for a
setter
accessor
2076
if (
Setter
&& Setter->isImplicit() && Setter->isPropertyAccessor() &
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
OpenMPOpt.cpp
148
///
Setter
RTL function associated with this ICV.
149
RuntimeFunction
Setter
;
270
ICV.
Setter
= RTL; \
1936
auto &SetterRFI = OMPInfoCache.RFIs[OMPInfoCache.ICVs[ICV].
Setter
];
1989
auto &SetterRFI = OMPInfoCache.RFIs[OMPInfoCache.ICVs[ICV].
Setter
];
/src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderStmt.cpp
1487
auto *
Setter
= readDeclAs<ObjCMethodDecl>();
1488
E->setImplicitProperty(Getter,
Setter
, MethodRefFlags);
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGDebugInfo.cpp
2543
/// \return true if
Setter
has the default name for the property PD.
2545
const ObjCMethodDecl *
Setter
) {
2547
if (!
Setter
)
2550
assert(
Setter
->getDeclName().isObjCOneArgSelector());
2552
Setter
->getDeclName().getObjCSelector().getNameForSlot(0);
2733
ObjCMethodDecl *
Setter
= PD->getSetterMethodDecl();
2738
hasDefaultSetterName(PD,
Setter
) ? ""
2832
ObjCMethodDecl *
Setter
= PImpD->getSetterMethodDecl();
2838
hasDefaultSetterName(PD,
Setter
)
CodeGenModule.cpp
5555
auto *
Setter
= PID->getSetterMethodDecl();
5556
if (!PD->isReadOnly() && (!
Setter
||
Setter
->isSynthesizedAccessorStub()))
Completed in 42 milliseconds
Indexes created Tue Feb 24 08:35:24 UTC 2026