OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:specifier
(Results
151 - 175
of
808
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/clang/lib/Sema/
DeclSpec.cpp
1
//===--- SemaDeclSpec.cpp - Declaration
Specifier
Semantic Analysis -------===//
329
/// declaration
specifier
includes.
855
// Check the type
specifier
components first.
[
all
...]
/external/clang/test/SemaCXX/
enum-scoped.cpp
137
struct A::a; // expected-error {{incomplete type 'test6::A' named in nested name
specifier
}}
138
enum A::b; // expected-error {{incomplete type 'test6::A' named in nested name
specifier
}}
139
int A::c; // expected-error {{incomplete type 'test6::A' named in nested name
specifier
}}
140
void A::d(); // expected-error {{incomplete type 'test6::A' named in nested name
specifier
}}
142
(void) A::e; // expected-error {{incomplete type 'test6::A' named in nested name
specifier
}}
cxx98-compat.cpp
74
// expected-warning {{'auto' type
specifier
is incompatible with C++98}}
113
// expected-warning@-2 {{'auto' type
specifier
is incompatible with C++98}}
139
auto auto_deduction = 0; // expected-warning {{'auto' type
specifier
is incompatible with C++98}}
140
int *p = new auto(0); // expected-warning {{'auto' type
specifier
is incompatible with C++98}}
143
char16_t c16 = 0; // expected-warning {{'char16_t' type
specifier
is incompatible with C++98}}
144
char32_t c32 = 0; // expected-warning {{'char32_t' type
specifier
is incompatible with C++98}}
145
constexpr int const_expr = 0; // expected-warning {{'constexpr'
specifier
is incompatible with C++98}}
146
decltype(const_expr) decl_type = 0; // expected-warning {{'decltype' type
specifier
is incompatible with C++98}}
286
static constexpr double d = 0.0; // expected-warning {{static data member 'd' in union is incompatible with C++98}} expected-warning {{'constexpr'
specifier
is incompatible with C++98}}
292
int EnumNNS = Enum::enum_val; // expected-warning {{enumeration type in nested name
specifier
is incompatible with C++98}
[
all
...]
nested-name-spec.cpp
167
Y::foo y; // expected-error{{incomplete type 'Y' named in nested name
specifier
}}
170
// expected-error{{C++ requires a type
specifier
for all declarations}} \
189
foo<somens:a> a2; // expected-error {{unexpected ':' in nested name
specifier
}}
227
A::execute(path); // expected-error {{incomplete type 'test3::A' named in nested name
specifier
}}
/external/llvm/utils/TableGen/
X86RecognizableInstr.h
138
/// the LLVM tables to an OperandType for use in the operand
specifier
.
160
/// the operand
specifier
.
230
/// emitInstructionSpecifier - Loads the instruction
specifier
for the current
233
/// \param tables The DisassemblerTables to populate with the
specifier
for
247
/// \param tables The DisassemblerTables that the
specifier
will be added to.
/external/clang/lib/Analysis/
PrintfFormatString.cpp
66
// Look for a '%' character that indicates the start of a format
specifier
.
75
Start = I++; // Record the start of the format
specifier
.
80
// No format
specifier
found?
168
// Finally, look for the conversion
specifier
.
235
// Keep looking for a format
specifier
until we have exhausted the string.
239
// Did a fail-stop error of any kind occur when parsing the
specifier
?
247
// We have a format
specifier
. Pass it to the callback.
394
// Handle Objective-C objects first. Note that while the '%@'
specifier
will
527
// Set conversion
specifier
and disable any flags which do not apply to it.
579
// Conversion
specifier
[
all
...]
/external/clang/include/clang/Basic/
Specifiers.h
78
/// were written in a particular type
specifier
sequence.
86
/// \brief A C++ access
specifier
(public, private, protected), plus the
157
/// \brief Thread storage-class-
specifier
.
/external/clang/test/CXX/class.access/class.access.base/
p1.cpp
5
// the public access
specifier
, the public members of the base class
53
// the protected access
specifier
, the public and protected members
103
// the private access
specifier
, the public and protected members of
/external/chromium/chrome/browser/sync/engine/
http_post_provider_interface.h
32
// |content_type| is a null-terminated MIME type
specifier
.
/external/chromium-libpac/src/
net_util.h
38
// Parses an IP block
specifier
from CIDR notation to an
/external/chromium_org/sync/internal_api/public/
http_post_provider_interface.h
27
// |content_type| is a null-terminated MIME type
specifier
.
/external/chromium_org/third_party/mach_override/libudis86/
udint.h
67
/* printf formatting int64
specifier
*/
/external/clang/include/clang/AST/
ASTImporter.h
145
/// \brief Import the given nested-name-
specifier
from the "from"
148
/// \returns the equivalent nested-name-
specifier
in the "to"
152
/// \brief Import the given nested-name-
specifier
from the "from"
155
/// \returns the equivalent nested-name-
specifier
in the "to"
/external/clang/lib/Headers/
mm_malloc.h
36
// exception
specifier
. Via an "egregious workaround" in
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
p8.cpp
54
// The constexpr
specifier
is allowed for static member functions of non-literal types.
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.spec.auto/
p3-1y.cpp
42
decltype(auto) int r; // expected-error {{cannot combine with previous 'decltype(auto)' declaration
specifier
}} expected-error {{requires an initializer}}
/external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.ref/
p5.cpp
136
//
specifier
(7.1.1), is a class member (9.2) declaration within a
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p5.cpp
3
// An attribute-
specifier
-seq in a lambda-declarator appertains to the
/external/clang/test/Sema/
address_spaces.c
12
_AS2 *x;// expected-warning {{type
specifier
missing, defaults to 'int'}}
private-extern.c
73
// FIXME: linkage
specifier
in warning.
/external/clang/test/SemaTemplate/
temp_arg_template.cpp
38
expected-error{{C++ requires a type
specifier
for all declarations}}
/external/compiler-rt/lib/sanitizer_common/
sanitizer_common_interceptors_scanf.inc
107
// Conversion
specifier
.
153
// Returns true if the character is an integer conversion
specifier
.
158
// Returns true if the character is an floating point conversion
specifier
.
188
// Invalid conversion
specifier
.
/external/llvm/include/llvm/ADT/
ArrayRef.h
128
assert(N <= size() && "Invalid
specifier
");
135
assert(N+M <= size() && "Invalid
specifier
");
229
assert(N <= this->size() && "Invalid
specifier
");
236
assert(N+M <= this->size() && "Invalid
specifier
");
/external/llvm/test/MC/Disassembler/ARM/
unpredictable-UQADD8-arm.txt
9
# DPFrm with bad reg
specifier
(s)
/libcore/luni/src/main/java/java/util/
Formattable.java
20
* Classes that handle custom formatting for the 's'
specifier
of {@code Formatter}
Completed in 317 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>