/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/lib/AST/ |
CXXInheritance.cpp | 92 [this, BaseDecl](const CXXBaseSpecifier *Specifier, CXXBasePath &Path) { 93 return FindBaseClass(Specifier, Path, BaseDecl); 113 [this, BaseDecl](const CXXBaseSpecifier *Specifier, CXXBasePath &Path) { 114 return FindVirtualBaseClass(Specifier, Path, BaseDecl); 219 // Add this base specifier to the current path. 284 // Pop this base specifier off the current path (if we're 356 bool CXXRecordDecl::FindBaseClass(const CXXBaseSpecifier *Specifier, 361 return Specifier->getType()->castAs<RecordType>()->getDecl() 365 bool CXXRecordDecl::FindVirtualBaseClass(const CXXBaseSpecifier *Specifier, 370 return Specifier->isVirtual() & [all...] |
/external/clang/test/Index/ |
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
|
keep-going.cpp | 22 // CHECK: C++ base class specifier=A<int>:4:7 [access=public isVirtual=false] [type=A<int>] [typekind=Unexposed] [canonicaltype=A<int>] [canonicaltypekind=Record] [templateargs/1= [type=int] [typekind=Int]] [isPOD=0] [nbFields=1] 25 // CHECK: C++ base class specifier=A<float>:4:7 [access=public isVirtual=false] [type=A<float>] [typekind=Unexposed] [canonicaltype=A<float>] [canonicaltypekind=Record] [templateargs/1= [type=float] [typekind=Float]] [isPOD=0] [nbFields=1]
|
/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}}
|
typo-correction.c | 13 a = b ? : 0; // expected-warning {{type specifier missing, defaults to 'int'}} \ 17 a = goobar ?: 4; // expected-warning {{type specifier missing, defaults to 'int'}} \
|
/external/curl/lib/ |
share.c | 39 share->specifier |= (1<<CURL_LOCK_DATA_SHARE); 72 share->specifier |= (1<<type); 117 share->specifier &= ~(1<<type); 225 if(share->specifier & (1<<type)) { 242 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...] |
/hardware/interfaces/radio/1.2/vts/functional/ |
radio_hidl_hal_api.cpp | 28 RadioAccessSpecifier specifier = { local 34 .type = ScanType::ONE_SHOT, .interval = 60, .specifiers = {specifier}}; 51 * Test IRadio.startNetworkScan() with invalid specifier. 82 RadioAccessSpecifier specifier = { local 90 .specifiers = {specifier}, 118 RadioAccessSpecifier specifier = { local 126 .specifiers = {specifier}, 154 RadioAccessSpecifier specifier = { local 162 .specifiers = {specifier}, 190 RadioAccessSpecifier specifier = local 226 RadioAccessSpecifier specifier = { local 262 RadioAccessSpecifier specifier = { local 298 RadioAccessSpecifier specifier = { local 333 RadioAccessSpecifier specifier = { local [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 | 56 /// \param SS the C++ scope specifier that precedes the template name, if 97 /// \brief Retrieve the nested-name-specifier that precedes the template 101 "Only template template arguments can have a scope specifier"); 128 /// \brief The nested-name-specifier that can accompany a template template 149 /// \brief The nested-name-specifier that precedes the template name. 198 // Default-construct nested-name-specifier.
|
/prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Sema/ |
ParsedTemplate.h | 56 /// \param SS the C++ scope specifier that precedes the template name, if 97 /// \brief Retrieve the nested-name-specifier that precedes the template 101 "Only template template arguments can have a scope specifier"); 128 /// \brief The nested-name-specifier that can accompany a template template 149 /// \brief The nested-name-specifier that precedes the template name. 198 // Default-construct nested-name-specifier.
|
/prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Sema/ |
ParsedTemplate.h | 56 /// \param SS the C++ scope specifier that precedes the template name, if 97 /// \brief Retrieve the nested-name-specifier that precedes the template 101 "Only template template arguments can have a scope specifier"); 128 /// \brief The nested-name-specifier that can accompany a template template 149 /// \brief The nested-name-specifier that precedes the template name. 198 // Default-construct nested-name-specifier.
|
/toolchain/binutils/binutils-2.27/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 instruction 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, {}, "a prefetch operation specifier"},
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
nturl2path.py | 14 # No drive specifier, just convert slashes
47 # No drive specifier, just convert slashes and quote the name
|
/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/class/class.static/class.static.data/ |
p3.cpp | 17 static const double f = 0.0; // expected-error {{requires 'constexpr' specifier}} expected-note {{add 'constexpr'}} 18 static char *const g = 0; // expected-error {{requires 'constexpr' specifier}}
|
/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}}
|
/external/icu/icu4c/source/io/ |
uprintf.h | 86 * format specifier. 90 * @return The number of characters contained in this specifier.
|