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

1234567891011>>

/external/webrtc/src/system_wrappers/interface/
H A Dcompile_assert.h15 * The argument is the boolean expression to evaluate.
19 #define COMPILE_ASSERT(expression) switch(0){case 0: case expression:;}
/external/chromium_org/third_party/angle_dx11/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_org/third_party/mesa/src/src/glsl/tests/lower_jumps/
H A Dlower_unified_returns.opt_test16 ((if (expression bool > (var_ref aa) (constant float (0.000000)))
17 ((if (expression bool > (var_ref ab) (constant float (0.000000)))
21 (if (expression bool > (var_ref b) (constant float (0.000000)))
22 ((if (expression bool > (var_ref c) (constant float (0.000000)))
H A Dlower_breaks_6.opt_test16 ((if (expression bool > (var_ref a) (constant float (0.000000)))
17 ((if (expression bool > (var_ref ba) (constant float (0.000000)))
18 ((if (expression bool > (var_ref bb) (constant float (0.000000)))
22 (if (expression bool > (var_ref ca) (constant float (0.000000)))
23 ((if (expression bool > (var_ref cb) (constant float (0.000000)))
H A Dlower_guarded_conditional_break.opt_test14 ((if (expression bool > (var_ref aa) (constant float (0.000000)))
15 ((if (expression bool > (var_ref ab) (constant float (0.000000)))
19 (if (expression bool > (var_ref b) (constant float (0.000000))) (break)
H A Dlower_returns_3.opt_test14 ((if (expression bool > (var_ref a) (constant float (0.000000)))
15 ((if (expression bool > (var_ref b) (constant float (0.000000)))
H A Dlower_returns_main_false.opt_test12 ((if (expression bool > (var_ref a) (constant float (0.000000)))
13 ((if (expression bool > (var_ref b) (constant float (0.000000)))
H A Dlower_returns_main_true.opt_test12 ((if (expression bool > (var_ref a) (constant float (0.000000)))
13 ((if (expression bool > (var_ref b) (constant float (0.000000)))
H A Dlower_returns_sub_false.opt_test11 ((if (expression bool > (var_ref a) (constant float (0.000000)))
12 ((if (expression bool > (var_ref b) (constant float (0.000000)))
H A Dlower_returns_sub_true.opt_test11 ((if (expression bool > (var_ref a) (constant float (0.000000)))
12 ((if (expression bool > (var_ref b) (constant float (0.000000)))
/external/mesa3d/src/glsl/tests/lower_jumps/
H A Dlower_unified_returns.opt_test16 ((if (expression bool > (var_ref aa) (constant float (0.000000)))
17 ((if (expression bool > (var_ref ab) (constant float (0.000000)))
21 (if (expression bool > (var_ref b) (constant float (0.000000)))
22 ((if (expression bool > (var_ref c) (constant float (0.000000)))
H A Dlower_breaks_6.opt_test16 ((if (expression bool > (var_ref a) (constant float (0.000000)))
17 ((if (expression bool > (var_ref ba) (constant float (0.000000)))
18 ((if (expression bool > (var_ref bb) (constant float (0.000000)))
22 (if (expression bool > (var_ref ca) (constant float (0.000000)))
23 ((if (expression bool > (var_ref cb) (constant float (0.000000)))
H A Dlower_guarded_conditional_break.opt_test14 ((if (expression bool > (var_ref aa) (constant float (0.000000)))
15 ((if (expression bool > (var_ref ab) (constant float (0.000000)))
19 (if (expression bool > (var_ref b) (constant float (0.000000))) (break)
H A Dlower_returns_3.opt_test14 ((if (expression bool > (var_ref a) (constant float (0.000000)))
15 ((if (expression bool > (var_ref b) (constant float (0.000000)))
H A Dlower_returns_main_false.opt_test12 ((if (expression bool > (var_ref a) (constant float (0.000000)))
13 ((if (expression bool > (var_ref b) (constant float (0.000000)))
H A Dlower_returns_main_true.opt_test12 ((if (expression bool > (var_ref a) (constant float (0.000000)))
13 ((if (expression bool > (var_ref b) (constant float (0.000000)))
H A Dlower_returns_sub_false.opt_test11 ((if (expression bool > (var_ref a) (constant float (0.000000)))
12 ((if (expression bool > (var_ref b) (constant float (0.000000)))
/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/chromium_org/third_party/angle_dx11/src/compiler/preprocessor/
H A DExpressionParser.y8 This file contains the Yacc grammar for GLSL ES preprocessor expression.
11 WHICH GENERATES THE GLSL ES preprocessor expression parser.
91 : expression {
97 expression
99 | expression TOK_OP_OR expression {
102 | expression TOK_OP_AND expression {
105 | expression '|' expression {
[all...]
/external/chromium_org/v8/test/webkit/
H A Dequality.js65 var expression = values[i] + " == " + values[j];
67 shouldBe(expression, ((i == j) ^ (exceptionMap[expression] || exceptionMap[reversed])) ? "true" : "false");
73 var expression = values[i] + " === " + values[j];
75 shouldBe(expression, ((i == j) ^ (exceptionMap[expression] || exceptionMap[reversed])) ? "true" : "false");
/external/chromium_org/base/synchronization/
H A Dspin_wait.h22 // 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/chromium_org/third_party/icu/source/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/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/check/
H A DAssert.java45 * @param expression
46 * the boolean expression of the check
51 public static boolean isLegal(boolean expression) { argument
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) { argument
69 if (!expression) {
72 return expression;
243 * @param expression
247 isTrue(boolean expression) argument
262 isTrue(boolean expression, String message) argument
284 isTrue(boolean expression, String errorFormat, Object... args) argument
302 isTrue2(boolean expression, String errorFormat, Object... args) argument
[all...]

Completed in 916 milliseconds

1234567891011>>