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

/external/chromium_org/third_party/leveldatabase/src/
H A DMakefile9 OPT ?= -O2 -DNDEBUG # (A) Production use (optimized mode) macro
10 # OPT ?= -g2 # (B) Debug mode, w/ full line-level debugging symbols
11 # OPT ?= -O2 -g2 -DNDEBUG # (C) Profiling mode: opt, but w/debugging symbols
20 CFLAGS += -I. -I./include $(PLATFORM_CCFLAGS) $(OPT)
21 CXXFLAGS += -I. -I./include $(PLATFORM_CXXFLAGS) $(OPT)
/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.cpp1344 const ObjCObjectPointerType *OPT; local
1345 if (!IsArrow && (OPT = BaseType->getAs<ObjCObjectPointerType>())) {
1362 const ObjCObjectType *OT = OPT->getObjectType();
1368 if (Decl *PMDecl = FindGetterSetterNameDecl(OPT, Member, Sel, Context)) {
1391 if (Decl *SDecl = FindGetterSetterNameDecl(OPT, /*Property id*/0,
1465 return HandleExprPropertyRefExpr(OPT, BaseExpr.get(), OpLoc,
H A DSemaExprObjC.cpp1407 const ObjCObjectPointerType *OPT,
1411 for (ObjCObjectPointerType::qual_iterator I = OPT->qual_begin(),
1412 E = OPT->qual_end(); I != E; ++I) {
1482 HandleExprPropertyRefExpr(const ObjCObjectPointerType *OPT, argument
1488 const ObjCInterfaceType *IFaceT = OPT->getInterfaceType();
1493 << MemberName << QualType(OPT, 0);
1501 if (RequireCompleteType(MemberLoc, OPT->getPointeeType(),
1522 for (ObjCObjectPointerType::qual_iterator I = OPT->qual_begin(),
1523 E = OPT->qual_end(); I != E; ++I)
1555 Getter = LookupMethodInQualifiedType(Sel, OPT, tru
1406 LookupMethodInQualifiedType(Selector Sel, const ObjCObjectPointerType *OPT, bool Instance) argument
[all...]
H A DSemaLookup.cpp3852 /// \param OPT when non-NULL, the search for visible declarations will
3853 /// also walk the protocols in the qualified interfaces of \p OPT.
3865 const ObjCObjectPointerType *OPT) {
3911 if (OPT) {
3913 I = OPT->qual_begin(), E = OPT->qual_end();
3859 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.cpp1630 const ObjCObjectPointerType *OPT = type->castAs<ObjCObjectPointerType>(); local
1633 CharUnits size = CGF.getContext().getTypeSizeInChars(OPT->getObjectType());
H A DCGObjCGNU.cpp1122 const ObjCObjectPointerType *OPT = T->getAs<ObjCObjectPointerType>(); local
1123 assert(OPT && "Invalid @catch type.");
1124 const ObjCInterfaceDecl *IDecl = OPT->getObjectType()->getInterface();
H A DCGObjCMac.cpp3970 const ObjCObjectPointerType *OPT = 0; local
3976 OPT = CatchParam->getType()->getAs<ObjCObjectPointerType>();
3982 if (OPT && (OPT->isObjCIdType() || OPT->isObjCQualifiedIdType()))
4007 assert(OPT && "Unexpected non-object pointer type in @catch");
4008 const ObjCObjectType *ObjTy = OPT->getObjectType();
/external/clang/lib/AST/
H A DASTContext.cpp5395 const ObjCObjectPointerType *OPT = T->castAs<ObjCObjectPointerType>(); local
5396 if (OPT->isObjCIdType()) {
5401 if (OPT->isObjCClassType() || OPT->isObjCQualifiedClassType()) {
5409 if (OPT->isObjCQualifiedIdType()) {
5417 for (ObjCObjectPointerType::qual_iterator I = OPT->qual_begin(),
5418 E = OPT->qual_end(); I != E; ++I) {
5428 QualType PointeeTy = OPT->getPointeeType();
5436 if (FD && OPT->getInterfaceDecl()) {
5438 ObjCInterfaceDecl *OI = OPT
[all...]

Completed in 415 milliseconds