HomeSort by relevance Sort by last modified time
    Searched refs:expression (Results 1 - 25 of 610) 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/chromium_org/third_party/angle_dx11/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...]
  /ndk/sources/android/support/tests/minitest/
minitest.h 53 // EXPECT_EQ(expected, expression) << "When checking 'foo'";
57 // EXPECT_EQ(expected, expression);
273 #define EXPECT_TRUE(expression) \
275 if (!(expression)) { \
276 printf("EXPECT_TRUE:%s:%d: expression '%s' returned 'false', expected 'true'\n", \
277 __FILE__, __LINE__, #expression); \
282 #define EXPECT_FALSE(expression) \
284 if (!!(expression)) { \
285 printf("EXPECT_FALSE:%s:%d: expression '%s' returned 'true', expected 'false'\n", \
286 __FILE__, __LINE__, #expression); \
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/tests/lower_jumps/
lower_unified_returns.opt_test 16 ((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)))
lower_breaks_6.opt_test 16 ((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)))
lower_guarded_conditional_break.opt_test 14 ((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)
lower_returns_3.opt_test 14 ((if (expression bool > (var_ref a) (constant float (0.000000)))
15 ((if (expression bool > (var_ref b) (constant float (0.000000)))
lower_returns_main_false.opt_test 12 ((if (expression bool > (var_ref a) (constant float (0.000000)))
13 ((if (expression bool > (var_ref b) (constant float (0.000000)))
lower_returns_main_true.opt_test 12 ((if (expression bool > (var_ref a) (constant float (0.000000)))
13 ((if (expression bool > (var_ref b) (constant float (0.000000)))
lower_returns_sub_false.opt_test 11 ((if (expression bool > (var_ref a) (constant float (0.000000)))
12 ((if (expression bool > (var_ref b) (constant float (0.000000)))
lower_returns_sub_true.opt_test 11 ((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/
lower_unified_returns.opt_test 16 ((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)))
lower_breaks_6.opt_test 16 ((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)))
lower_guarded_conditional_break.opt_test 14 ((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)
lower_returns_3.opt_test 14 ((if (expression bool > (var_ref a) (constant float (0.000000)))
15 ((if (expression bool > (var_ref b) (constant float (0.000000)))
lower_returns_main_false.opt_test 12 ((if (expression bool > (var_ref a) (constant float (0.000000)))
13 ((if (expression bool > (var_ref b) (constant float (0.000000)))
lower_returns_main_true.opt_test 12 ((if (expression bool > (var_ref a) (constant float (0.000000)))
13 ((if (expression bool > (var_ref b) (constant float (0.000000)))
lower_returns_sub_false.opt_test 11 ((if (expression bool > (var_ref a) (constant float (0.000000)))
12 ((if (expression bool > (var_ref b) (constant float (0.000000)))
  /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/chromium_org/third_party/angle_dx11/src/compiler/preprocessor/
ExpressionParser.y 8 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/base/synchronization/
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/chromium_org/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/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...]

Completed in 323 milliseconds

1 2 3 4 5 6 7 8 91011>>