HomeSort by relevance Sort by last modified time
    Searched full:expression (Results 326 - 350 of 4888) sorted by null

<<11121314151617181920>>

  /external/mesa3d/src/glsl/tests/lower_jumps/
lower_breaks_5.opt_test.expected 6 (if (expression bool > (var_ref b) (constant float (0.000000))) ()
  /external/v8/test/mjsunit/
debug-evaluate.js 74 testRequest(dcp, '{"expression":"1","global"=true}', false);
75 testRequest(dcp, '{"expression":"a","frame":4}', false);
78 testRequest(dcp, '{"expression":"1+2"}', true, 3);
79 testRequest(dcp, '{"expression":"a+2"}', true, 5);
80 testRequest(dcp, '{"expression":"({\\"a\\":1,\\"b\\":2}).b+2"}', true, 4);
83 testRequest(dcp, '{"expression":"a"}', true, 3);
84 testRequest(dcp, '{"expression":"a","frame":0}', true, 3);
85 testRequest(dcp, '{"expression":"a","frame":1}', true, 2);
86 testRequest(dcp, '{"expression":"a","frame":2}', true, 1);
87 testRequest(dcp, '{"expression":"a","global":true}', true, 1)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XPathPath.h 40 class Filter FINAL : public Expression {
42 Filter(PassOwnPtr<Expression>, Vector<OwnPtr<Predicate> >&);
50 OwnPtr<Expression> m_expr;
54 class LocationPath FINAL : public Expression {
73 class Path FINAL : public Expression {
75 Path(Expression*, LocationPath*);
83 Expression* m_filter;
XPathFunctions.h 36 class Function : public Expression {
38 void setArguments(Vector<OwnPtr<Expression> >&);
41 Expression* arg(int pos) { return subExpr(pos); }
42 const Expression* arg(int pos) const { return subExpr(pos); }
51 Function* createFunction(const String& name, Vector<OwnPtr<Expression> >&);
  /external/clang/test/Sema/
__try.c 63 } // TODO: expected expression is an extra error
64 __except( try_scope ? 1 : -1 ) // expected-error{{undeclared identifier 'try_scope'}} expected-error{{expected expression}}
73 __except( ) { // expected-error{{expected expression}} expected-error{{expected expression}}
111 __except ( NotFilterExpression() ) { // expected-error{{filter expression type should be an integral value not 'const char *'}}
166 (void)__exception_info; // expected-error{{only allowed in __except filter expression}}
170 (void)GetExceptionInformation(); // expected-error{{only allowed in __except filter expression}}
block-call.c 16 const int (^CIC) () = IFP; // OK - initializing 'const int (^)()' with an expression of type 'int (^)()'}}
25 int * (^IPCC2) () = IPCC; // expected-error {{incompatible block pointer types initializing 'int *(^)()' with an expression of type 'int *const (^)()'}}
33 int (^IPCC6) (int, char (^CArg) (float)) = IPCC4; // expected-error {{incompatible block pointer types initializing 'int (^)(int, char (^)(float))' with an expression of type 'int (^)(int, char (^)(double))'}}
38 int (^y)() = 3; // expected-error {{invalid block pointer conversion initializing 'int (^)()' with an expression of type 'int'}}
40 int (^z)() = a+4; // expected-error {{invalid block pointer conversion initializing 'int (^)()' with an expression of type 'int'}}
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/check/
Assert.java 45 * @param expression
46 * the boolean expression of the check
51 public static boolean isLegal(boolean expression) {
52 return isLegal(expression, ""); //$NON-NLS-1$
60 * @param expression
61 * the boolean expression of the check
68 public static boolean isLegal(boolean expression, String message) {
69 if (!expression) {
72 return expression;
243 * @param expression
    [all...]
  /libcore/luni/src/main/java/java/util/regex/
MatchResult.java 23 * pair of parentheses in the regular expression and an additional group for
24 * the whole regular expression. The start, end, and contents of each group
34 * the whole regular expression.
53 * Returns the text that matched the whole regular expression.
60 * Returns the text that matched a given group of the regular expression.
72 * the number of groups in the original regular expression.
80 * the whole regular expression.
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/bits/
regex_constants.h 38 * A facility for performing regular expression pattern matching.
51 * @name 5.1 Regular Expression Syntax Options
89 * Specifies that when a regular expression is matched against a character
90 * container sequence, no sub-expression matches are to be stored in the
96 * Specifies that the regular expression engine should pay more attention to
98 * speed with which regular expression objects are constructed. Otherwise
110 * Specifies that the grammar recognized by the regular expression engine is
115 * POSIX regular expression grammar.
120 * Specifies that the grammar recognized by the regular expression engine is
129 * Specifies that the grammar recognized by the regular expression engine i
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
HasPositionalPredChecker.java 23 import org.apache.xpath.Expression;
59 * @param owner The owner of the expression, to which the expression can
74 // * @param owner The owner of the expression, to which the expression can
87 * proper unique component for predicates, and that the expression will
88 * be called also for whatever type Expression is.
90 * @param owner The owner of the expression, to which the expression can
95 public boolean visitPredicate(ExpressionOwner owner, Expression pred
    [all...]
FilterExprIterator.java 24 import org.apache.xpath.Expression;
32 /** The contained expression. Should be non-null.
34 private Expression m_expr;
55 public FilterExprIterator(Expression expr)
62 * Initialize the context values for this expression
123 * Get the inner contained expression of this filter.
125 public Expression getInnerExpression()
131 * Set the inner contained expression of this filter.
133 public void setInnerExpression(Expression expr)
169 public Expression getExpression(
    [all...]
  /external/chromium_org/v8/src/
preparser.cc 299 Expression function_value = ParseFunctionLiteral(is_generator, CHECK_OK);
469 // Expression ';'
472 Expression expr = ParseExpression(true, CHECK_OK);
486 // Parsed expression statement.
494 // 'if' '(' Expression ')' Statement ('else' Statement)?
545 // 'return' [no line terminator] Expression? ';'
571 // 'with' '(' Expression ')' Statement
591 // 'switch' '(' Expression ')' '{' CaseClause* '}'
623 // 'do' Statement 'while' '(' Expression ')' ';'
638 // 'while' '(' Expression ')' Statemen
829 Expression expression = ParseConditionalExpression(accept_IN, CHECK_OK); local
878 Expression expression = ParseBinaryExpression(4, accept_IN, CHECK_OK); local
929 Expression expression = ParseUnaryExpression(CHECK_OK); local
950 Expression expression = ParseLeftHandSideExpression(CHECK_OK); local
    [all...]
  /external/clang/test/CXX/expr/expr.mptr.oper/
p6-0x.cpp 9 // In a .* expression whose object expression is an rvalue, the
11 // function with ref-qualifier &. In a ->* expression or in a .*
12 // expression whose object expression is an lvalue, the program is
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/
regex_constants.h 44 * @name 5.1 Regular Expression Syntax Options
82 * Specifies that when a regular expression is matched against a character
83 * container sequence, no sub-expression matches are to be stored in the
89 * Specifies that the regular expression engine should pay more attention to
91 * speed with which regular expression objects are constructed. Otherwise
103 * Specifies that the grammar recognized by the regular expression engine is
108 * POSIX regular expression grammar.
113 * Specifies that the grammar recognized by the regular expression engine is
122 * Specifies that the grammar recognized by the regular expression engine is
130 * Specifies that the grammar recognized by the regular expression engine i
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/bits/
regex_constants.h 44 * @name 5.1 Regular Expression Syntax Options
82 * Specifies that when a regular expression is matched against a character
83 * container sequence, no sub-expression matches are to be stored in the
89 * Specifies that the regular expression engine should pay more attention to
91 * speed with which regular expression objects are constructed. Otherwise
103 * Specifies that the grammar recognized by the regular expression engine is
108 * POSIX regular expression grammar.
113 * Specifies that the grammar recognized by the regular expression engine is
122 * Specifies that the grammar recognized by the regular expression engine is
130 * Specifies that the grammar recognized by the regular expression engine i
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
regex_constants.h 44 * @name 5.1 Regular Expression Syntax Options
82 * Specifies that when a regular expression is matched against a character
83 * container sequence, no sub-expression matches are to be stored in the
89 * Specifies that the regular expression engine should pay more attention to
91 * speed with which regular expression objects are constructed. Otherwise
103 * Specifies that the grammar recognized by the regular expression engine is
108 * POSIX regular expression grammar.
113 * Specifies that the grammar recognized by the regular expression engine is
122 * Specifies that the grammar recognized by the regular expression engine is
130 * Specifies that the grammar recognized by the regular expression engine i
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
regex_constants.h 44 * @name 5.1 Regular Expression Syntax Options
82 * Specifies that when a regular expression is matched against a character
83 * container sequence, no sub-expression matches are to be stored in the
89 * Specifies that the regular expression engine should pay more attention to
91 * speed with which regular expression objects are constructed. Otherwise
103 * Specifies that the grammar recognized by the regular expression engine is
108 * POSIX regular expression grammar.
113 * Specifies that the grammar recognized by the regular expression engine is
122 * Specifies that the grammar recognized by the regular expression engine is
130 * Specifies that the grammar recognized by the regular expression engine i
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
regex_constants.h 44 * @name 5.1 Regular Expression Syntax Options
82 * Specifies that when a regular expression is matched against a character
83 * container sequence, no sub-expression matches are to be stored in the
89 * Specifies that the regular expression engine should pay more attention to
91 * speed with which regular expression objects are constructed. Otherwise
103 * Specifies that the grammar recognized by the regular expression engine is
108 * POSIX regular expression grammar.
113 * Specifies that the grammar recognized by the regular expression engine is
122 * Specifies that the grammar recognized by the regular expression engine is
130 * Specifies that the grammar recognized by the regular expression engine i
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
regex_constants.h 44 * @name 5.1 Regular Expression Syntax Options
82 * Specifies that when a regular expression is matched against a character
83 * container sequence, no sub-expression matches are to be stored in the
89 * Specifies that the regular expression engine should pay more attention to
91 * speed with which regular expression objects are constructed. Otherwise
103 * Specifies that the grammar recognized by the regular expression engine is
108 * POSIX regular expression grammar.
113 * Specifies that the grammar recognized by the regular expression engine is
122 * Specifies that the grammar recognized by the regular expression engine is
130 * Specifies that the grammar recognized by the regular expression engine i
    [all...]
  /external/clang/include/clang/ASTMatchers/Dynamic/
Parser.h 1 //===--- Parser.h - Matcher expression parser -----*- C++ -*-===//
11 /// \brief Simple matcher expression parser.
21 /// <Expression> := <Literal> | <MatcherExpression>
28 /// <ArgumentList> := <Expression> | <Expression>,<ArgumentList>
46 /// \brief Matcher expression parser.
63 /// \brief Process a matcher expression.
87 /// \brief Parse a matcher expression, creating matchers from the registry.
93 /// \param MatcherCode The matcher expression to parse.
101 /// \brief Parse a matcher expression
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/tr1_impl/
regex 39 * A facility for performing regular expression pattern matching.
49 * @name 5.1 Regular Expression Syntax Options
87 * Specifies that when a regular expression is matched against a character
88 * container sequence, no sub-expression matches are to be stored in the
94 * Specifies that the regular expression engine should pay more attention to
96 * speed with which regular expression objects are constructed. Otherwise
108 * Specifies that the grammar recognized by the regular expression engine is
113 * POSIX regular expression grammar.
118 * Specifies that the grammar recognized by the regular expression engine is
127 * Specifies that the grammar recognized by the regular expression engine i
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/tr1/
regex 52 * A facility for performing regular expression pattern matching.
64 * @name 5.1 Regular Expression Syntax Options
102 * Specifies that when a regular expression is matched against a character
103 * container sequence, no sub-expression matches are to be stored in the
109 * Specifies that the regular expression engine should pay more attention to
111 * speed with which regular expression objects are constructed. Otherwise
123 * Specifies that the grammar recognized by the regular expression engine is
128 * POSIX regular expression grammar.
133 * Specifies that the grammar recognized by the regular expression engine is
142 * Specifies that the grammar recognized by the regular expression engine i
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/tr1/
regex 52 * A facility for performing regular expression pattern matching.
64 * @name 5.1 Regular Expression Syntax Options
102 * Specifies that when a regular expression is matched against a character
103 * container sequence, no sub-expression matches are to be stored in the
109 * Specifies that the regular expression engine should pay more attention to
111 * speed with which regular expression objects are constructed. Otherwise
123 * Specifies that the grammar recognized by the regular expression engine is
128 * POSIX regular expression grammar.
133 * Specifies that the grammar recognized by the regular expression engine is
142 * Specifies that the grammar recognized by the regular expression engine i
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/tr1_impl/
regex 39 * A facility for performing regular expression pattern matching.
49 * @name 5.1 Regular Expression Syntax Options
87 * Specifies that when a regular expression is matched against a character
88 * container sequence, no sub-expression matches are to be stored in the
94 * Specifies that the regular expression engine should pay more attention to
96 * speed with which regular expression objects are constructed. Otherwise
108 * Specifies that the grammar recognized by the regular expression engine is
113 * POSIX regular expression grammar.
118 * Specifies that the grammar recognized by the regular expression engine is
127 * Specifies that the grammar recognized by the regular expression engine i
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/tr1_impl/
regex 39 * A facility for performing regular expression pattern matching.
49 * @name 5.1 Regular Expression Syntax Options
87 * Specifies that when a regular expression is matched against a character
88 * container sequence, no sub-expression matches are to be stored in the
94 * Specifies that the regular expression engine should pay more attention to
96 * speed with which regular expression objects are constructed. Otherwise
108 * Specifies that the grammar recognized by the regular expression engine is
113 * POSIX regular expression grammar.
118 * Specifies that the grammar recognized by the regular expression engine is
127 * Specifies that the grammar recognized by the regular expression engine i
    [all...]

Completed in 918 milliseconds

<<11121314151617181920>>