HomeSort by relevance Sort by last modified time
    Searched refs:expression (Results 1 - 25 of 156) sorted by null

1 2 3 4 5 6 7

  /external/chromium/base/
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/webkit/JavaScriptCore/tests/mozilla/ecma_2/Statements/
try-003.js 36 function TrySomething( expression, throwing ) {
47 eval( expression );
64 "eval( " + expression +" )",
69 "eval( " + expression +" )",
74 "eval( " + expression +" )",
try-012.js 45 function TrySomething( expression, throwing ) {
64 eval( expression );
79 "eval( " + expression +" ): evaluated inner finally block",
84 "eval( " + expression +" ): evaluated outer catch block ",
89 "eval( " + expression +" ): evaluated outer finally block",
while-002.js 6 * Verify that the while statement is not executed if the while expression is
23 "while expression is null",
29 "while expression is undefined",
35 "while expression is 0",
41 "while expression is eval(\"\")",
47 "while expression is NaN",
63 while ( expression = object.whileExpression ) {
67 // verify that the while expression was evaluated
71 "verify that while expression was evaluated (should be "+
74 (object.whileExpression == expression ||
    [all...]
while-003.js 6 * The while expression evaluates to true, Statement returns abrupt completion.
22 "while expression is true",
27 "while expression is 1",
32 "while expression is new Boolean(false)",
37 "while expression is new Object()",
42 "while expression is \"hi\"",
47 "while expression has a continue in it",
63 while ( expression = object.whileExpression ) {
68 // verify that the while expression was evaluated
72 "verify that while expression was evaluated (should be "
    [all...]
  /external/chromium/third_party/icu/source/common/
umutex.h 51 * Encapsulates a safe check of an expression
55 * The expression must involve only a _single_ variable, typically
66 #define UMTX_CHECK(pMutex, expression, result) \
67 (result)=(expression)
71 #define UMTX_CHECK(pMutex, expression, result) \
73 (result)=(expression); \
  /external/icu4c/common/
umutex.h 51 * Encapsulates a safe check of an expression
55 * The expression must involve only a _single_ variable, typically
66 #define UMTX_CHECK(pMutex, expression, result) \
67 (result)=(expression)
71 #define UMTX_CHECK(pMutex, expression, result) \
73 (result)=(expression); \
  /libcore/luni/src/main/java/javax/xml/xpath/
XPath.java 38 * If a request is made to evaluate the expression in the absence
47 * If the expression contains a variable reference, its value will be found through the {@link XPathVariableResolver}
57 * If the expression contains a function reference, the function will be found through the {@link XPathFunctionResolver}
66 * QNames in the expression are resolved against the XPath namespace context
73 * This result of evaluating an expression is converted to an instance of the desired return type.
164 * <p>Compile an XPath expression for later evaluation.</p>
166 * <p>If <code>expression</code> contains any {@link XPathFunction}s,
171 * <p>If <code>expression</code> is <code>null</code>, a <code>NullPointerException</code> is thrown.</p>
173 * @param expression The XPath expression
    [all...]
  /external/e2fsprogs/intl/
plural-exp.h 0 /* Expression parsing and evaluation for plural form selection.
34 struct expression struct
64 struct expression *args[3]; /* Up to three arguments. */
73 struct expression *res;
82 binary incompatible changes in 'struct expression'. Furthermore,
104 extern void FREE_EXPRESSION (struct expression *exp)
107 extern struct expression GERMANIC_PLURAL attribute_hidden;
109 struct expression **pluralp,
114 extern unsigned long int plural_eval (struct expression *pexp,
plural-exp.c 0 /* Expression parsing for plural form selection.
33 /* These structs are the constant expression for the germanic plural
34 form determination. It represents the expression "n != 1". */
35 static const struct expression plvar =
40 static const struct expression plone =
49 struct expression GERMANIC_PLURAL =
57 [0] = (struct expression *) &plvar,
58 [1] = (struct expression *) &plone
70 static struct expression plvar;
71 static struct expression plone
    [all...]
plural.y 2 /* Expression parsing for plural form selection.
52 struct expression *exp;
62 static struct expression *
63 new_exp (int nargs, enum operator op, struct expression * const *args)
66 struct expression *newp;
73 /* Allocate a new expression. */
74 newp = (struct expression *) malloc (sizeof (*newp));
91 static inline struct expression *
97 static inline struct expression *
98 new_exp_1 (enum operator op, struct expression *right
    [all...]
  /external/webkit/WebKitTools/WebKitAPITest/
Test.h 55 #define TEST_ASSERT(expression) do { if (!(expression)) { TestsController::shared().testFailed(__FILE__, __LINE__, #expression); return; } } while (0)
  /external/v8/src/arm/
codegen-arm-inl.h 37 void CodeGenerator::LoadConditionAndSpill(Expression* expression,
41 LoadCondition(expression, true_target, false_target, force_control);
45 void CodeGenerator::LoadAndSpill(Expression* expression) {
46 Load(expression);
  /external/webkit/WebCore/xml/
XPathEvaluator.cpp 43 PassRefPtr<XPathExpression> XPathEvaluator::createExpression(const String& expression,
47 return XPathExpression::createExpression(expression, resolver, ec);
55 PassRefPtr<XPathResult> XPathEvaluator::evaluate(const String& expression,
68 RefPtr<XPathExpression> expr = createExpression(expression, resolver, ec);
XPathEvaluator.h 49 PassRefPtr<XPathExpression> createExpression(const String& expression, XPathNSResolver*, ExceptionCode&);
51 PassRefPtr<XPathResult> evaluate(const String& expression, Node* contextNode,
XPathEvaluator.idl 22 XPathExpression createExpression(in DOMString expression,
28 XPathResult evaluate(in DOMString expression,
XPathExpression.h 45 class Expression;
53 static PassRefPtr<XPathExpression> createExpression(const String& expression, XPathNSResolver*, ExceptionCode&);
59 XPath::Expression* m_topExpression;
XPathExpression.cpp 45 PassRefPtr<XPathExpression> XPathExpression::createExpression(const String& expression, XPathNSResolver* resolver, ExceptionCode& ec)
50 expr->m_topExpression = parser.parseStatement(expression, resolver, ec);
69 EvaluationContext& evaluationContext = Expression::evaluationContext();
78 // It is not specified what to do if type conversion fails while evaluating an expression, and INVALID_EXPRESSION_ERR is not exactly right
79 // when the failure happens in an otherwise valid expression because of a variable. But XPathEvaluator does not support variables, so it's close enough.
  /external/guava/src/com/google/common/base/
Preconditions.java 37 * Note that the sense of the expression is inverted; with {@code Preconditions}
63 * Ensures the truth of an expression involving one or more parameters to the
66 * @param expression a boolean expression
67 * @throws IllegalArgumentException if {@code expression} is false
69 public static void checkArgument(boolean expression) {
70 if (!expression) {
76 * Ensures the truth of an expression involving one or more parameters to the
79 * @param expression a boolean expression
    [all...]
  /external/clearsilver/cs/
test_comma.cs 2 Comma tests, evalute both but pass right most as expression result
  /external/webkit/WebCore/inspector/front-end/
WatchExpressionsSidebarPane.js 93 function appendResult(expression, watchIndex, result, exception)
103 var property = new WebInspector.ObjectPropertyProxy(expression, result);
124 // check to see if we just added a new watch expression,
152 var expression = this.watchExpressions[i];
153 if (!expression)
156 WebInspector.console.evalInInspectedWindow("(" + expression + ")", this._watchObjectGroupId, appendResult.bind(this, expression, i));
230 deleteButton.title = WebInspector.UIString("Delete watch expression.");
269 applyExpression: function(expression, updateInterface)
271 expression = expression.trim()
    [all...]
  /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...]
  /libcore/luni/src/main/java/org/apache/xpath/jaxp/
XPathImpl.java 51 * of an XPath expression.
193 private XObject eval(String expression, Object contextItem)
195 org.apache.xpath.XPath xpath = new org.apache.xpath.XPath( expression,
226 * <p>Evaluate an <code>XPath</code> expression in the specified context and return the result as the specified type.</p>
243 * If <code>expression</code> or <code>returnType</code> is <code>null</code>, then a
246 * @param expression The XPath expression.
250 * @return Result of evaluating an XPath expression as an <code>Object</code> of <code>returnType</code>.
252 * @throws XPathExpressionException If <code>expression</code> cannot be evaluated.
254 * @throws NullPointerException If <code>expression</code> or <code>returnType</code> is <code>null</code>
    [all...]
  /frameworks/base/tools/aidl/
AST.h 42 struct Expression
44 virtual ~Expression();
48 struct LiteralExpression : public Expression
57 struct Variable : public Expression
73 struct FieldVariable : public Expression
75 Expression* object;
79 FieldVariable(Expression* object, const string& name);
116 void Add(Expression* expression);
121 Expression* expression member in struct:ExpressionStatement
206 Expression* expression; member in struct:Cast
228 Expression* expression; member in struct:IfStatement
239 Expression* expression; member in struct:ReturnStatement
287 Expression* expression; member in struct:SwitchStatement
    [all...]
  /libcore/luni/src/main/java/org/apache/xpath/
Arg.java 29 * XObject or a String containing an expression.
104 /** Field m_expression: Stored expression value of this argument.
111 * Get the value expression for this argument.
113 * @return String containing the expression previously stored into this
123 * Set the value expression for this argument.
125 * @param expr String containing the expression to be stored as this
176 * value (either expression string or value XObject). isVisible
191 * Construct a parameter argument that contains an expression.
194 * @param expression String to be stored as this argument's value expression
    [all...]

Completed in 348 milliseconds

1 2 3 4 5 6 7