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

1 2 3 4 5 6 7 8 91011>>

  /external/webrtc/src/system_wrappers/interface/
compile_assert.h 15 * The argument is the boolean expression to evaluate.
19 #define COMPILE_ASSERT(expression) switch(0){case 0: case expression:;}
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
debug.h 36 #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/
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/jsilver/src/com/google/clearsilver/jsilver/syntax/
jsilver.sablecc 202 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.expression)
    [all...]
  /external/chromium/base/
spin_wait.h 23 // 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/
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/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...]
  /frameworks/base/core/java/com/android/internal/util/
Preconditions.java 58 * Ensures the truth of an expression involving the state of the calling
61 * @param expression a boolean expression
62 * @throws IllegalStateException if {@code expression} is false
64 public static void checkState(boolean expression) {
65 if (!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/jsilver/src/com/google/clearsilver/jsilver/compiler/
JavaExpression.java 25 * 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.cast(DATA)
    [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/Tools/TestWebKitAPI/
Test.h 82 #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/Tools/WebKitAPITest/
Test.h 55 #define TEST_ASSERT(expression) do { if (!(expression)) { TestsController::shared().testFailed(__FILE__, __LINE__, #expression); return; } } while (0)
  /external/chromium/chrome/common/extensions/docs/examples/extensions/irc/servlet/
util.js 16 var expression = ".//*[@class='" + className + "']";
17 return document.evaluate(expression, node,
  /external/webkit/Source/ThirdParty/ANGLE/src/common/
debug.h 35 #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/
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.idl 22 XPathExpression createExpression(in DOMString expression,
28 XPathResult evaluate(in DOMString expression,
  /external/chromium/third_party/libjingle/source/talk/base/
common.cc 65 const char * expression) {
68 << expression << " @ " << function;
  /external/robolectric/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);
  /external/guava/guava/src/com/google/common/base/
Preconditions.java 38 * Note that the sense of the expression is inverted; with {@code Preconditions}
64 * Ensures the truth of an expression involving one or more parameters to the
67 * @param expression a boolean expression
68 * @throws IllegalArgumentException if {@code expression} is false
70 public static void checkArgument(boolean expression) {
71 if (!expression) {
77 * Ensures the truth of an expression involving one or more parameters to the
80 * @param expression a boolean expression
    [all...]

Completed in 365 milliseconds

1 2 3 4 5 6 7 8 91011>>