Searched defs:OPT (Results 1 - 10 of 10) sorted by relevance

/external/clang/test/Sema/
H A Dbuiltins.c161 #define OPT(...) (__builtin_constant_p(__VA_ARGS__) && strlen(__VA_ARGS__) < 4) macro
164 ASSERT(OPT("abc"));
165 ASSERT(!OPT("abcd"));
168 ASSERT(!OPT(test17_c)); // expected-warning {{folded}}
169 ASSERT(!OPT(&test17_c[0])); // expected-warning {{folded}}
170 ASSERT(!OPT((char*)test17_c)); // expected-warning {{folded}}
171 ASSERT(!OPT(test17_d)); // expected-warning {{folded}}
172 ASSERT(!OPT(&test17_d[0])); // expected-warning {{folded}}
173 ASSERT(!OPT((char*)test17_d)); // expected-warning {{folded}}
175 #undef OPT macro
[all...]
/external/smack/src/org/xbill/DNS/
H A DType.java133 public static final int OPT = 41; field in class:Type
266 types.add(OPT, "OPT", new OPTRecord());
347 case OPT:
/external/libogg/win32/
H A DMakefile94 OPT = macro
/external/clang/lib/Sema/
H A DSemaExprMember.cpp1307 const ObjCObjectPointerType *OPT; local
1308 if (!IsArrow && (OPT = BaseType->getAs<ObjCObjectPointerType>())) {
1325 const ObjCObjectType *OT = OPT->getObjectType();
1331 if (Decl *PMDecl = FindGetterSetterNameDecl(OPT, Member, Sel, Context)) {
1353 if (Decl *SDecl = FindGetterSetterNameDecl(OPT, /*Property id*/0,
1426 return HandleExprPropertyRefExpr(OPT, BaseExpr.get(), OpLoc,
H A DSemaExprObjC.cpp1306 const ObjCObjectPointerType *OPT,
1310 for (ObjCObjectPointerType::qual_iterator I = OPT->qual_begin(),
1311 E = OPT->qual_end(); I != E; ++I) {
1381 HandleExprPropertyRefExpr(const ObjCObjectPointerType *OPT, argument
1387 const ObjCInterfaceType *IFaceT = OPT->getInterfaceType();
1392 << MemberName << QualType(OPT, 0);
1400 if (RequireCompleteType(MemberLoc, OPT->getPointeeType(),
1421 for (ObjCObjectPointerType::qual_iterator I = OPT->qual_begin(),
1422 E = OPT->qual_end(); I != E; ++I)
1454 Getter = LookupMethodInQualifiedType(Sel, OPT, tru
1305 LookupMethodInQualifiedType(Selector Sel, const ObjCObjectPointerType *OPT, bool Instance) argument
[all...]
H A DSemaLookup.cpp3698 /// \param OPT when non-NULL, the search for visible declarations will
3699 /// also walk the protocols in the qualified interfaces of \p OPT.
3711 const ObjCObjectPointerType *OPT) {
3764 if (OPT) {
3766 I = OPT->qual_begin(), E = OPT->qual_end();
3705 CorrectTypo(const DeclarationNameInfo &TypoName, Sema::LookupNameKind LookupKind, Scope *S, CXXScopeSpec *SS, CorrectionCandidateCallback &CCC, DeclContext *MemberContext, bool EnteringContext, const ObjCObjectPointerType *OPT) argument
/external/clang/lib/CodeGen/
H A DCGExprScalar.cpp1619 const ObjCObjectPointerType *OPT = type->castAs<ObjCObjectPointerType>(); local
1622 CharUnits size = CGF.getContext().getTypeSizeInChars(OPT->getObjectType());
H A DCGObjCGNU.cpp1097 const ObjCObjectPointerType *OPT = T->getAs<ObjCObjectPointerType>(); local
1098 assert(OPT && "Invalid @catch type.");
1099 const ObjCInterfaceDecl *IDecl = OPT->getObjectType()->getInterface();
H A DCGObjCMac.cpp3967 const ObjCObjectPointerType *OPT = 0; local
3973 OPT = CatchParam->getType()->getAs<ObjCObjectPointerType>();
3979 if (OPT && (OPT->isObjCIdType() || OPT->isObjCQualifiedIdType()))
4004 assert(OPT && "Unexpected non-object pointer type in @catch");
4005 const ObjCObjectType *ObjTy = OPT->getObjectType();
/external/clang/lib/AST/
H A DASTContext.cpp5260 const ObjCObjectPointerType *OPT = T->castAs<ObjCObjectPointerType>(); local
5261 if (OPT->isObjCIdType()) {
5266 if (OPT->isObjCClassType() || OPT->isObjCQualifiedClassType()) {
5274 if (OPT->isObjCQualifiedIdType()) {
5282 for (ObjCObjectPointerType::qual_iterator I = OPT->qual_begin(),
5283 E = OPT->qual_end(); I != E; ++I) {
5293 QualType PointeeTy = OPT->getPointeeType();
5310 if (OPT->getInterfaceDecl() &&
5313 S += OPT
[all...]

Completed in 192 milliseconds