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

12

/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/lzma/CPP/
H A DBuild.mak34 LFLAGS = $(LFLAGS) -OPT:NOWIN98
65 LFLAGS = $(LFLAGS) -nologo -OPT:REF -OPT:ICF
/external/chromium_org/third_party/openssl/
H A Dimport_from_android.sh203 for OPT; do
205 case $OPT in
210 ANDROID_OPENSSL_GIT_COMMIT=${OPT#--aosp-commit=}
212 panic "Missing option value: $OPT"
216 ANDROID_OPENSSL_GIT_SOURCE=${OPT#--aosp-git=}
218 panic "Missing option value: $OPT"
222 TEMP_DIR=${OPT#--temp-dir=}
224 panic "Missing option value: $OPT"
234 panic "Invalid option '$OPT', see --help for details."
/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:
H A DOPTRecord.java11 * header. An OPT should be generated by Resolver.
37 * Creates an OPT Record. This is normally called by SimpleResolver, but can
52 super(Name.root, Type.OPT, payloadSize, 0);
64 * Creates an OPT Record with no data. This is normally called by
81 * Creates an OPT Record with no data. This is normally called by
101 throw st.exception("no text format defined for OPT");
/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/chromium_org/third_party/openssl/openssl/
H A Dcheck-all-builds.sh164 for OPT; do
165 case $OPT in
170 BUILD_DIR=${OPT##--build-dir=}
176 NUM_JOBS=${OPT##--jobs=}
182 NUM_JOBS=${OPT##-j}
185 panic "Unknown option '$OPT', see --help for details."
188 BUILD_TYPES="$BUILD_TYPES $OPT"
/external/openssl/
H A Dcheck-all-builds.sh164 for OPT; do
165 case $OPT in
170 BUILD_DIR=${OPT##--build-dir=}
176 NUM_JOBS=${OPT##--jobs=}
182 NUM_JOBS=${OPT##-j}
185 panic "Unknown option '$OPT', see --help for details."
188 BUILD_TYPES="$BUILD_TYPES $OPT"
/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/lib/AST/
H A DType.cpp415 if (const ObjCObjectPointerType *OPT = getAs<ObjCObjectPointerType>())
416 return OPT->getPointeeType();
494 if (const ObjCObjectPointerType *OPT = getAs<ObjCObjectPointerType>()) {
495 if (OPT->isObjCQualifiedIdType())
496 return OPT;
504 if (const ObjCObjectPointerType *OPT = getAs<ObjCObjectPointerType>()) {
505 if (OPT->isObjCQualifiedClassType())
506 return OPT;
512 if (const ObjCObjectPointerType *OPT = getAs<ObjCObjectPointerType>()) {
513 if (OPT
[all...]
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...]
/external/clang/lib/Sema/
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 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 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
H A DSemaExpr.cpp8708 else if (const ObjCObjectPointerType *OPT =
8710 Result = OPT->getPointeeType();
/external/libogg/win32/
H A DMakefile94 OPT = macro
/external/clang/include/clang/AST/
H A DType.h4914 if (const ObjCObjectPointerType *OPT = getAs<ObjCObjectPointerType>())
4915 return OPT->isObjCQualifiedIdType();
4919 if (const ObjCObjectPointerType *OPT = getAs<ObjCObjectPointerType>())
4920 return OPT->isObjCQualifiedClassType();
4924 if (const ObjCObjectPointerType *OPT = getAs<ObjCObjectPointerType>())
4925 return OPT->isObjCIdType();
4929 if (const ObjCObjectPointerType *OPT = getAs<ObjCObjectPointerType>())
4930 return OPT->isObjCClassType();
4934 if (const PointerType *OPT = getAs<PointerType>())
4935 return OPT
[all...]
/external/chromium_org/third_party/libxslt/win32/
H A DMakefile73 LDFLAGS = $(LDFLAGS) /OPT:NOWIN98
/external/chromium_org/build/android/
H A Dadb_gdb186 panic "Unknown option $OPT, see --help." >&2
/external/chromium_org/third_party/libxml/src/win32/
H A DMakefile97 LDFLAGS = $(LDFLAGS) /OPT:NOWIN98
/external/clang/lib/CodeGen/
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();
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 DCGExprScalar.cpp1630 const ObjCObjectPointerType *OPT = type->castAs<ObjCObjectPointerType>(); local
1633 CharUnits size = CGF.getContext().getTypeSizeInChars(OPT->getObjectType());
/external/clang/include/clang/Sema/
H A DSema.h2479 const ObjCObjectPointerType *OPT = 0);
6602 const ObjCObjectPointerType *OPT,
6611 HandleExprPropertyRefExpr(const ObjCObjectPointerType *OPT,
/external/libcap-ng/libcap-ng-0.7/
H A Dconfigure12445 OPT="-O"
12447 OPT="-O2 -pipe"
12465 OPT="-O"

Completed in 1810 milliseconds

12