OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:expression
(Results
301 - 325
of
3197
) sorted by null
<<
11
12
13
14
15
16
17
18
19
20
>>
/external/clang/test/SemaCXX/
dcl_ambig_res.cpp
28
new (int(*p)) int; //new-placement
expression
43
(void)sizeof(int(1)); //
expression
52
(void)(int(1)); //
expression
static-assert.cpp
5
static_assert(f(), "f"); // expected-error {{static_assert
expression
is not an integral constant
expression
}} expected-note {{non-constexpr function 'f' cannot be used in a constant
expression
}}
constexpr-backtrace-limit.cpp
2
// TEST1: constant
expression
10
// TEST2: constant
expression
17
// TEST3: constant
expression
24
// TEST4: constant
expression
enum-bitfield.cpp
17
enum E : Z(); // expected-error{{integral constant
expression
must have integral or unscoped enumeration type, not 'Z'}}
/external/llvm/lib/Target/ARM/MCTargetDesc/
ARMMCExpr.h
1
//===-- ARMMCExpr.h - ARM specific MC
expression
classes --------*- C++ -*-===//
51
/// getOpcode - Get the kind of this
expression
.
54
/// getSubExpr - Get the child of this
expression
.
/external/regex-re2/doc/
mksyntaxhtml
25
<title>RE2 regular
expression
syntax reference</title>
28
<h1>RE2 regular
expression
syntax reference</h1>
31
<tr><td colspan=2>This page lists the regular
expression
syntax accepted by RE2.</td></tr>
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Statements/
12.6.2-1.js
26
1. first
expression
is not present.
27
2. second
expression
is not present
28
3. third
expression
is not present
12.6.2-2.js
26
1. first
expression
is not present.
27
2. second
expression
is not present
28
3. third
expression
is present
12.6.2-3.js
26
1. first
expression
is not present.
27
2. second
expression
is present
28
3. third
expression
is present
12.6.2-4.js
26
1. first
expression
is not present.
27
2. second
expression
is present
28
3. third
expression
is present
12.6.2-5.js
26
1. first
expression
is not present.
27
2. second
expression
is present
28
3. third
expression
is present
12.6.2-6.js
26
1. first
expression
is present.
27
2. second
expression
is not present
28
3. third
expression
is present
12.6.2-7.js
26
1. first
expression
is present.
27
2. second
expression
is not present
28
3. third
expression
is present
12.6.2-8.js
26
1. first
expression
is present.
27
2. second
expression
is present
28
3. third
expression
is present
12.6.2-9-n.js
26
1. first
expression
is not present.
27
2. second
expression
is not present
28
3. third
expression
is not present
/external/webkit/Source/WebCore/xml/
XPathExpression.h
45
class
Expression
;
53
static PassRefPtr<XPathExpression> createExpression(const String&
expression
, XPathNSResolver*, ExceptionCode&);
59
XPath::
Expression
* m_topExpression;
/external/clang/include/clang/AST/
ExprCXX.h
45
/// In a C++ template, this
expression
node kind will be used whenever
66
///
expression
refers to.
71
/// the
expression
. When @c getOperator()==OO_Call, this is the
204
/// CXXStaticCastExpr - A C++ @c static_cast
expression
207
/// This
expression
node represents a C++ static cast, e.g.,
234
/// CXXDynamicCastExpr - A C++ @c dynamic_cast
expression
238
/// This
expression
node represents a dynamic cast, e.g.,
268
/// CXXReinterpretCastExpr - A C++ @c reinterpret_cast
expression
(C++
272
/// This
expression
node represents a reinterpret cast, e.g.,
300
/// CXXConstCastExpr - A C++ @c const_cast
expression
(C++ [expr.const.cast])
[
all
...]
/external/apache-xml/src/main/java/org/apache/xpath/patterns/
UnionPattern.java
23
import org.apache.xpath.
Expression
;
34
public class UnionPattern extends
Expression
55
* Tell if this
expression
or it's subexpressions can traverse outside
156
public
Expression
getExpression()
163
* @see ExpressionOwner#setExpression(
Expression
)
165
public void setExpression(
Expression
exp)
189
* @see
Expression
#deepEquals(
Expression
)
191
public boolean deepEquals(
Expression
expr)
/external/clang/test/CXX/class/class.local/
p1-0x.cpp
13
int& x2 = x; // expected-error{{reference to local variable 'x' declared in enclosing lambda
expression
}}
/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.list/
p7-0x.cpp
7
int x = 999; // x is not a constant
expression
63
// the source is a constant
expression
and the actual value after conversion
75
Agg<float> f2 = {d}; // expected-error {{non-constant-
expression
cannot be narrowed from type 'double' to 'float'}} expected-note {{override}}
84
Agg<float> f8 = {1E50}; // expected-error {{constant
expression
evaluates to 1.000000e+50 which cannot be narrowed to type 'float'}} expected-note {{override}}
86
// More complex constant
expression
.
100
// More complex constant
expression
.
104
Agg<float> ce1 = { Convert<double>(1e300) }; // expected-error {{constant
expression
evaluates to 1.000000e+300 which cannot be narrowed to type 'float'}} expected-note {{override}}
105
Agg<double> ce2 = { ConvertVar<long double>() }; // expected-error {{non-constant-
expression
cannot be narrowed from type 'long double' to 'double'}} expected-note {{override}}
109
// except where the source is a constant
expression
and the actual value after
113
// Not a constant
expression
[
all
...]
p7-cxx11-nowarn.cpp
8
int x = 999; // x is not a constant
expression
64
// the source is a constant
expression
and the actual value after conversion
76
Agg<float> f2 = {d}; // expected-warning {{non-constant-
expression
cannot be narrowed from type 'double' to 'float'}} expected-note {{override}}
85
Agg<float> f8 = {1E50}; // expected-warning {{constant
expression
evaluates to 1.000000e+50 which cannot be narrowed to type 'float'}} expected-note {{override}}
87
// More complex constant
expression
.
101
// More complex constant
expression
.
105
Agg<float> ce1 = { Convert<double>(1e300) }; // expected-warning {{constant
expression
evaluates to 1.000000e+300 which cannot be narrowed to type 'float'}} expected-note {{override}}
106
Agg<double> ce2 = { ConvertVar<long double>() }; // expected-warning {{non-constant-
expression
cannot be narrowed from type 'long double' to 'double'}} expected-note {{override}}
110
// except where the source is a constant
expression
and the actual value after
114
// Not a constant
expression
[
all
...]
/external/clang/test/Index/
recover-bad-code-rdar_7487294.c
5
// Previously we tried to free the size
expression
of the VLA twice.
/external/clang/test/Misc/
caret-diags-macros.c
8
// CHECK: :7:{{[0-9]+}}: warning:
expression
result unused
18
// CHECK: :17:3: warning:
expression
result unused
44
// CHECK: {{.*}}:43:15: warning:
expression
result unused
57
// CHECK: {{.*}}:55:5: warning:
expression
result unused
66
// CHECK: {{.*}}:64:5: warning:
expression
result unused
76
// CHECK: {{.*}}:74:17: warning:
expression
result unused
94
// CHECK: {{.*}}:93:21: warning:
expression
result unused
110
// CHECK: {{.*}}:109:32: warning:
expression
result unused
116
// CHECK: {{.*}}:115:30: warning:
expression
result unused
/external/clang/test/Preprocessor/
has_include.c
14
// Try unary
expression
.
19
// Try binary
expression
.
46
// Try unary
expression
.
51
// Try binary
expression
.
/external/clang/test/Sema/
struct-compat.c
16
struct x {char x;} s = r; // expected-error {{initializing 'struct x' with an
expression
of incompatible type 'struct x'}}
Completed in 2225 milliseconds
<<
11
12
13
14
15
16
17
18
19
20
>>