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

1 2 3 4 56 7 8 91011>>

  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
parseConst.cpp 71 TQualifier qualifier = node->getType().getQualifier(); local
73 if (qualifier != EvqConst) {
SymbolTable.h 79 void setQualifier(TQualifier qualifier) { type.setQualifier(qualifier); }
321 // Searches down the precisionStack for a precision qualifier for the specified TBasicType
BaseTypes.h 143 default: return "unknown qualifier";
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
LayoutCreatorDialog.java 106 "The Region qualifier requires the Language qualifier.");
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/resources/
ResourceHelperTest.java 39 * temp fake qualifier class.
96 // check that the method returns null for an unknown qualifier class
  /external/clang/test/CodeCompletion/
ordinary-name.cpp 47 // CHECK-CC1-NEXT: COMPLETION: Pattern : typename <#qualifier#>::<#name#>
86 // CHECK-CC2-NEXT: COMPLETION: Pattern : typename <#qualifier#>::<#name#>
92 // CHECK-CC2-NEXT: COMPLETION: Pattern : using <#qualifier#>::<#name#>
123 // CHECK-CC3-NEXT: COMPLETION: Pattern : typename <#qualifier#>::<#name#>
128 // CHECK-CC3-NEXT: COMPLETION: Pattern : using <#qualifier#>::<#name#>
165 // CHECK-CC4-NEXT: COMPLETION: Pattern : typename <#qualifier#>::<#name#>
217 // CHECK-NO-RTTI: COMPLETION: Pattern : typename <#qualifier#>::<#name#>
  /external/jsr305/javadoc/
index-all.html 106 <DD>Given a type qualifier, check to see if a known specific constant value
107 is an instance of the set of values denoted by the qualifier.
190 <DT><A HREF="./javax/annotation/RegEx.html" title="annotation in javax.annotation"><B>RegEx</B></A> - Annotation Type in <A HREF="./javax/annotation/package-summary.html">javax.annotation</A><DD>This qualifier is used to denote String values that should be a Regular
207 The class to which this annotation is applied is thread-safe.<DT><A HREF="./javax/annotation/meta/TypeQualifier.html" title="annotation in javax.annotation.meta"><B>TypeQualifier</B></A> - Annotation Type in <A HREF="./javax/annotation/meta/package-summary.html">javax.annotation.meta</A><DD>This qualifier is applied to an annotation to denote that the annotation
208 should be treated as a type qualifier.<DT><A HREF="./javax/annotation/meta/TypeQualifierDefault.html" title="annotation in javax.annotation.meta"><B>TypeQualifierDefault</B></A> - Annotation Type in <A HREF="./javax/annotation/meta/package-summary.html">javax.annotation.meta</A><DD>This qualifier is applied to an annotation to denote that the annotation
209 defines a default type qualifier that is visible within the scope of the
211 a qualifier nickname.<DT><A HREF="./javax/annotation/meta/TypeQualifierValidator.html" title="interface in javax.annotation.meta"><B>TypeQualifierValidator</B></A>&lt;<A HREF="./javax/annotation/meta/TypeQualifierValidator.html" title="type parameter in TypeQualifierValidator">A</A> extends java.lang.annotation.Annotation&gt; - Interface in <A HREF="./javax/annotation/meta/package-summary.html">javax.annotation.meta</A><DD>&nbsp;</DL>
233 <DT><A HREF="./javax/annotation/meta/When.html" title="enum in javax.annotation.meta"><B>When</B></A> - Enum in <A HREF="./javax/annotation/meta/package-summary.html">javax.annotation.meta</A><DD>Used to describe the relationship between a qualifier T and the set of values
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newxmlfile/
ChooseConfigurationPage.java 243 String.format("The qualifier '%1$s' is invalid in the folder configuration.",
247 error = "The Region qualifier requires the Language qualifier.";
  /external/clang/docs/
BlockLanguageSpec.txt 111 The __block Storage Qualifier
113 In addition to the new Block type we also introduce a new storage qualifier, __block, for local variables. [testme: a __block declaration within a block literal] The __block storage qualifier is mutually exclusive to the existing local storage qualifiers auto, register, and static.[testme] Variables qualified by __block act as if they were in allocated storage and this storage is automatically recovered after last use of said variable. An implementation may choose an optimization where the storage is initially automatic and only "moved" to allocated (heap) storage upon a Block_copy of a referencing Block. Such variables may be mutated as normal variables are.
135 In the Objective-C and Objective-C++ languages, we allow the __weak specifier for __block variables of object type. If garbage collection is not enabled, this qualifier causes these variables to be kept without retain messages being sent. This knowingly leads to dangling pointers if the Block (or a copy) outlives the lifetime of this object.
AutomaticReferenceCounting.html 628 <p>An <span class="term">ownership qualifier</span> is a type
629 qualifier which applies only to retainable object owner types. An array type is
631 qualifier to an array type so qualifies its element type.</p>
633 <p>A program is ill-formed if it attempts to apply an ownership qualifier
635 qualifier. There is a single exception to this rule: an ownership qualifier
637 ownership qualifier provided by the template argument.</p>
642 retainable object owner type which lacks an ownership qualifier.</p>
646 object pointer type have an ownership qualifier. The ability to override an ownership qualifier during template substitution is required to counteract the <a href="#ownership.inference.template_ (…)
    [all...]
  /external/clang/test/SemaCXX/
references.cpp 80 void test8(int& const,// expected-error{{'const' qualifier may not be applied to a reference}}
rval-references-examples.cpp 96 void operator()(A&, const A&, A&&, const A&&, A&&, const A&&); // expected-note{{candidate function not viable: 5th argument ('const perfect_forwarding::A') would lose const qualifier}}
cstyle-cast.cpp 31 // Drop reference. Intentionally without qualifier change.
34 // Array decay. Intentionally without qualifier change.
  /external/doclava/src/com/google/doclava/
FieldInfo.java 434 + " has changed 'static' qualifier");
440 + " has changed 'final' qualifier");
446 + " has changed 'transient' qualifier");
452 + " has changed 'volatile' qualifier");
  /external/mesa3d/src/glsl/
ast_to_hir.cpp     [all...]
glsl_parser.ypp 691 _mesa_glsl_error(& @3, state, "global precision qualifier can "
764 $$->type->qualifier = $1;
769 $$->type->qualifier = $1;
779 $$->type->qualifier = $1;
788 $$->type->qualifier = $1;
971 $$->qualifier = $1;
1284 "precision qualifier forbidden "
    [all...]
  /external/webkit/Source/WebCore/loader/cache/
CachedResourceHandle.h 41 // Parenthesis is needed for winscw compiler to resolve class qualifier in this case.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
ResourceContentProvider.java 44 * {@link ResourceItem}. It is displayed as a list of resource qualifier.
ResourceLabelProvider.java 45 * It is displayed as a list of resource qualifier.
  /sdk/lint/libs/lint_checks/src/com/android/tools/lint/checks/
StateListDetector.java 43 "state qualifier. If not, all subsequent items in the list will be ignored " +
  /external/clang/include/clang/Sema/
CodeCompleteConsumer.h 242 /// \brief Code completion within a type-qualifier list.
654 NestedNameSpecifier *Qualifier;
658 NestedNameSpecifier *Qualifier = 0,
666 DeclaringEntity(false), Qualifier(Qualifier) {
676 DeclaringEntity(false), Qualifier(0) {
686 DeclaringEntity(false), Qualifier(0) {
699 DeclaringEntity(false), Qualifier(0)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
LayoutDeviceHandler.java 61 * For the qualifier values, the qualifier is created and added to the current config
  /frameworks/base/docs/html/guide/practices/
screens_support.jd 323 should instead use the {@code sw&lt;N&gt;dp} configuration qualifier to define the smallest
362 alternative resources available, a resource directory with the {@code hdpi} qualifier (such as
369 <p>The "default" resources are those that are not tagged with a configuration qualifier. For
396 configuration qualifier is a string that you can append to a resource directory in your Android
399 <p>To use a configuration qualifier:</p>
402 format: <nobr>{@code &lt;resources_name&gt;-&lt;qualifier&gt;}</nobr>
406 <li>{@code &lt;qualifier&gt;} is a configuration qualifier from table 1, below, specifying the
410 <p>You can use more than one {@code &lt;qualifier&gt;} at a time&mdash;simply separate each
411 qualifier with a dash.</p
    [all...]
  /external/clang/lib/AST/
StmtPrinter.cpp 529 if (NestedNameSpecifier *Qualifier = Node->getQualifier())
530 Qualifier->print(OS, Policy);
541 if (NestedNameSpecifier *Qualifier = Node->getQualifier())
542 Qualifier->print(OS, Policy);
850 if (NestedNameSpecifier *Qualifier = Node->getQualifier())
851 Qualifier->print(OS, Policy);
    [all...]
  /external/clang/lib/Parse/
ParseDecl.cpp 31 /// specifier-qualifier-list abstract-declarator[opt]
    [all...]

Completed in 1028 milliseconds

1 2 3 4 56 7 8 91011>>