Searched refs:OPT (Results 1 - 17 of 17) sorted by relevance

/external/clang/lib/Index/
H A DAnalyzer.cpp158 const ObjCObjectPointerType *OPT = local
162 if (!OPT || OPT->isObjCIdType() || OPT->isObjCQualifiedIdType())
166 if (OPT->isObjCClassType() || OPT->isObjCQualifiedClassType())
169 MsgD = OPT->getInterfaceDecl();
273 const ObjCObjectPointerType *OPT = local
277 if (!OPT || OPT
[all...]
/external/valgrind/tsan/
H A Dget_and_build_tsan.sh58 make all -s -j4 OS=${VG_OS} ARCH=${VG_ARCH} OPT=1 STATIC=0 || exit 1
H A DMakefile2 OPT=1 macro
107 PIN_LDFLAGS=/LTCG /DEBUG /DLL /EXPORT:main /NODEFAULTLIB /NOLOGO /INCREMENTAL:NO /OPT:REF /MACHINE:x86 /ENTRY:Ptrace_DllMainCRTStartup@12 /BASE:0x55000000
/external/strace/
H A Dstream.c708 ADDR (conn_req, OPT);
721 ADDR (conn_res, OPT);
772 ADDR (unitdata_req, OPT);
782 STRUCT (optmgmt_req, OPT, print_optmgmt);
794 ADDR (conn_ind, OPT);
802 ADDR (conn_con, OPT);
832 "ADDR=%ld, OPT=%ld, TIDU=%ld, SERV=",
876 ADDR (unitdata_ind, OPT);
883 ADDR (uderror_ind, OPT);
894 STRUCT (optmgmt_ack, OPT, print_optmgm
[all...]
/external/clang/lib/Sema/
H A DSemaExprObjC.cpp533 const ObjCObjectPointerType *OPT,
537 for (ObjCObjectPointerType::qual_iterator I = OPT->qual_begin(),
538 E = OPT->qual_end(); I != E; ++I) {
550 HandleExprPropertyRefExpr(const ObjCObjectPointerType *OPT, argument
556 const ObjCInterfaceType *IFaceT = OPT->getInterfaceType();
561 << MemberName << QualType(OPT, 0);
569 << MemberName << QualType(OPT, 0);
585 ResTy = getMessageSendResultType(QualType(OPT, 0), Getter, false,
599 for (ObjCObjectPointerType::qual_iterator I = OPT->qual_begin(),
600 E = OPT
532 LookupMethodInQualifiedType(Selector Sel, const ObjCObjectPointerType *OPT, bool Instance) argument
[all...]
H A DSemaExprMember.cpp1201 const ObjCObjectPointerType *OPT; local
1202 if (!IsArrow && (OPT = BaseType->getAs<ObjCObjectPointerType>())) {
1219 const ObjCObjectType *OT = OPT->getObjectType();
1225 if (Decl *PMDecl = FindGetterSetterNameDecl(OPT, Member, Sel, Context)) {
1250 if (Decl *SDecl = FindGetterSetterNameDecl(OPT, /*Property id*/0,
1346 return HandleExprPropertyRefExpr(OPT, BaseExpr.get(), OpLoc,
H A DSemaLookup.cpp3536 /// \param OPT when non-NULL, the search for visible declarations will
3537 /// also walk the protocols in the qualified interfaces of \p OPT.
3549 const ObjCObjectPointerType *OPT) {
3578 if (OPT) {
3580 I = OPT->qual_begin(), E = OPT->qual_end();
3543 CorrectTypo(const DeclarationNameInfo &TypoName, Sema::LookupNameKind LookupKind, Scope *S, CXXScopeSpec *SS, DeclContext *MemberContext, bool EnteringContext, CorrectTypoContext CTC, const ObjCObjectPointerType *OPT) argument
H A DSemaExpr.cpp6965 if (const ObjCObjectPointerType *OPT =
6967 if (ObjCInterfaceDecl *IFace = OPT->getInterfaceDecl())
7649 else if (const ObjCObjectPointerType *OPT =
7651 Result = OPT->getPointeeType();
/external/clang/lib/AST/
H A DType.cpp382 if (const ObjCObjectPointerType *OPT = getAs<ObjCObjectPointerType>())
383 return OPT->getPointeeType();
461 if (const ObjCObjectPointerType *OPT = getAs<ObjCObjectPointerType>()) {
462 if (OPT->isObjCQualifiedIdType())
463 return OPT;
471 if (const ObjCObjectPointerType *OPT = getAs<ObjCObjectPointerType>()) {
472 if (OPT->isObjCQualifiedClassType())
473 return OPT;
479 if (const ObjCObjectPointerType *OPT = getAs<ObjCObjectPointerType>()) {
480 if (OPT
[all...]
H A DASTContext.cpp4525 if (const ObjCObjectPointerType *OPT = T->getAs<ObjCObjectPointerType>()) {
4526 if (OPT->isObjCIdType()) {
4531 if (OPT->isObjCClassType() || OPT->isObjCQualifiedClassType()) {
4539 if (OPT->isObjCQualifiedIdType()) {
4547 for (ObjCObjectPointerType::qual_iterator I = OPT->qual_begin(),
4548 E = OPT->qual_end(); I != E; ++I) {
4558 QualType PointeeTy = OPT->getPointeeType();
4572 if (OPT->getInterfaceDecl() && (FD || EncodingProperty)) {
4574 S += OPT
[all...]
/external/valgrind/tsan/pin/
H A DMakefile38 LDFLAGS=/DLL /EXPORT:main /NODEFAULTLIB /NOLOGO /INCREMENTAL:NO /OPT:REF /MACHINE:x86 /ENTRY:Ptrace_DllMainCRTStartup@12 /BASE:0x55000000 \
/external/clang/include/clang/AST/
H A DType.h4654 if (const ObjCObjectPointerType *OPT = getAs<ObjCObjectPointerType>())
4655 return OPT->isObjCQualifiedIdType();
4659 if (const ObjCObjectPointerType *OPT = getAs<ObjCObjectPointerType>())
4660 return OPT->isObjCQualifiedClassType();
4664 if (const ObjCObjectPointerType *OPT = getAs<ObjCObjectPointerType>())
4665 return OPT->isObjCIdType();
4669 if (const ObjCObjectPointerType *OPT = getAs<ObjCObjectPointerType>())
4670 return OPT->isObjCClassType();
4674 if (const PointerType *OPT = getAs<PointerType>())
4675 return OPT
[all...]
/external/clang/lib/CodeGen/
H A DCGObjCMac.cpp3050 const ObjCObjectPointerType *OPT = 0; local
3056 OPT = CatchParam->getType()->getAs<ObjCObjectPointerType>();
3062 if (OPT && (OPT->isObjCIdType() || OPT->isObjCQualifiedIdType()))
3087 assert(OPT && "Unexpected non-object pointer type in @catch");
3088 const ObjCObjectType *ObjTy = OPT->getObjectType();
H A DCGObjCGNU.cpp895 const ObjCObjectPointerType *OPT = local
897 assert(OPT && "Invalid @catch type.");
899 OPT->getObjectType()->getInterface();
H A DCGExprScalar.cpp1411 const ObjCObjectPointerType *OPT = type->castAs<ObjCObjectPointerType>(); local
1414 CharUnits size = CGF.getContext().getTypeSizeInChars(OPT->getObjectType());
/external/clang/include/clang/Sema/
H A DSema.h1811 const ObjCObjectPointerType *OPT = NULL);
5253 const ObjCObjectPointerType *OPT,
5259 HandleExprPropertyRefExpr(const ObjCObjectPointerType *OPT,
/external/srec/config/en.us/dictionary/
H A Dc0.620905 CO-OPT K OW0 AA1 P T
[all...]

Completed in 456 milliseconds