HomeSort by relevance Sort by last modified time
    Searched full:qualifiers (Results 76 - 100 of 446) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/clang/lib/AST/
DeclCXX.cpp 263 return getCopyConstructor(Qualifiers::Const) != 0;
284 /// cv-qualifiers on a single parameter, and return the best overload candidate
288 const SmallVectorImpl<std::pair<CXXMethodDecl *, Qualifiers> > &Cands) {
314 SmallVector<std::pair<CXXMethodDecl *, Qualifiers>, 4> Found;
325 if (((TypeQuals & Qualifiers::Const) == (FoundTQs & Qualifiers::Const)) ||
326 (!(TypeQuals & Qualifiers::Const) && (FoundTQs & Qualifiers::Const)))
329 Qualifiers::fromCVRMask(FoundTQs)));
350 SmallVector<std::pair<CXXMethodDecl *, Qualifiers>, 4> Found
    [all...]
ItaniumMangle.cpp 286 void mangleQualifiers(Qualifiers Quals);
    [all...]
  /external/clang/test/FixIt/
fixit-objc.m 14 <X> *P; // expected-warning{{protocol qualifiers without 'id' is archaic}}
  /external/clang/test/SemaCXX/
references.cpp 57 const int& r = cvi; // expected-error{{binding of reference to type 'const int' to a value of type 'const volatile int' drops qualifiers}}
  /external/libpcap/
grammar.y 317 /* protocol level qualifiers */
321 /* 'direction' qualifiers */
329 /* address type qualifiers */
335 /* non-directional address type qualifiers */
  /frameworks/base/docs/html/training/multiscreen/
index.jd 73 views, {@link android.widget.RelativeLayout}, screen size and orientation qualifiers,
  /libcore/luni/src/main/java/java/security/cert/
PKIXParameters.java 66 // qualifiers in a certificate policies extension that
427 * qualifiers in a certificate policy extension that is marked as critical.
438 * qualifiers in a certificate policy extension that is marked as critical.
558 sb.append("\n Policy Qualifiers Rejected: ");
  /sdk/ide_common/src/com/android/ide/common/resources/configuration/
ResourceQualifier.java 21 * Base class for resource qualifiers.
  /frameworks/base/docs/html/guide/topics/resources/
localization.jd 193 <code>res/anim-<em>&lt;qualifiers&gt;</em></code> folders)<br>
195 <code>res/xml-<em>&lt;qualifiers&gt;</em></code> folders)<br>
197 <code>res/raw-<em>&lt;qualifiers&gt;</em></code> folders)
213 <p>An application can specify many <code>res/<em>&lt;qualifiers&gt;</em>/</code>
214 directories, each with different qualifiers. To create an alternative resource for
261 set of rules in deciding which file to use. Among the qualifiers that can be
285 <p class="note"><strong>Exception:</strong> The only qualifiers that take
322 process. All the qualifiers are described and listed in order of
588 <code>res/values-<em>&lt;qualifiers&gt;</em>/strings.xml</code> files. </td>
602 layout, and place them in <code>res/drawable-<em>&lt;qualifiers&gt;</em>/</code> and
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/resources/manager/
ConfigMatchTest.java 59 // create a default config with all qualifiers.
239 * of Qualifiers. <code>null</code> is permitted and will make the FolderConfiguration not use
  /external/clang/lib/Sema/
SemaOverload.cpp 791 // cv-qualifiers (if any) and ref-qualifier (if any) on the function itself.
    [all...]
JumpDiagnostics.cpp 138 case Qualifiers::OCL_None:
139 case Qualifiers::OCL_ExplicitNone:
140 case Qualifiers::OCL_Autoreleasing:
143 case Qualifiers::OCL_Strong:
144 case Qualifiers::OCL_Weak:
SemaLookup.cpp     [all...]
  /external/clang/lib/CodeGen/
CGRTTI.cpp 221 // Check the qualifiers.
222 Qualifiers Quals = PointeeTy.getQualifiers();
450 // Ignore protocol qualifiers.
714 static unsigned ComputeQualifierFlags(Qualifiers Quals) {
730 // Drop qualifiers.
911 Qualifiers Quals;
943 Qualifiers Quals;
    [all...]
  /external/clang/include/clang/Sema/
DeclSpec.h 202 /// type-qualifiers, and function-specifiers.
267 // type-qualifiers
268 enum TQ { // NOTE: These flags must be kept in sync with Qualifiers::TQ.
301 // type-qualifiers
329 // List of protocol qualifiers for objective-c classes. Used for
472 // type-qualifiers
480 /// \brief Clear out all of the type qualifiers.
    [all...]
  /external/clang/lib/StaticAnalyzer/
README.txt 84 CXXRecordDecl*, which means we do not use type qualifiers. In methods, we
86 taking type qualifiers into account. It does not matter we use qualified
  /external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.list/
p7-0x.cpp 168 // We don't want qualifiers on the types in the diagnostic.
173 // Template arguments make it harder to avoid printing qualifiers:
  /external/libpng/contrib/visupng/
cexcept.h 77 qualifiers (const, volatile, etc) it likes. Examples:
129 assigned to) of the same type (disregarding type qualifiers) that
  /external/bluetooth/glib/gobject/
gobject-query.c 113 g_fprintf (stderr, "qualifiers:\n");
  /external/clang/include/clang/Serialization/
ASTWriter.h 80 /// allow for the const/volatile qualifiers.
82 /// Keys in the map never have const/volatile qualifiers.
157 /// allow for the const/volatile qualifiers.
159 /// Keys in the map never have const/volatile qualifiers.
  /external/clang/lib/ARCMigrate/
TransBlockObjCVariable.cpp 121 return ty.getLocalQualifiers().getObjCLifetime() == Qualifiers::OCL_Strong;
TransRetainReleaseDealloc.cpp 76 if (rec->getType().getObjCLifetime() == Qualifiers::OCL_ExplicitNone &&
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
p3.cpp 59 constexpr T &operator=(const T&) = default; // expected-error {{an explicitly-defaulted copy assignment operator may not have 'const', 'constexpr' or 'volatile' qualifiers}}
  /external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/
p5-0x.cpp 126 const int& r2 = cvi; // expected-error{{binding of reference to type 'const int' to a value of type 'const volatile int' drops qualifiers}}
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
p3.cpp 5 // Top-level cv-qualifiers of P's type are ignored for type deduction.

Completed in 503 milliseconds

1 2 34 5 6 7 8 91011>>