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

1 2 3 4 56 7 8 91011>>

  /external/clang/test/FixIt/
fixit-cxx0x.cpp 138 register int n; // expected-warning {{'register' storage class specifier is deprecated}}
169 virtual void f() override final const volatile; // expected-error {{'const' qualifier may not appear after the virtual specifier 'final'}} expected-error {{'volatile' qualifier may not appear after the virtual specifier 'final'}}
176 virtual void f() override &; // expected-error {{'&' qualifier may not appear after the virtual specifier 'override'}}
177 virtual void f() override final const volatile &&; // expected-error {{'const' qualifier may not appear after the virtual specifier 'final'}} expected-error {{'volatile' qualifier may not appear after the virtual specifier 'final'}} expected-error {{'&&' qualifier may not appear after the virtual specifier 'final'}}
  /external/clang/test/Index/
complete-functor-call.cpp 37 // CHECK-CC1-NEXT: Nested name specifier
51 // CHECK-CC2-NEXT: Nested name specifier
65 // CHECK-CC3-NEXT: Nested name specifier
77 // CHECK-CC4-NEXT: Nested name specifier
89 // CHECK-CC5-NEXT: Nested name specifier
104 // CHECK-CC6-NEXT: Nested name specifier
119 // CHECK-CC7-NEXT: Nested name specifier
131 // CHECK-CC8-NEXT: Nested name specifier
143 // CHECK-CC9-NEXT: Nested name specifier
154 // CHECK-CC10-NEXT: Nested name specifier
    [all...]
complete-optional-params.cpp 25 // CHECK-CC1-NEXT: Nested name specifier
37 // CHECK-CC2-NEXT: Nested name specifier
49 // CHECK-CC3-NEXT: Nested name specifier
61 // CHECK-CC4-NEXT: Nested name specifier
74 // CHECK-CC5-NEXT: Nested name specifier
  /prebuilts/gdb/darwin-x86/lib/python2.7/unittest/test/
test_loader.py 197 # "The specifier name is a ``dotted name'' that may resolve either to
213 # "The specifier name is a ``dotted name'' that may resolve either to
232 # "The specifier name is a ``dotted name'' that may resolve ... to a
246 # "The specifier name is a ``dotted name'' that may resolve either to
262 # "The specifier name is a ``dotted name'' that may resolve either to
279 # "The specifier name is a ``dotted name'' that may resolve either to
300 # "The specifier name is a ``dotted name'' that may resolve either to
345 # "The specifier name is a ``dotted name'' that may resolve either to
364 # "The specifier name is a ``dotted name'' that may
378 # "The specifier name is a ``dotted name'' that may resolve either t
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/unittest/test/
test_loader.py 197 # "The specifier name is a ``dotted name'' that may resolve either to
213 # "The specifier name is a ``dotted name'' that may resolve either to
232 # "The specifier name is a ``dotted name'' that may resolve ... to a
246 # "The specifier name is a ``dotted name'' that may resolve either to
262 # "The specifier name is a ``dotted name'' that may resolve either to
279 # "The specifier name is a ``dotted name'' that may resolve either to
300 # "The specifier name is a ``dotted name'' that may resolve either to
345 # "The specifier name is a ``dotted name'' that may resolve either to
364 # "The specifier name is a ``dotted name'' that may
378 # "The specifier name is a ``dotted name'' that may resolve either t
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/test/
test_loader.py 197 # "The specifier name is a ``dotted name'' that may resolve either to
213 # "The specifier name is a ``dotted name'' that may resolve either to
232 # "The specifier name is a ``dotted name'' that may resolve ... to a
246 # "The specifier name is a ``dotted name'' that may resolve either to
262 # "The specifier name is a ``dotted name'' that may resolve either to
279 # "The specifier name is a ``dotted name'' that may resolve either to
300 # "The specifier name is a ``dotted name'' that may resolve either to
345 # "The specifier name is a ``dotted name'' that may resolve either to
364 # "The specifier name is a ``dotted name'' that may
378 # "The specifier name is a ``dotted name'' that may resolve either t
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/test/
test_loader.py 197 # "The specifier name is a ``dotted name'' that may resolve either to
213 # "The specifier name is a ``dotted name'' that may resolve either to
232 # "The specifier name is a ``dotted name'' that may resolve ... to a
246 # "The specifier name is a ``dotted name'' that may resolve either to
262 # "The specifier name is a ``dotted name'' that may resolve either to
279 # "The specifier name is a ``dotted name'' that may resolve either to
300 # "The specifier name is a ``dotted name'' that may resolve either to
345 # "The specifier name is a ``dotted name'' that may resolve either to
364 # "The specifier name is a ``dotted name'' that may
378 # "The specifier name is a ``dotted name'' that may resolve either t
    [all...]
  /external/clang/test/Sema/
thread-specifier.c 50 __thread auto int t12a; // expected-error-re {{cannot combine with previous '{{__thread|_Thread_local}}' declaration specifier}}
51 auto __thread int t12b; // expected-error {{cannot combine with previous 'auto' declaration specifier}}
56 __thread register int t13a; // expected-error-re {{cannot combine with previous '{{__thread|_Thread_local|thread_local}}' declaration specifier}}
57 register __thread int t13b; // expected-error {{cannot combine with previous 'register' declaration specifier}}
60 __thread typedef int t14; // expected-error-re {{cannot combine with previous '{{__thread|_Thread_local|thread_local}}' declaration specifier}}
  /external/curl/lib/
share.c 39 share->specifier |= (1<<CURL_LOCK_DATA_SHARE);
72 share->specifier |= (1<<type);
115 share->specifier &= ~(1<<type);
221 if(share->specifier & (1<<type)) {
238 if(share->specifier & (1<<type)) {
  /external/clang/lib/Parse/
ParseExprCXX.cpp 145 /// \brief Parse global scope or nested-name-specifier if present.
147 /// Parses a C++ global scope specifier ('::') or nested-name-specifier (which
151 /// '::'[opt] nested-name-specifier
154 /// nested-name-specifier:
157 /// nested-name-specifier identifier '::'
158 /// nested-name-specifier 'template'[opt] simple-template-id '::'
161 /// \param SS the scope specifier that will be set to the parsed
162 /// nested-name-specifier (or empty)
164 /// \param ObjectType if this nested-name-specifier is being parsed followin
    [all...]
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.spec.auto/
p3.cpp 43 // In C++98: 'auto' storage class specifier is redundant and incompatible with C++0x
44 // In C++0x: 'auto' storage class specifier is not permitted in C++0x, and will not be supported in future releases
45 auto int r; // expected-warning {{'auto' storage class specifier}}
  /external/clang/test/Parser/
cxx0x-lambda-expressions.cpp 77 [] [[]] {}; // expected-error {{lambda requires '()' before attribute specifier}}
78 [] __attribute__((noreturn)) {}; // expected-error {{lambda requires '()' before attribute specifier}}
88 // before the mutable specifier instead of after (unlike C++11).
  /libcore/ojluni/src/main/java/java/util/
FormattableFlags.java 48 * the format specifier.
63 * the format specifier.
72 * the format specifier.
  /external/clang/include/clang/Sema/
ParsedTemplate.h 49 /// \param SS the C++ scope specifier that precedes the template name, if
90 /// \brief Retrieve the nested-name-specifier that precedes the template
94 "Only template template arguments can have a scope specifier");
121 /// \brief The nested-name-specifier that can accompany a template template
142 /// \brief The nested-name-specifier that precedes the template name.
191 // Default-construct nested-name-specifier.
  /toolchain/binutils/binutils-2.25/opcodes/
aarch64-opc-2.c 85 {AARCH64_OPND_CLASS_IMMEDIATE, "NZCV", OPD_F_HAS_INSERTER | OPD_F_HAS_EXTRACTOR, {FLD_nzcv}, "a flag bit specifier giving an alternative value for each flag"},
108 {AARCH64_OPND_CLASS_SYSTEM, "SYSREG_AT", OPD_F_HAS_INSERTER | OPD_F_HAS_EXTRACTOR, {}, "an address translation operation specifier"},
109 {AARCH64_OPND_CLASS_SYSTEM, "SYSREG_DC", OPD_F_HAS_INSERTER | OPD_F_HAS_EXTRACTOR, {}, "a data cache maintenance operation specifier"},
110 {AARCH64_OPND_CLASS_SYSTEM, "SYSREG_IC", OPD_F_HAS_INSERTER | OPD_F_HAS_EXTRACTOR, {}, "an instructin cache maintenance operation specifier"},
111 {AARCH64_OPND_CLASS_SYSTEM, "SYSREG_TLBI", OPD_F_HAS_INSERTER | OPD_F_HAS_EXTRACTOR, {}, "a TBL invalidation operation specifier"},
114 {AARCH64_OPND_CLASS_SYSTEM, "PRFOP", OPD_F_HAS_INSERTER | OPD_F_HAS_EXTRACTOR, {}, "an prefetch operation specifier"},
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
InvalidMatrixException.java 37 * @param pattern format specifier
49 * @param pattern format specifier
  /external/clang/include/clang/AST/
DeclAccessPair.h 12 // AccessSpecifier. Generally the access specifier gives the
28 /// A POD class for pairing a NamedDecl* with an access specifier.
  /external/clang/include/clang/Basic/
DiagnosticCommonKinds.td 71 "invalid storage class specifier in function declarator">;
109 "duplicate nullability specifier %0">,
113 "conflicting nullability specifier on return types, %0 "
114 "conflicts with existing specifier %1">,
118 "conflicting nullability specifier on parameter types, %0 "
119 "conflicts with existing specifier %1">,
123 "nullability specifier %0 conflicts with existing specifier %1">;
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
p9.cpp 3 // A constexpr specifier used in an object declaration declares the object as
18 // A variable declaration which uses the constexpr specifier shall have an
  /external/clang/test/CXX/special/class.inhctor/
elsewhere.cpp 25 // specifier shall name a base class of the class being defined.
26 // If such a using-declaration names a constructor, the nested-name-specifier
  /external/clang/test/SemaCXX/
declspec-thread.cpp 4 __thread __declspec(thread) int a; // expected-error {{already has a thread-local storage specifier}}
5 __declspec(thread) __thread int b; // expected-error {{already has a thread-local storage specifier}}
  /prebuilts/gdb/darwin-x86/lib/python2.7/
nturl2path.py 14 # No drive specifier, just convert slashes
47 # No drive specifier, just convert slashes and quote the name
  /prebuilts/gdb/linux-x86/lib/python2.7/
nturl2path.py 14 # No drive specifier, just convert slashes
47 # No drive specifier, just convert slashes and quote the name
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
nturl2path.py 14 # No drive specifier, just convert slashes
47 # No drive specifier, just convert slashes and quote the name
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
nturl2path.py 14 # No drive specifier, just convert slashes
47 # No drive specifier, just convert slashes and quote the name

Completed in 1362 milliseconds

1 2 3 4 56 7 8 91011>>