Searched refs:expression (Results 1 - 25 of 222) sorted by relevance

123456789

/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
H A Ddebug.h36 #define ASSERT(expression) do { \
37 if(!(expression)) \
38 Trace("Assert failed: %s(%d): "#expression"\n", __FUNCTION__, __LINE__); \
39 assert(expression); \
/external/jsilver/src/com/google/streamhtmlparser/impl/
H A DStateTableTransition.java25 * <li>An expression which consists of one or more characters and/or
37 private final String expression; field in class:StateTableTransition
51 expression, from, to);
54 StateTableTransition(String expression, InternalState from, argument
57 Preconditions.checkNotNull(expression);
60 this.expression = expression;
66 return expression;
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/
H A Djsilver.sablecc202 New expression.sequence([expression_list.expression]))}
208 New expression.sequence([expression_list.expression]))}
214 New expression.sequence([expression_list.expression]))}
220 New expression.sequence([expression_list.expression]))}
222 | {set} cs_open set command_delimiter variable assignment expression cs_close
227 expression
[all...]
/external/chromium/base/
H A Dspin_wait.h23 // change is the value of an expression.
28 // The expression will be evaluated repeatedly until it is true, or until
34 #define SPIN_FOR_1_SECOND_OR_UNTIL_TRUE(expression) \
36 (expression))
38 #define SPIN_FOR_TIMEDELTA_OR_UNTIL_TRUE(delta, expression) do { \
41 while (!(expression)) { \
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Statements/
H A Dtry-003.js36 function TrySomething( expression, throwing ) {
47 eval( expression );
64 "eval( " + expression +" )",
69 "eval( " + expression +" )",
74 "eval( " + expression +" )",
H A Dtry-012.js45 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",
H A Dwhile-002.js6 * 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...]
H A Dwhile-003.js6 * 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 wa
[all...]
/external/icu4c/common/
H A Dumutex.h51 * 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/chromium/chrome/common/extensions/docs/examples/extensions/irc/servlet/
H A Dutil.js16 var expression = ".//*[@class='" + className + "']";
17 return document.evaluate(expression, node,
/external/webkit/LayoutTests/fast/dom/Geolocation/script-tests/
H A Dargument-types.js3 function shouldNotThrow(expression)
6 eval(expression);
7 testPassed(expression + " did not throw exception.");
9 testFailed(expression + " should not throw exception. Threw exception " + e);
13 function test(expression, expressionShouldThrow, expectedException) {
16 shouldThrow(expression, '(function() { return "' + expectedException + '"; })();');
18 shouldThrow(expression, '(function() { return "Error: TYPE_MISMATCH_ERR: DOM Exception 17"; })();');
20 shouldNotThrow(expression);
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/
H A DJavaExpression.java25 * Represents a node of a Java expression.
39 protected JavaExpression cast(JavaExpression expression) {
40 if (expression.getType() == VAR_NAME) {
41 expression = expression.cast(DATA);
43 return call(Type.STRING, "asString", expression);
48 protected JavaExpression cast(JavaExpression expression) {
49 if (expression.getType() == VAR_NAME) {
50 expression = expression
140 cast(JavaExpression expression) argument
425 prefix(Type type, final String operator, final JavaExpression expression) argument
489 callFindVariable(JavaExpression expression, boolean create) argument
[all...]
/external/e2fsprogs/intl/
H A Dplural-exp.h34 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,
H A Dplural-exp.c33 /* 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;
72 struct expression GERMANIC_PLURA
[all...]
H A Dplural.y52 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)
100 struct expression *arg
[all...]
/external/webkit/Tools/TestWebKitAPI/
H A DTest.h82 #define _TEST_ASSERT_HELPER(expression, returnStatement) do { if (!(expression)) { TestsController::shared().testFailed(__FILE__, __LINE__, #expression); returnStatement; } } while (0)
83 #define TEST_ASSERT(expression) _TEST_ASSERT_HELPER(expression, return)
84 #define TEST_ASSERT_RETURN(expression, returnValue) _TEST_ASSERT_HELPER(expression, return (returnValue))
/external/webkit/Source/ThirdParty/ANGLE/src/common/
H A Ddebug.h35 #define ASSERT(expression) do { \
36 if(!(expression)) \
37 ERR("\t! Assert failed in %s(%d): "#expression"\n", __FUNCTION__, __LINE__); \
38 assert(expression); \
/external/webkit/Source/WebCore/xml/
H A DXPathEvaluator.cpp43 PassRefPtr<XPathExpression> XPathEvaluator::createExpression(const String& expression, argument
47 return XPathExpression::createExpression(expression, resolver, ec);
55 PassRefPtr<XPathResult> XPathEvaluator::evaluate(const String& expression, argument
68 RefPtr<XPathExpression> expr = createExpression(expression, resolver, ec);
H A DXPathEvaluator.idl22 XPathExpression createExpression(in DOMString expression,
28 XPathResult evaluate(in DOMString expression,
/external/chromium/third_party/libjingle/source/talk/base/
H A Dcommon.cc65 const char * expression) {
68 << expression << " @ " << function;
64 LogAssert(const char * function, const char * file, int line, const char * expression) argument
/external/v8/test/mjsunit/
H A Ddebug-evaluate-with-context.js102 in_top_frame: function(exec_state, expression, additional_context) {
103 return exec_state.frame(0).evaluate(expression, void 0, additional_context).value();
105 globally: function(exec_state, expression, additional_context) {
106 return exec_state.evaluateGlobal(expression, void 0, additional_context).value();
115 function evaluateViaProtocol(exec_state, expression, additional_context, frame_argument_adder) {
117 request_json = {"seq":17,"type":"request","command":"evaluate", arguments: { "expression": expression } };
136 in_top_frame: function(exec_state, expression, additional_context) {
137 return evaluateViaProtocol(exec_state, expression, additional_context, function(args) { args.frame = 0; });
139 globally: function(exec_state, expression, additional_contex
[all...]
/external/guava/src/com/google/common/base/
H A DPreconditions.java37 * 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) { argument
70 if (!expression) {
76 * Ensures the truth of an expression involving one or more parameters to the
79 * @param expression a boolean expression
84 checkArgument(boolean expression, Object errorMessage) argument
109 checkArgument(boolean expression, String errorMessageTemplate, Object... errorMessageArgs) argument
124 checkState(boolean expression) argument
139 checkState(boolean expression, Object errorMessage) argument
164 checkState(boolean expression, String errorMessageTemplate, Object... errorMessageArgs) argument
[all...]
/external/webkit/Tools/WebKitAPITest/
H A DTest.h55 #define TEST_ASSERT(expression) do { if (!(expression)) { TestsController::shared().testFailed(__FILE__, __LINE__, #expression); return; } } while (0)
/external/webkit/Source/WebCore/inspector/
H A DInspectorRuntimeAgent.cpp52 void InspectorRuntimeAgent::evaluate(ErrorString* errorString, const String& expression, const String* const objectGroup, const bool* const includeCommandLineAPI, RefPtr<InspectorObject>* result) argument
56 injectedScript.evaluate(errorString, expression, objectGroup ? *objectGroup : "", includeCommandLineAPI ? *includeCommandLineAPI : false, result);
59 void InspectorRuntimeAgent::evaluateOn(ErrorString* errorString, const String& objectId, const String& expression, RefPtr<InspectorObject>* result) argument
63 injectedScript.evaluateOn(errorString, objectId, expression, result);
73 void InspectorRuntimeAgent::setPropertyValue(ErrorString* errorString, const String& objectId, const String& propertyName, const String& expression) argument
77 injectedScript.setPropertyValue(errorString, objectId, propertyName, expression);
/external/clang/test/Parser/
H A Dswitch-recovery.cpp38 2: return 1; // expected-error {{expected 'case' keyword before expression}}
46 1: return -1; // expected-error {{expected 'case' keyword before expression}}
54 4:5:6:7: return 2; // expected-error 4{{expected 'case' keyword before expression}}
72 5: // expected-error {{expected 'case' keyword before expression}}
80 true ? 1 : 2: // expected-error {{expected 'case' keyword before expression}}
82 14 ? 3 : 4; // expected-warning {{expression result unused}}
92 // a case expression.
101 2: case; // expected-error {{expected 'case' keyword before expression}} \
102 expected-error {{expected expression}}
103 4:5:6: return; // expected-error 3{{expected 'case' keyword before expression}}
[all...]

Completed in 638 milliseconds

123456789