OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:expression
(Results
326 - 350
of
11458
) sorted by null
<<
11
12
13
14
15
16
17
18
19
20
>>
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/expr/
UnaryExpr.java
30
public final class UnaryExpr extends
Expression
{
43
private
Expression
expr;
50
public UnaryExpr(final
Expression
expr, final Operator op) {
56
final
Expression
expr, final Operator op) {
70
public
Expression
getExpr() {
78
public void setExpr(final
Expression
expr) {
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/stmt/
DoStmt.java
24
import com.github.javaparser.ast.expr.
Expression
;
35
private
Expression
condition;
40
public DoStmt(final Statement body, final
Expression
condition) {
46
final Statement body, final
Expression
condition) {
64
public
Expression
getCondition() {
73
public void setCondition(final
Expression
condition) {
ExpressionStmt.java
24
import com.github.javaparser.ast.expr.
Expression
;
33
private
Expression
expr;
38
public ExpressionStmt(final
Expression
expr) {
43
final
Expression
expr) {
56
public
Expression
getExpression() {
60
public void setExpression(final
Expression
expr) {
ReturnStmt.java
24
import com.github.javaparser.ast.expr.
Expression
;
33
private
Expression
expr;
38
public ReturnStmt(final
Expression
expr) {
43
final
Expression
expr) {
56
public
Expression
getExpr() {
60
public void setExpr(final
Expression
expr) {
SwitchEntryStmt.java
24
import com.github.javaparser.ast.expr.
Expression
;
35
private
Expression
label;
42
public SwitchEntryStmt(final
Expression
label, final List<Statement> stmts) {
48
final int endLine, final int endColumn, final
Expression
label,
65
public
Expression
getLabel() {
73
public void setLabel(final
Expression
label) {
SwitchStmt.java
24
import com.github.javaparser.ast.expr.
Expression
;
35
private
Expression
selector;
42
public SwitchStmt(final
Expression
selector,
49
final int endLine, final int endColumn, final
Expression
selector,
70
public
Expression
getSelector() {
79
public void setSelector(final
Expression
selector) {
SynchronizedStmt.java
24
import com.github.javaparser.ast.expr.
Expression
;
33
private
Expression
expr;
40
public SynchronizedStmt(final
Expression
expr, final BlockStmt block) {
46
final int endLine, final int endColumn, final
Expression
expr,
67
public
Expression
getExpr() {
76
public void setExpr(final
Expression
expr) {
ThrowStmt.java
24
import com.github.javaparser.ast.expr.
Expression
;
33
private
Expression
expr;
38
public ThrowStmt(final
Expression
expr) {
43
final
Expression
expr) {
56
public
Expression
getExpr() {
60
public void setExpr(final
Expression
expr) {
WhileStmt.java
24
import com.github.javaparser.ast.expr.
Expression
;
33
private
Expression
condition;
40
public WhileStmt(final
Expression
condition, final Statement body) {
46
final
Expression
condition, final Statement body) {
64
public
Expression
getCondition() {
73
public void setCondition(final
Expression
condition) {
/external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/ast/validator/
Java6ValidatorTest.java
6
import com.github.javaparser.ast.expr.
Expression
;
10
import static com.github.javaparser.ParseStart.
EXPRESSION
;
27
ParseResult<
Expression
> result = javaParser.parse(
EXPRESSION
, provider("0b01"));
33
ParseResult<
Expression
> result = javaParser.parse(
EXPRESSION
, provider("1_000_000"));
/external/libchrome/base/synchronization/
spin_wait.h
22
// change is the value of an
expression
.
27
// The
expression
will be evaluated repeatedly until it is true, or until
33
#define SPIN_FOR_1_SECOND_OR_UNTIL_TRUE(
expression
) \
35
(
expression
))
37
#define SPIN_FOR_TIMEDELTA_OR_UNTIL_TRUE(delta,
expression
) do { \
40
while (!(
expression
)) { \
/external/libxml2/result/XPath/xptr/
chaptersparts
3
Expression
: xpointer(//chapitre[2])
7
Expression
: xpointer(//chapter[2])
16
Expression
: xpointer(//chapitre[2])xpointer(//chapter[2])
25
Expression
: xpointer(id("chapter1"))
29
Expression
: xpointer(//*[@id="chapter1"])
38
Expression
: xpointer(id("chapter1"))xpointer(//*[@id="chapter1"])
/system/tools/hidl/c2hal/
AST.h
21
#include "
Expression
.h"
54
Expression
*getExpression() const;
55
void setExpression(
Expression
*
expression
);
72
Expression
* mExpression = NULL;
91
void isolateConstants(
Expression
::Type ofType);
/external/swiftshader/src/OpenGL/compiler/preprocessor/
ExpressionParser.y
16
This file contains the Yacc grammar for GLSL ES preprocessor
expression
.
19
WHICH GENERATES THE GLSL ES preprocessor
expression
parser.
125
:
expression
{
131
expression
144
|
expression
TOK_OP_OR {
147
// Ignore errors in the short-circuited part of the
expression
.
154
}
expression
{
165
|
expression
TOK_OP_AND {
168
// Ignore errors in the short-circuited part of the
expression
.
175
}
expression
{
[
all
...]
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ANTLR/ANTLR.xcodeproj/project.xcworkspace/xcuserdata/acondit.xcuserdatad/xcdebugger/
Expressions.xcexplist
18
<
expression
20
</
expression
>
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
calc.rb
23
evaluate returns [result]: r=
expression
{ $result = $r.result };
25
expression
returns [result]:
52
| '(' r=
expression
{$result = $r.result} ')'
67
def evaluate(
expression
)
68
lexer = TestCalc::Lexer.new(
expression
)
85
tests.each do |
expression
, true_value|
86
example "should parse '#{
expression
}'" do
87
parser_value, errors = evaluate(
expression
)
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
p9.cpp
19
// initializer and shall be initialized by a constant
expression
.
24
constexpr int nc1 = i; // expected-error {{constexpr variable 'nc1' must be initialized by a constant
expression
}} expected-note {{read of non-const variable 'i' is not allowed in a constant
expression
}}
27
constexpr int &nc3 = f(); // expected-error {{constexpr variable 'nc3' must be initialized by a constant
expression
}} expected-note {{non-constexpr function 'f' cannot be used in a constant
expression
}}
28
constexpr int nc4(i); // expected-error {{constexpr variable 'nc4' must be initialized by a constant
expression
}} expected-note {{read of non-const variable 'i' is not allowed in a constant
expression
}}
31
constexpr int &nc6(f()); // expected-error {{constexpr variable 'nc6' must be initialized by a constant
expression
}} expected-note {{non-constexpr function 'f'}}
/external/clang/test/Sema/
typedef-variable-type.c
4
typedef int (*a)[!.0]; // expected-warning{{size of static array must be an integer constant
expression
}}
8
typedef int (*a)[!.0]; // expected-warning{{size of static array must be an integer constant
expression
}}
/external/clang/test/SemaCXX/
PR19955.cpp
5
constexpr int *varp = &var; // expected-error {{must be initialized by a constant
expression
}}
8
constexpr void (*funp)(void) = &fun; // expected-error {{must be initialized by a constant
expression
}}
constexpr-strlen.cpp
11
constexpr int m = strlen("hello"); // expected-error {{constant
expression
}} expected-note {{non-constexpr function 'strlen' cannot be used in a constant
expression
}}
ms-const-member-expr.cpp
16
constexpr int e2 = // expected-error{{must be initialized by a constant
expression
}}
17
side_effect()->E; // expected-note{{cannot be used in a constant
expression
}}
old-style-cast.cpp
5
(long)x; // expected-warning {{use of old-style cast}} expected-warning {{
expression
result unused}}
6
(void**)x; // expected-warning {{use of old-style cast}} expected-warning {{
expression
result unused}}
/external/deqp/framework/randomshaders/
rsgExpressionGenerator.cpp
21
* \brief
Expression
generator.
38
Expression
* ExpressionGenerator::generate (const ValueRange& valueRange, int initialDepth)
42
Expression
* root =
Expression
::createRandom(m_state, valueRange);
46
// Generate full
expression
59
void ExpressionGenerator::generate (
Expression
* root)
72
Expression
* curExpr = m_expressionStack[m_expressionStack.size()-1];
73
Expression
* child = curExpr->createNextChild(m_state);
/external/eigen/doc/
NewExpressionType.dox
3
/** \page TopicNewExpressionType Adding a new
expression
type
8
In most cases, a custom
expression
can be avoided by either using custom \ref MatrixBase::unaryExpr "unary" or \ref MatrixBase::binaryExpr "binary" functors,
12
light-weight
expression
type in %Eigen. This consists of three parts:
13
the
expression
type itself, a traits class containing compile-time
14
information about the
expression
, and the evaluator class which is
15
used to evaluate the
expression
to a matrix.
36
returns an
expression
representing the circulant matrix.
48
forward declaring the
expression
class, which we will call
59
For every
expression
class \c X, there should be a traits class
64
expression
class to refer to dense matrices. The entries of th
[
all
...]
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/metamodel/
ExpressionMetaModel.java
9
super(superBaseNodeMetaModel, com.github.javaparser.ast.expr.
Expression
.class, "
Expression
", "com.github.javaparser.ast.expr", true, false);
Completed in 1083 milliseconds
<<
11
12
13
14
15
16
17
18
19
20
>>