HomeSort by: relevance | last modified time | path
    Searched defs:Getter (Results 1 - 6 of 6) sorted by relevancy

  /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...]
  /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/clang/lib/Serialization/
ASTReaderStmt.cpp 1486 auto *Getter = readDeclAs<ObjCMethodDecl>();
1488 E->setImplicitProperty(Getter, Setter, MethodRefFlags);
  /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())

Completed in 52 milliseconds