/external/clang/test/Sema/ |
ms_abi-sysv_abi.c | 7 // Different CC qualifiers are not compatible
|
predef.c | 9 expected-warning {{initializing 'char *' with an expression of type 'const char [1]' discards qualifiers}}
|
void_arg.c | 26 void f(const void); // expected-error {{parameter must not have type qualifiers}}
|
array-constraint.c | 49 strFunc(staticAry); // expected-warning{{passing 'const char [5]' to parameter of type 'char *' discards qualifiers}}
|
stdcall-fastcall.c | 7 // Different CC qualifiers are not compatible
|
/external/clang/test/SemaCXX/ |
return.cpp | 1 // RUN: %clang_cc1 %s -std=c++11 -fcxx-exceptions -fexceptions -fsyntax-only -Wignored-qualifiers -verify 43 volatile // expected-warning{{'const volatile' type qualifiers on return type have no effect}} 47 const volatile int scalar_cv(); // expected-warning{{'const volatile' type qualifiers on return type have no effect}} 55 const int volatile // expected-warning {{'const volatile' type qualifiers on return type have no effect}}
|
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/options/ |
package.html | 12 <li>PropertyOptions - these are used to create properties and also to retrieve information about simple, array or struct properties, as well as qualifiers
|
/device/moto/shamu/camera/QCamera2/stack/mm-camera-interface/ |
Android.mk | 7 # cam_intf.c has type conversion discarding qualifiers. 10 -Wno-error=incompatible-pointer-types-discards-qualifiers \
|
/libcore/ojluni/src/main/java/sun/security/x509/ |
PolicyInformation.java | 68 public static final String QUALIFIERS = "qualifiers"; 82 * Must not be NULL. Specify an empty Set for no qualifiers. 165 * Returns an empty Set if there are no qualifiers. 178 } else if (name.equalsIgnoreCase(QUALIFIERS)) { 196 } else if (name.equalsIgnoreCase(QUALIFIERS)) { 225 if (name.equalsIgnoreCase(QUALIFIERS)) { 244 elements.addElement(QUALIFIERS);
|
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/ |
XMPIterator.java | 32 * type (simple, struct, or array) and whether it has qualifiers. 44 * delivers the value. Qualifiers for this node are visited next. The fields of 45 * a struct or items of an array are visited after the qualifiers of the parent. 51 * qualifiers of the immediate children, the qualifier nodes being below what 54 * qualifiers. 57 * <li>OMIT_QUALIFIERS - Do not visit the qualifiers.
|
/external/clang/lib/AST/ |
TypePrinter.cpp | 91 void print(const Type *ty, Qualifiers qs, raw_ostream &OS, 99 void printBefore(const Type *ty, Qualifiers qs, raw_ostream &OS); 101 void printAfter(const Type *ty, Qualifiers qs, raw_ostream &OS); 115 if (TypeQuals & Qualifiers::Const) { 119 if (TypeQuals & Qualifiers::Volatile) { 124 if (TypeQuals & Qualifiers::Restrict) { 144 void TypePrinter::print(const Type *T, Qualifiers Quals, raw_ostream &OS, 160 // CanPrefixQualifiers - We prefer to print type qualifiers before the type, 239 Qualifiers Quals = Split.Quals; 249 void TypePrinter::printBefore(const Type *T,Qualifiers Quals, raw_ostream &OS) [all...] |
MicrosoftMangle.cpp | 229 // FIXME: If we add support for __ptr32/64 qualifiers, then we should push 281 void mangleQualifiers(Qualifiers Quals, bool IsMember); 283 void manglePointerCVQualifiers(Qualifiers Quals); 284 void manglePointerExtQualifiers(Qualifiers Quals, QualType PointeeType); 298 Qualifiers Quals, \ 460 // <variable-type> ::= <type> <cvr-qualifiers> 461 // ::= <type> <pointee-cvr-qualifiers> # pointers, references [all...] |
/external/clang/lib/StaticAnalyzer/Checkers/ |
DynamicTypeChecker.cpp | 80 QualType::print(DynamicType.getTypePtr(), Qualifiers(), OS, C.getLangOpts(), 83 QualType::print(StaticType.getTypePtr(), Qualifiers(), OS, C.getLangOpts(), 124 QualType::print(TrackedType.getType().getTypePtr(), Qualifiers(), OS, 131 Qualifiers(), OS, LangOpts, llvm::Twine()); 133 QualType::print(ExplicitCast->getType().getTypePtr(), Qualifiers(), OS, 139 Qualifiers(), OS, LangOpts, llvm::Twine()); 141 QualType::print(ImplicitCast->getType().getTypePtr(), Qualifiers(), OS,
|
/external/llvm/test/DebugInfo/Generic/ |
debug-info-qualifiers.ll | 2 ; Test (r)value qualifiers on C++11 non-static member functions. 3 ; Generated from tools/clang/test/CodeGenCXX/debug-info-qualifiers.cpp 65 !1 = !DIFile(filename: "debug-info-qualifiers.cpp", directory: "") 69 !5 = !DIFile(filename: "debug-info-qualifiers.cpp", directory: "") 80 !18 = !DIFile(filename: "debug-info-qualifiers.cpp", directory: "")
|
/external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/dcl.fct.def.default/ |
p2.cpp | 3 // FIXME: test with non-std qualifiers 25 ConstAssignment& operator=(ConstAssignment&&) const = default; // expected-error {{an explicitly-defaulted move assignment operator may not have 'const', 'constexpr' or 'volatile' qualifiers}} 73 ConstAssignment& operator=(const ConstAssignment&) const = default; // expected-error {{an explicitly-defaulted copy assignment operator may not have 'const', 'constexpr' or 'volatile' qualifiers}}
|
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/ |
InjectConstructorValidator.java | 65 ImmutableSet<? extends AnnotationMirror> qualifiers = getQualifiers(parameter); local 66 if (qualifiers.size() > 1) { 67 for (AnnotationMirror qualifier : qualifiers) {
|
/external/mesa3d/src/glsl/ |
ast_type.cpp | 91 /* Uniform block layout qualifiers get to overwrite each 93 * qualifiers currently don't allow duplicates. 99 "duplicate layout qualifiers used\n");
|
/bionic/libc/include/ |
libgen.h | 42 * Note that this has the wrong argument cv-qualifiers, but doesn't modify its 49 /* This has the wrong argument cv-qualifiers, but doesn't modify its input and uses thread-local storage for the result if necessary. */
|
/external/clang/lib/CodeGen/ |
CGValue.h | 177 Qualifiers Quals; 220 void Initialize(QualType Type, Qualifiers Quals, 255 return Quals.getCVRQualifiers() & ~Qualifiers::Const; 260 Qualifiers::ObjCLifetime getObjCLifetime() const { 289 return Quals.getObjCGCAttr() == Qualifiers::Weak; 292 return Quals.getObjCGCAttr() == Qualifiers::Strong; 311 const Qualifiers &getQuals() const { return Quals; } 312 Qualifiers &getQuals() { return Quals; } 375 Qualifiers qs = type.getQualifiers(); 445 // Qualifiers [all...] |
/development/samples/training/ContactsList/res/values/ |
dimens.xml | 22 qualifiers. -->
|
/external/boringssl/src/crypto/x509v3/ |
pcy_data.c | 72 /* Don't free qualifiers if shared */ 83 * and additional data with just the qualifiers of anyPolicy and ID from 129 ret->qualifier_set = policy->qualifiers; 130 policy->qualifiers = NULL;
|
/external/clang/test/CXX/dcl.decl/dcl.fct.def/dcl.fct.def.default/ |
p1.cpp | 14 // (except for possibly differing ref-qualifiers
|
/external/clang/test/CXX/over/over.match/over.match.best/over.ics.rank/ |
p3-0x.cpp | 19 // FIXME: We don't support ref-qualifiers yet.
|
/external/clang/test/CodeGen/ |
functions.c | 42 // Qualifiers on parameter types shouldn't make a difference.
|
/external/clang/test/Parser/ |
cxx0x-in-cxx98.cpp | 7 // expected-warning{{reference qualifiers on functions are a C++11 extension}}
|