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

/external/autotest/client/deps/fakegudev/src/
H A DMakefile14 OPT := -O2 macro
20 $(CC) -o $@ $(WARN) $(OPT) $(DEBUG) $(PKG_CFLAGS_FAKEGUDEV) \
24 $(CC) -fPIC -shared -o $@ $(WARN) $(OPT) $(DEBUG) \
28 $(CC) -o $@ $(WARN) $(OPT) $(DEBUG) $(PKG_CFLAGS_FAKESYSCALLS) \
32 $(CC) -fPIC -shared -o $@ $(WARN) $(OPT) $(DEBUG) \
/external/clang/include/clang/Sema/
H A DExternalSemaSource.h203 const ObjCObjectPointerType *OPT) {
198 CorrectTypo(const DeclarationNameInfo &Typo, int LookupKind, Scope *S, CXXScopeSpec *SS, CorrectionCandidateCallback &CCC, DeclContext *MemberContext, bool EnteringContext, const ObjCObjectPointerType *OPT) argument
/external/clang/test/Sema/
H A Dbuiltins.c166 #define OPT(...) (__builtin_constant_p(__VA_ARGS__) && strlen(__VA_ARGS__) < 4) macro
169 ASSERT(OPT("abc"));
170 ASSERT(!OPT("abcd"));
173 ASSERT(!OPT(test17_c)); // expected-warning {{folded}}
174 ASSERT(!OPT(&test17_c[0])); // expected-warning {{folded}}
175 ASSERT(!OPT((char*)test17_c)); // expected-warning {{folded}}
176 ASSERT(!OPT(test17_d)); // expected-warning {{folded}}
177 ASSERT(!OPT(&test17_d[0])); // expected-warning {{folded}}
178 ASSERT(!OPT((char*)test17_d)); // expected-warning {{folded}}
180 #undef OPT macro
[all...]
/external/chromium-trace/catapult/telemetry/third_party/webpagereplay/third_party/dns/
H A Drdatatype.py70 OPT = 41 variable
132 'OPT' : OPT,
165 OPT : True
/external/clang/lib/Sema/
H A DMultiplexExternalSemaSource.cpp294 const ObjCObjectPointerType *OPT) {
298 EnteringContext, OPT))
288 CorrectTypo( const DeclarationNameInfo &Typo, int LookupKind, Scope *S, CXXScopeSpec *SS, CorrectionCandidateCallback &CCC, DeclContext *MemberContext, bool EnteringContext, const ObjCObjectPointerType *OPT) argument
H A DSemaExprMember.cpp1439 const ObjCObjectPointerType *OPT; local
1440 if (!IsArrow && (OPT = BaseType->getAs<ObjCObjectPointerType>())) {
1457 const ObjCObjectType *OT = OPT->getObjectType();
1464 FindGetterSetterNameDecl(OPT, Member, Sel, S.Context)) {
1484 if (Decl *SDecl = FindGetterSetterNameDecl(OPT,
1557 return S.HandleExprPropertyRefExpr(OPT, BaseExpr.get(), OpLoc, MemberName,
H A DSemaExprObjC.cpp1744 const ObjCObjectPointerType *OPT,
1748 for (const auto *PROTO : OPT->quals()) {
1759 HandleExprPropertyRefExpr(const ObjCObjectPointerType *OPT, argument
1765 const ObjCInterfaceType *IFaceT = OPT->getInterfaceType();
1770 << MemberName << QualType(OPT, 0);
1778 if (RequireCompleteType(MemberLoc, OPT->getPointeeType(),
1797 for (const auto *I : OPT->quals())
1823 Getter = LookupMethodInQualifiedType(Sel, OPT, true);
1843 Setter = LookupMethodInQualifiedType(SetterSel, OPT, true);
1865 << MemberName << QualType(OPT,
1743 LookupMethodInQualifiedType(Selector Sel, const ObjCObjectPointerType *OPT, bool Instance) argument
[all...]
/external/libogg/win32/
H A DMakefile94 OPT = macro
/external/clang/lib/AST/
H A DType.cpp418 if (const ObjCObjectPointerType *OPT = getAs<ObjCObjectPointerType>())
419 return OPT->getPointeeType();
474 const ObjCObjectPointerType *OPT = getAs<ObjCObjectPointerType>(); local
475 if (!OPT)
479 if (OPT->isObjCIdType())
483 if (!OPT->isKindOfType())
487 if (OPT->isObjCClassType() || OPT->isObjCQualifiedClassType())
491 bound = OPT->getObjectType()->stripObjCKindOfTypeAndQuals(ctx)
497 const ObjCObjectPointerType *OPT local
[all...]
H A DASTContext.cpp3777 if (const ObjCObjectPointerType *OPT = QT->getAs<ObjCObjectPointerType>()) {
3779 for (auto *Proto : OPT->quals()) {
3795 const ObjCObjectPointerType *OPT = QT->getAs<ObjCObjectPointerType>(); local
3796 if (!OPT)
3807 for (auto *Proto : OPT->quals()) {
3824 for (auto *Proto : OPT->quals()) {
5758 const ObjCObjectPointerType *OPT = T->castAs<ObjCObjectPointerType>(); local
5759 if (OPT->isObjCIdType()) {
5764 if (OPT->isObjCClassType() || OPT
[all...]
/external/clang/lib/CodeGen/
H A DCGExprScalar.cpp1826 const ObjCObjectPointerType *OPT = type->castAs<ObjCObjectPointerType>(); local
1829 CharUnits size = CGF.getContext().getTypeSizeInChars(OPT->getObjectType());
H A DCGObjCGNU.cpp1112 const ObjCObjectPointerType *OPT = T->getAs<ObjCObjectPointerType>(); local
1113 assert(OPT && "Invalid @catch type.");
1114 const ObjCInterfaceDecl *IDecl = OPT->getObjectType()->getInterface();
H A DCGObjCMac.cpp4126 const ObjCObjectPointerType *OPT = nullptr; local
4132 OPT = CatchParam->getType()->getAs<ObjCObjectPointerType>();
4138 if (OPT && (OPT->isObjCIdType() || OPT->isObjCQualifiedIdType()))
4163 assert(OPT && "Unexpected non-object pointer type in @catch");
4164 const ObjCObjectType *ObjTy = OPT->getObjectType();

Completed in 1378 milliseconds