HomeSort by relevance Sort by last modified time
    Searched full:qualifier (Results 1 - 25 of 579) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CXX/special/class.ctor/
p4-0x.cpp 3 // A constructor shall not be declared with a ref-qualifier.
5 X() &; // expected-error{{ref-qualifier '&' is not allowed on a constructor}}
6 X(int) &&; // expected-error{{ref-qualifier '&&' is not allowed on a constructor}}
  /external/clang/test/CXX/special/class.dtor/
p2-0x.cpp 3 // A destructor shall not be declared with a ref-qualifier.
5 ~X() &; // expected-error{{ref-qualifier '&' is not allowed on a destructor}}
9 ~Y() &&; // expected-error{{ref-qualifier '&&' is not allowed on a destructor}}
  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/
p6.cpp 3 void f() const; // expected-error{{type qualifier is not allowed on this function}}
7 friend void g() const; // expected-error{{type qualifier is not allowed on this function}}
8 static void h() const; // expected-error{{type qualifier is not allowed on this function}}
13 friend void ::f() const; // expected-error{{type qualifier is not allowed on this function}}
p6-0x.cpp 3 void f0() &; // expected-error{{ref-qualifier '&' is only allowed on non-static member functions, member function pointers, and typedefs of function types}}
4 void f1() &&; // expected-error{{ref-qualifier '&&' is only allowed on non-static member functions, member function pointers, and typedefs of function types}}
9 static void f2() &; // expected-error{{ref-qualifier '&' is only allowed on non-static member functions, member function pointers, and typedefs of function types}}
10 static void f3() &&; // expected-error{{ref-qualifier '&&' is only allowed on non-static member functions, member function pointers, and typedefs of function types}}
16 func_type_lvalue f2; // expected-error{{nonmember function cannot have a ref-qualifier '&'}}
17 func_type_rvalue f3; // expected-error{{nonmember function cannot have a ref-qualifier '&&'}}
28 void (f() &&); // expected-error{{ref-qualifier '&&' is only allowed on non-static member functions, member function pointers, and typedefs of function types}}
  /external/jsr305/ri/src/main/java/javax/annotation/meta/
TypeQualifierValidator.java 9 * Given a type qualifier, check to see if a known specific constant value
10 * is an instance of the set of values denoted by the qualifier.
13 * the type qualifier
17 * values denoted by the type qualifier
TypeQualifier.java 10 * This qualifier is applied to an annotation to denote that the annotation
11 * should be treated as a type qualifier.
20 * Describes the kinds of values the qualifier can be applied to. If a
TypeQualifierDefault.java 10 * This qualifier is applied to an annotation to denote that the annotation
11 * defines a default type qualifier that is visible within the scope of the
  /sdk/ide_common/src/com/android/ide/common/resources/configuration/
FolderConfiguration.java 78 // available qualifier. If the segment doesn't match we try with the next qualifier.
79 // Because the order of the qualifier is fixed, we do not reset the first qualifier
81 // If we run out of qualifier before processing all the segments, we fail.
94 // if we reached the end of the qualifier we didn't find a matching qualifier.
179 * Returns the first invalid qualifier, or <code>null<code> if they are all valid (or if none
194 * Returns whether the Region qualifier is valid. Region qualifier can only be present if
524 ResourceQualifier qualifier = mQualifiers[i]; local
596 ResourceQualifier qualifier = null; local
734 ResourceQualifier qualifier = configurable.getConfiguration().getQualifier(q); local
757 ResourceQualifier qualifier = configurable.getConfiguration().getQualifier(q); local
    [all...]
ScreenDimensionQualifier.java 23 * Resource Qualifier for Screen Dimension.
35 * contains the biggest size first. So if the qualifier is 400x200, size 1 will always be
41 * contains the biggest size first. So if the qualifier is 400x200, size 2 will always be
90 ScreenDimensionQualifier qualifier = getQualifier(d1, d2); local
91 if (qualifier != null) {
92 config.setScreenDimensionQualifier(qualifier);
100 public boolean equals(Object qualifier) {
101 if (qualifier instanceof ScreenDimensionQualifier) {
102 ScreenDimensionQualifier q = (ScreenDimensionQualifier)qualifier;
119 ScreenDimensionQualifier qualifier = new ScreenDimensionQualifier() local
    [all...]
LanguageQualifier.java 22 * Resource Qualifier for Language.
33 * Creates and returns a qualifier from the given folder segment. If the segment is incorrect,
35 * @param segment the folder segment from which to create a qualifier.
40 LanguageQualifier qualifier = new LanguageQualifier(); local
41 qualifier.mValue = segment;
43 return qualifier;
51 * @param value the value of the qualifier, as returned by {@link #getValue()}.
100 LanguageQualifier qualifier = getQualifier(value); local
101 if (qualifier != null) {
102 config.setLanguageQualifier(qualifier);
    [all...]
RegionQualifier.java 23 * Resource Qualifier for Region.
34 * Creates and returns a qualifier from the given folder segment. If the segment is incorrect,
36 * @param segment the folder segment from which to create a qualifier.
42 RegionQualifier qualifier = new RegionQualifier(); local
43 qualifier.mValue = m.group(1);
45 return qualifier;
53 * @param value the value of the qualifier, as returned by {@link #getValue()}.
104 RegionQualifier qualifier = getQualifier(value); local
105 if (qualifier != null) {
106 config.setRegionQualifier(qualifier);
    [all...]
CountryCodeQualifier.java 23 * Resource Qualifier for Mobile Country Code.
36 * Creates and returns a qualifier from the given folder segment. If the segment is incorrect,
38 * @param segment the folder segment from which to create a qualifier.
54 CountryCodeQualifier qualifier = new CountryCodeQualifier(code); local
55 return qualifier;
64 * @param code the value of the qualifier, as returned by {@link #getCode()}.
108 CountryCodeQualifier qualifier = getQualifier(value); local
109 if (qualifier != null) {
110 config.setCountryCodeQualifier(qualifier);
118 public boolean equals(Object qualifier) {
    [all...]
ResourceQualifier.java 22 * <p/>The resource qualifier classes are designed as immutable.
27 * Returns the human readable name of the qualifier.
32 * Returns a shorter human readable name for the qualifier.
38 * Returns whether the qualifier has a valid filter value.
43 * Returns whether the qualifier has a fake value.
44 * <p/>Fake values are used internally and should not be used as real qualifier value.
49 * Check if the value is valid for this qualifier, and if so sets the value
64 * Returns whether the given qualifier is a match for the receiver.
68 * @param qualifier the reference qualifier
    [all...]
NetworkCodeQualifier.java 23 * Resource Qualifier for Mobile Network Code Pixel Density.
36 * Creates and returns a qualifier from the given folder segment. If the segment is incorrect,
38 * @param segment the folder segment from which to create a qualifier.
54 NetworkCodeQualifier qualifier = new NetworkCodeQualifier(code); local
55 return qualifier;
64 * @param code the value of the qualifier, as returned by {@link #getCode()}.
120 NetworkCodeQualifier qualifier = new NetworkCodeQualifier(code); local
121 config.setNetworkCodeQualifier(qualifier);
129 public boolean equals(Object qualifier) {
130 if (qualifier instanceof NetworkCodeQualifier)
    [all...]
KeyboardStateQualifier.java 23 * Resource Qualifier for keyboard state.
62 KeyboardStateQualifier qualifier = new KeyboardStateQualifier(); local
63 qualifier.mValue = orientation;
64 config.setKeyboardStateQualifier(qualifier);
72 public boolean isMatchFor(ResourceQualifier qualifier) {
73 if (qualifier instanceof KeyboardStateQualifier) {
74 KeyboardStateQualifier referenceQualifier = (KeyboardStateQualifier)qualifier;
98 // better qualifier
  /sdk/eclipse/sites/external/
site.xml 6 <feature url="features/com.android.ide.eclipse.adt_14.0.0.qualifier.jar" id="com.android.ide.eclipse.adt" version="14.0.0.qualifier">
9 <feature url="features/com.android.ide.eclipse.ddms_14.0.0.qualifier.jar" id="com.android.ide.eclipse.ddms" version="14.0.0.qualifier">
12 <feature url="features/com.android.ide.eclipse.hierarchyviewer_14.0.0.qualifier.jar" id="com.android.ide.eclipse.hierarchyviewer" version="14.0.0.qualifier">
15 <feature url="features/com.android.ide.eclipse.traceview_14.0.0.qualifier.jar" id="com.android.ide.eclipse.traceview" version="14.0.0.qualifier">
  /sdk/eclipse/sites/internal/
site.xml 6 <feature url="features/com.android.ide.eclipse.adt_14.0.0.qualifier.jar" id="com.android.ide.eclipse.adt" version="14.0.0.qualifier">
9 <feature url="features/com.android.ide.eclipse.ddms_14.0.0.qualifier.jar" id="com.android.ide.eclipse.ddms" version="14.0.0.qualifier">
13 <feature url="features/com.android.ide.eclipse.hierarchyviewer_14.0.0.qualifier.jar" id="com.android.ide.eclipse.hierarchyviewer" version="14.0.0.qualifier">
17 <feature url="features/com.android.ide.eclipse.tests_14.0.0.qualifier.jar" id="com.android.ide.eclipse.tests" version="14.0.0.qualifier">
20 <feature url="features/com.android.ide.eclipse.pdt_14.0.0.qualifier.jar" id="com.android.ide.eclipse.pdt" version="14.0.0.qualifier">
    [all...]
  /external/clang/test/CXX/over/over.load/
p2-0x.cpp 7 // them, but not all, have a ref-qualifier (8.3.5).
14 void i() const; // expected-error{{cannot overload a member function without a ref-qualifier with a member function with ref-qualifier '&'}}
20 template<typename T> void g(T*); // expected-error{{cannot overload a member function without a ref-qualifier with a member function with ref-qualifier '&'}}
23 void k() &&; // expected-error{{cannot overload a member function with ref-qualifier '&&' with a member function without a ref-qualifier}}
  /external/clang/test/CXX/expr/expr.mptr.oper/
p5.cpp 27 (pc->*pm)(); // expected-error{{call to pointer to member function of type 'void ()' drops 'const' qualifier}}
29 (pc->*pmv)(); // expected-error{{call to pointer to member function of type 'void () volatile' drops 'const' qualifier}}
32 (pv->*pm)(); // expected-error{{call to pointer to member function of type 'void ()' drops 'volatile' qualifier}}
33 (pv->*pmc)(); // expected-error{{call to pointer to member function of type 'void () const' drops 'volatile' qualifier}}
38 (pcv->*pmc)(); // expected-error{{call to pointer to member function of type 'void () const' drops 'volatile' qualifier}}
39 (pcv->*pmv)(); // expected-error{{call to pointer to member function of type 'void () volatile' drops 'const' qualifier}}
47 (oc.*pm)(); // expected-error{{call to pointer to member function of type 'void ()' drops 'const' qualifier}}
49 (oc.*pmv)(); // expected-error{{call to pointer to member function of type 'void () volatile' drops 'const' qualifier}}
52 (ov.*pm)(); // expected-error{{call to pointer to member function of type 'void ()' drops 'volatile' qualifier}}
53 (ov.*pmc)(); // expected-error{{call to pointer to member function of type 'void () const' drops 'volatile' qualifier}}
    [all...]
  /external/clang/test/Parser/
cxx-reference.cpp 16 int & const X = val; // expected-error {{'const' qualifier may not be applied to a reference}}
17 int & volatile Y = val; // expected-error {{'volatile' qualifier may not be applied to a reference}}
18 int & const volatile Z = val; /* expected-error {{'const' qualifier may not be applied}} \
19 expected-error {{'volatile' qualifier may not be applied}} */
  /external/clang/test/SemaCXX/
function-type-qual.cpp 3 void f() const; // expected-error {{type qualifier is not allowed on this function}}
4 void (*pf)() const; // expected-error {{type qualifier is not allowed on this function pointer}}
5 void (&rf)() const = f; // expected-error {{type qualifier is not allowed on this function reference}}
13 static void f3() const; // expected-error {{type qualifier is not allowed on this function}}
return.cpp 26 const int scalar_c(); // expected-warning{{'const' type qualifier on return type has no effect}}
27 int const scalar_c2(); // expected-warning{{'const' type qualifier on return type has no effect}}
31 const // expected-warning{{'const' type qualifier on return type has no effect}}
36 const // expected-warning{{'const' type qualifier on return type has no effect}}
39 char* const h(); // expected-warning{{'const' type qualifier on return type has no effect}}
40 char* volatile i(); // expected-warning{{'volatile' type qualifier on return type has no effect}}
54 const PCHAR GetName() { return 0; } // expected-warning{{'const' type qualifier on return type has no effect}}
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
QualifierAlive.cpp 11 TAliveTraverser(TQualifier q) : TIntermTraverser(true, false, false, true), found(false), qualifier(q)
19 TQualifier qualifier; member in class:TAliveTraverser
26 // Report whether or not a variable of the given qualifier type
33 bool QualifierWritten(TIntermNode* node, TQualifier qualifier)
35 TAliveTraverser it(qualifier);
48 if (node->getQualifier() == qualifier)
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
ConfigurationSelector.java 185 * Implementation of {@link VerifyListener} for the Density qualifier.
190 * Implementation of {@link VerifyListener} for the Screen Dimension qualifier.
211 /** mode forcing the qualifier values to be valid on a device.
212 * For instance {@link Density#NODPI} is a valid qualifier for a resource configuration but
216 * which non-empty qualifier to select. */
226 * Returns true of the qualifier is accepted.
228 boolean accept(ResourceQualifier qualifier);
312 ResourceQualifier qualifier = (ResourceQualifier)first;
314 mBaseConfiguration.removeQualifier(qualifier);
315 mSelectedConfiguration.addQualifier(qualifier);
746 CountryCodeQualifier qualifier = CountryCodeQualifier.getQualifier( local
811 NetworkCodeQualifier qualifier = NetworkCodeQualifier.getQualifier( local
878 LanguageQualifier qualifier = null; local
946 RegionQualifier qualifier = null; local
1016 SmallestScreenWidthQualifier qualifier = SmallestScreenWidthQualifier.getQualifier( local
1082 ScreenWidthQualifier qualifier = ScreenWidthQualifier.getQualifier(size); local
1147 ScreenHeightQualifier qualifier = ScreenHeightQualifier.getQualifier(size); local
1834 ScreenDimensionQualifier qualifier = ScreenDimensionQualifier.getQualifier(size1, local
1898 VersionQualifier qualifier = VersionQualifier.getQualifier( local
    [all...]
  /libcore/luni/src/main/java/java/security/cert/
PolicyQualifierInfo.java 26 * This class implements a policy qualifier as defined by the ASN.1
32 // This PolicyQualifierInfo policy qualifier id -
36 // DER encoding of the policy qualifier - part of encoded
44 * the DER encoded policy qualifier.
46 * the policy qualifier cannot be decoded.
66 * Returns a ASN.1 DER encoded copy of policy qualifier info.
68 * @return a ASN.1 DER encoded copy of policy qualifier info.
77 * Returns the identifier (an OID) of this policy qualifier info.
79 * @return the identifier of this policy qualifier info.
86 * Returns a ASN.1 DER encoded copy of the qualifier of this polic
    [all...]

Completed in 980 milliseconds

1 2 3 4 5 6 7 8 91011>>