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

/external/clang/test/Sema/
H A Dbuiltins.c147 #define OPT(...) (__builtin_constant_p(__VA_ARGS__) && strlen(__VA_ARGS__) < 4) macro
150 ASSERT(OPT("abc"));
151 ASSERT(!OPT("abcd"));
154 ASSERT(!OPT(test17_c)); // expected-warning {{folded}}
155 ASSERT(!OPT(&test17_c[0])); // expected-warning {{folded}}
156 ASSERT(!OPT((char*)test17_c)); // expected-warning {{folded}}
157 ASSERT(!OPT(test17_d)); // expected-warning {{folded}}
158 ASSERT(!OPT(&test17_d[0])); // expected-warning {{folded}}
159 ASSERT(!OPT((char*)test17_d)); // expected-warning {{folded}}
161 #undef OPT macro
[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.c812 ADDR (conn_req, OPT);
825 ADDR (conn_res, OPT);
876 ADDR (unitdata_req, OPT);
886 STRUCT (optmgmt_req, OPT, print_optmgmt);
898 ADDR (conn_ind, OPT);
906 ADDR (conn_con, OPT);
936 "ADDR=%ld, OPT=%ld, TIDU=%ld, SERV=",
980 ADDR (unitdata_ind, OPT);
987 ADDR (uderror_ind, OPT);
998 STRUCT (optmgmt_ack, OPT, print_optmgm
[all...]
/external/clang/lib/AST/
H A DType.cpp404 if (const ObjCObjectPointerType *OPT = getAs<ObjCObjectPointerType>())
405 return OPT->getPointeeType();
483 if (const ObjCObjectPointerType *OPT = getAs<ObjCObjectPointerType>()) {
484 if (OPT->isObjCQualifiedIdType())
485 return OPT;
493 if (const ObjCObjectPointerType *OPT = getAs<ObjCObjectPointerType>()) {
494 if (OPT->isObjCQualifiedClassType())
495 return OPT;
501 if (const ObjCObjectPointerType *OPT = getAs<ObjCObjectPointerType>()) {
502 if (OPT
[all...]
H A DASTContext.cpp5019 if (const ObjCObjectPointerType *OPT = T->getAs<ObjCObjectPointerType>()) {
5020 if (OPT->isObjCIdType()) {
5025 if (OPT->isObjCClassType() || OPT->isObjCQualifiedClassType()) {
5033 if (OPT->isObjCQualifiedIdType()) {
5041 for (ObjCObjectPointerType::qual_iterator I = OPT->qual_begin(),
5042 E = OPT->qual_end(); I != E; ++I) {
5052 QualType PointeeTy = OPT->getPointeeType();
5066 if (OPT->getInterfaceDecl() &&
5069 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/lib/Sema/
H A DSemaExprObjC.cpp1284 const ObjCObjectPointerType *OPT,
1288 for (ObjCObjectPointerType::qual_iterator I = OPT->qual_begin(),
1289 E = OPT->qual_end(); I != E; ++I) {
1364 HandleExprPropertyRefExpr(const ObjCObjectPointerType *OPT, argument
1370 const ObjCInterfaceType *IFaceT = OPT->getInterfaceType();
1375 << MemberName << QualType(OPT, 0);
1383 if (RequireCompleteType(MemberLoc, OPT->getPointeeType(),
1404 for (ObjCObjectPointerType::qual_iterator I = OPT->qual_begin(),
1405 E = OPT->qual_end(); I != E; ++I)
1437 Getter = LookupMethodInQualifiedType(Sel, OPT, tru
1283 LookupMethodInQualifiedType(Selector Sel, const ObjCObjectPointerType *OPT, bool Instance) argument
[all...]
H A DSemaExprMember.cpp1300 const ObjCObjectPointerType *OPT; local
1301 if (!IsArrow && (OPT = BaseType->getAs<ObjCObjectPointerType>())) {
1318 const ObjCObjectType *OT = OPT->getObjectType();
1324 if (Decl *PMDecl = FindGetterSetterNameDecl(OPT, Member, Sel, Context)) {
1346 if (Decl *SDecl = FindGetterSetterNameDecl(OPT, /*Property id*/0,
1419 return HandleExprPropertyRefExpr(OPT, BaseExpr.get(), OpLoc,
H A DSemaLookup.cpp3697 /// \param OPT when non-NULL, the search for visible declarations will
3698 /// also walk the protocols in the qualified interfaces of \p OPT.
3710 const ObjCObjectPointerType *OPT) {
3752 if (OPT) {
3754 I = OPT->qual_begin(), E = OPT->qual_end();
3704 CorrectTypo(const DeclarationNameInfo &TypoName, Sema::LookupNameKind LookupKind, Scope *S, CXXScopeSpec *SS, CorrectionCandidateCallback &CCC, DeclContext *MemberContext, bool EnteringContext, const ObjCObjectPointerType *OPT) argument
H A DSemaExpr.cpp7461 if (const ObjCObjectPointerType *OPT =
7463 if (ObjCInterfaceDecl *IFace = OPT->getInterfaceDecl())
8092 else if (const ObjCObjectPointerType *OPT =
8094 Result = OPT->getPointeeType();
/external/libogg/win32/
H A DMakefile94 OPT = macro
/external/clang/include/clang/AST/
H A DType.h4857 if (const ObjCObjectPointerType *OPT = getAs<ObjCObjectPointerType>())
4858 return OPT->isObjCQualifiedIdType();
4862 if (const ObjCObjectPointerType *OPT = getAs<ObjCObjectPointerType>())
4863 return OPT->isObjCQualifiedClassType();
4867 if (const ObjCObjectPointerType *OPT = getAs<ObjCObjectPointerType>())
4868 return OPT->isObjCIdType();
4872 if (const ObjCObjectPointerType *OPT = getAs<ObjCObjectPointerType>())
4873 return OPT->isObjCClassType();
4877 if (const PointerType *OPT = getAs<PointerType>())
4878 return OPT
[all...]
/external/clang/lib/CodeGen/
H A DCGObjCMac.cpp3286 const ObjCObjectPointerType *OPT = 0; local
3292 OPT = CatchParam->getType()->getAs<ObjCObjectPointerType>();
3298 if (OPT && (OPT->isObjCIdType() || OPT->isObjCQualifiedIdType()))
3323 assert(OPT && "Unexpected non-object pointer type in @catch");
3324 const ObjCObjectType *ObjTy = OPT->getObjectType();
H A DCGObjCGNU.cpp962 const ObjCObjectPointerType *OPT = local
964 assert(OPT && "Invalid @catch type.");
966 OPT->getObjectType()->getInterface();
H A DCGExprScalar.cpp1397 const ObjCObjectPointerType *OPT = type->castAs<ObjCObjectPointerType>(); local
1400 CharUnits size = CGF.getContext().getTypeSizeInChars(OPT->getObjectType());
/external/clang/include/clang/Sema/
H A DSema.h2187 const ObjCObjectPointerType *OPT = 0);
6143 const ObjCObjectPointerType *OPT,
6151 HandleExprPropertyRefExpr(const ObjCObjectPointerType *OPT,
/external/libcap-ng/libcap-ng-0.7/
H A Dconfigure12445 OPT="-O"
12447 OPT="-O2 -pipe"
12465 OPT="-O"
/external/libogg/
H A Dconfigure880 OPT
14766 OPT!$OPT$ac_delim
/external/libvorbis/
H A Dconfigure11879 CFLAGS=${OPT}" -D__NO_MATH_INLINES"
/external/srec/config/en.us/dictionary/
H A Dc0.620905 CO-OPT K OW0 AA1 P T
[all...]

Completed in 751 milliseconds