HomeSort by relevance Sort by last modified time
    Searched full:expression (Results 251 - 275 of 11458) sorted by null

<<11121314151617181920>>

  /external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/resolution/
LambdaResolutionTest.java 22 import com.github.javaparser.ast.expr.Expression;
43 Expression expression = methodCallExpr.getArguments().get(0); local
46 ResolvedType type = javaParserFacade.getType(expression);
56 Expression expression = returnStmt.getExpression().get(); local
57 expression = Navigator.findMethodCall(expression, "stream").get();
60 ResolvedType type = javaParserFacade.getType(expression);
72 Expression e1 = returnStmt1.getExpression().get()
116 Expression expression = methodCallExpr.getArguments().get(0); local
129 Expression expression = returnStmt.getExpression().get(); local
142 Expression expression = returnStmt.getExpression().get(); local
155 Expression expression = returnStmt.getExpression().get(); local
168 Expression expression = returnStmt.getExpression().get(); local
    [all...]
  /external/javaparser/javaparser-symbol-solver-testing/src/test/resources/javaparser_expected_output/
com_github_javaparser_ast_expr_ConditionalExpr.txt 3 superclass: com.github.javaparser.ast.expr.Expression
19 Line 65) condition ==> com.github.javaparser.ast.expr.Expression
20 Line 69) elseExpr ==> com.github.javaparser.ast.expr.Expression
21 Line 73) thenExpr ==> com.github.javaparser.ast.expr.Expression
22 Line 77) this.condition = condition ==> com.github.javaparser.ast.expr.Expression
24 Line 82) this.elseExpr = elseExpr ==> com.github.javaparser.ast.expr.Expression
26 Line 87) this.thenExpr = thenExpr ==> com.github.javaparser.ast.expr.Expression
com_github_javaparser_ast_expr_ArrayAccessExpr.txt 3 superclass: com.github.javaparser.ast.expr.Expression
17 Line 61) index ==> com.github.javaparser.ast.expr.Expression
18 Line 65) name ==> com.github.javaparser.ast.expr.Expression
19 Line 69) this.index = index ==> com.github.javaparser.ast.expr.Expression
21 Line 74) this.name = name ==> com.github.javaparser.ast.expr.Expression
  /external/skia/src/sksl/ir/
SkSLIndexExpression.h 50 * An expression which extracts a value from an array or matrix, as in 'm[2]'.
52 struct IndexExpression : public Expression {
53 IndexExpression(const Context& context, std::unique_ptr<Expression> base,
54 std::unique_ptr<Expression> index)
69 std::unique_ptr<Expression> fBase;
70 std::unique_ptr<Expression> fIndex;
72 typedef Expression INHERITED;
SkSLFieldAccess.h 17 * An expression which extracts a field from a struct, as in 'foo.bar'.
19 struct FieldAccess : public Expression {
27 FieldAccess(std::unique_ptr<Expression> base, int fieldIndex,
42 std::unique_ptr<Expression> fBase;
46 typedef Expression INHERITED;
  /external/skqp/src/sksl/ir/
SkSLIndexExpression.h 50 * An expression which extracts a value from an array or matrix, as in 'm[2]'.
52 struct IndexExpression : public Expression {
53 IndexExpression(const Context& context, std::unique_ptr<Expression> base,
54 std::unique_ptr<Expression> index)
69 std::unique_ptr<Expression> fBase;
70 std::unique_ptr<Expression> fIndex;
72 typedef Expression INHERITED;
SkSLFieldAccess.h 17 * An expression which extracts a field from a struct, as in 'foo.bar'.
19 struct FieldAccess : public Expression {
27 FieldAccess(std::unique_ptr<Expression> base, int fieldIndex,
42 std::unique_ptr<Expression> fBase;
46 typedef Expression INHERITED;
  /external/apache-xml/src/main/java/org/apache/xpath/compiler/
OpCodes.java 33 * (For instance, {boolean expression} means some expression
68 * {expression}
84 * {boolean expression}
85 * {boolean expression}
96 * {boolean expression}
97 * {boolean expression}
108 * {expression}
109 * {expression}
120 * {expression}
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
RegularExpressionProtocol.h 2 This section defines the Regular Expression Protocol. This protocol isused to match
3 Unicode strings against Regular Expression patterns.
43 CONST CHAR16 *CapturePtr; // Pointer to the start of the captured sub-expression
46 UINTN Length; // Length of captured sub-expression.
55 Returns information about the regular expression syntax types supported
70 for each supported Regular expression syntax
76 @retval EFI_SUCCESS The regular expression syntax types list
95 Checks if the input string matches to the regular expression pattern.
102 regular expression string specified by Pattern.
105 regular expression.
    [all...]
  /external/clang/test/Sema/
switch-1.c 12 // expected-warning@-2 {{overflow in expression; result is -2147483647 with type 'int'}}
14 // expected-error@-4 {{case value is not a constant expression}} \
20 // expected-warning@-2 {{overflow in expression; result is -4 with type 'long'}}
22 // expected-error@-4 {{case value is not a constant expression}} \
28 // expected-warning@-2 {{overflow in expression; result is -1375982336 with type 'int'}}
30 // expected-error@-4 {{case value is not a constant expression}} \
36 // expected-warning@-2 {{overflow in expression; result is -4 with type 'int'}}
38 // expected-error@-4 {{case value is not a constant expression}} \
43 // expected-warning@-2 {{overflow in expression; result is -4 with type 'int'}}
45 // expected-error@-4 {{case value is not a constant expression}} \
    [all...]
  /external/clang/test/SemaCXX/
for-range-dereference.cpp 40 for (auto i : pt) { } // expected-error{{invalid range expression of type 'T *'; did you mean to dereference it with '*'?}}
45 for (auto i : parr) { }// expected-error{{invalid range expression of type 'int (*)[10]'; did you mean to dereference it with '*'?}}
50 for (auto i : pNB) { }// expected-error{{invalid range expression of type 'NoBegin *'; no viable 'begin' function available}}
52 for (auto i : ppNB) { }// expected-error{{invalid range expression of type 'NoBegin **'; no viable 'begin' function available}}
54 for (auto i : pppppNB) { }// expected-error{{invalid range expression of type 'NoBegin *****'; no viable 'begin' function available}}
57 for (auto i : ANE) { } // expected-error{{invalid range expression of type 'ADLNoEnd'; no viable 'end' function available}}
59 for (auto i : pANE) { } // expected-error{{invalid range expression of type 'ADLNoEnd *'; no viable 'begin' function available}}
63 expected-note {{when looking up 'end' function for range expression of type 'DeletedEnd'}}
66 for (auto i : pDE) { } // expected-error {{invalid range expression of type 'DeletedEnd *'; no viable 'begin' function available}}
74 for (auto i : pPE) { }// expected-error {{invalid range expression of type 'PrivateEnd *'}
    [all...]
warn-unused-value.cpp 16 box->i; // expected-warning {{expression result unused}}
19 // expected-warning@-2 {{expression result unused}}
34 NOP(f1 == f2); // expected-warning {{expression result unused}}
46 &x[0]; // expected-warning {{expression result unused}}
72 Unused(); // expected-warning {{expression result unused}}
73 Unused(1); // expected-warning {{expression result unused}}
74 Unused(1, 1); // expected-warning {{expression result unused}}
88 (void)typeid(++i); // expected-warning {{expression with side effects has no effect in an unevaluated context}}
96 (void)typeid(b.f()); // expected-warning {{expression with side effects will be evaluated despite being used as an operand to 'typeid'}}
warn-unused-value-cxx11.cpp 18 (void)noexcept(++i); // expected-warning {{expression with side effects has no effect in an unevaluated context}}
19 decltype(i++) j = 0; // expected-warning {{expression with side effects has no effect in an unevaluated context}}
35 (void)noexcept(i++); // expected-warning {{expression with side effects has no effect in an unevaluated context}}
36 (void)noexcept(i = 5); // expected-warning {{expression with side effects has no effect in an unevaluated context}}
40 (void)sizeof(s.f() = 5); // expected-warning {{expression with side effects has no effect in an unevaluated context}}
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/expr/
MethodCallExpr.java 37 public final class MethodCallExpr extends Expression implements NodeWithTypeArguments<MethodCallExpr> {
39 private Expression scope;
45 private List<Expression> args;
50 public MethodCallExpr(final Expression scope, final String name) {
55 public MethodCallExpr(final Expression scope, final String name, final List<Expression> args) {
61 public MethodCallExpr(final Range range, final Expression scope, final List<Type<?>> typeArguments, final String name, final List<Expression> args) {
75 public MethodCallExpr addArgument(Expression arg) {
95 public List<Expression> getArgs()
    [all...]
  /external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/printer/
YamlPrinterTest.java 29 import com.github.javaparser.ast.expr.Expression;
47 Expression expression = JavaParser.parseExpression("x(1,1)"); local
48 String output = yamlPrinter.output(expression);
64 Expression expression = JavaParser.parseExpression("1+1"); local
65 String output = yamlPrinter.output(expression);
77 Expression expression = JavaParser.parseExpression("\"a\\\\: b\""); local
78 String output = yamlPrinter.output(expression);
90 Expression expression = JavaParser.parseExpression("\\"a\\\\\\\\:\\\\\\\\nb\\""); local
    [all...]
JsonPrinterTest.java 5 import com.github.javaparser.ast.expr.Expression;
22 Expression expression = parseExpression("x(1,1)"); local
24 String output = jsonPrinter.output(expression);
32 Expression expression = parseExpression("1+1"); local
34 String output = jsonPrinter.output(expression);
42 CompilationUnit expression = parse("class X {//hi\"" + EOL + "int x;}"); local
44 String output = jsonPrinter.output(expression);
  /external/jsilver/src/com/google/streamhtmlparser/impl/
StateTableTransition.java 25 * <li>An expression which consists of one or more characters and/or
37 private final String expression; field in class:StateTableTransition
50 return String.format("Expression: %s; From: %s; To: %s",
51 expression, from, to);
54 StateTableTransition(String expression, InternalState from,
57 Preconditions.checkNotNull(expression);
60 this.expression = expression;
66 return expression;
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/expr/
ConditionalExpr.java 39 * The ternary conditional expression.
44 public final class ConditionalExpr extends Expression implements NodeWithCondition<ConditionalExpr> {
46 private Expression condition;
48 private Expression thenExpr;
50 private Expression elseExpr;
57 public ConditionalExpr(Expression condition, Expression thenExpr, Expression elseExpr) {
65 public ConditionalExpr(TokenRange tokenRange, Expression condition, Expression thenExpr, Expression elseExpr)
    [all...]
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/nodeTypes/
NodeWithOptionalScope.java 25 import com.github.javaparser.ast.expr.Expression;
30 * Represents a node which has an optional scope expression eg. method calls (object.method()).
34 Optional<Expression> getScope();
36 N setScope(Expression scope);
40 default Optional<Expression> traverseScope() {
NodeWithScope.java 25 import com.github.javaparser.ast.expr.Expression;
30 * Represents a node which has a required scope expression eg. field access (object.method).
34 Expression getScope();
36 N setScope(Expression scope);
38 default Optional<Expression> traverseScope() {
  /external/libxml2/result/XPath/tests/
vidbase 3 Expression: id('chapter1')
12 Expression: id('chapter3')
21 Expression: id('chapter1')/p
30 Expression: id('chapter1')//p
39 Expression: id('chapter1')/p[1]
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/res/
XpathResourceXmlLoader.java 14 private String expression; field in class:XpathResourceXmlLoader
16 public XpathResourceXmlLoader(ResourceExtractor resourceExtractor, String expression) {
18 this.expression = expression;
22 XPathExpression stringsXPath = XPathFactory.newInstance().newXPath().compile(expression);
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue8385.go 7 // Issue 8385: provide a more descriptive error when a method expression
30 Fooer.Foo(5, 6) // ERROR "not enough arguments in call to method expression Fooer.Foo"
38 I.M() // ERROR "not enough arguments in call to method expression I\.M"
40 T.M() // ERROR "not enough arguments in call to method expression T\.M"
41 (*T).M() // ERROR "not enough arguments in call to method expression \(\*T\)\.M"
  /prebuilts/go/linux-x86/test/fixedbugs/
issue8385.go 7 // Issue 8385: provide a more descriptive error when a method expression
30 Fooer.Foo(5, 6) // ERROR "not enough arguments in call to method expression Fooer.Foo"
38 I.M() // ERROR "not enough arguments in call to method expression I\.M"
40 T.M() // ERROR "not enough arguments in call to method expression T\.M"
41 (*T).M() // ERROR "not enough arguments in call to method expression \(\*T\)\.M"
  /system/tools/hidl/c2hal/
EnumVarDeclaration.cpp 20 #include "Expression.h"
24 EnumVarDeclaration::EnumVarDeclaration(const std::string &name, Expression *expression)
25 : Declaration(""), mExpression(expression)
39 Expression *EnumVarDeclaration::getExpression() const {

Completed in 326 milliseconds

<<11121314151617181920>>