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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium/sdch/open-vcdiff/src/
compile_assert.h 45 #define COMPILE_ASSERT(expr, msg) \
46 typedef CompileAssert<static_cast<bool>(expr)> \
47 msg[static_cast<bool>(expr) ? 1 : -1]
56 // #define COMPILE_ASSERT(expr, msg) typedef char msg[(expr) ? 1 : -1]
67 // - By using the type CompileAssert<(static_cast<bool>(expr))>, we ensure that
68 // expr is a compile-time constant. (Template arguments must be
71 // - The array size is (static_cast<bool>(expr) ? 1 : -1), instead of simply
73 // ((expr) ? 1 : -1).
  /system/core/sh/
arith.y 76 exp: expr {
82 expr: ARITH_LPAREN expr ARITH_RPAREN { $$ = $2; } label
83 | expr ARITH_OR expr { $$ = $1 ? $1 : $3 ? $3 : 0; }
84 | expr ARITH_AND expr { $$ = $1 ? ( $3 ? $3 : 0 ) : 0; }
85 | expr ARITH_BOR expr { $$ = $1 | $3; }
86 | expr ARITH_BXOR expr { $$ = $1 ^ $3;
    [all...]
  /bootable/recovery/edify/
parser.y 22 #include "expr.h"
29 void yyerror(Expr** root, int* error_count, const char* s);
30 int yyparse(Expr** root, int* error_count);
38 Expr* expr;
41 Expr** argv;
47 %type <expr> expr
50 %parse-param {Expr** root}
65 input: expr { *root = $1;
68 expr: STRING { label
    [all...]
  /external/mesa3d/src/glsl/
lower_noise.cpp 46 ir_expression *expr = (*rvalue)->as_expression();
47 if (!expr)
53 if (expr->operation == ir_unop_noise) {
54 *rvalue = ir_constant::zero(hieralloc_parent(expr), expr->type);
s_expression.cpp 54 s_expression *expr = NULL; local
71 expr = new(ctx) s_float(f);
73 expr = new(ctx) s_int(i);
76 expr = new(ctx) s_symbol(src, n);
81 return expr;
99 s_expression *expr; local
101 while ((expr = read_expression(ctx, src)) != NULL) {
102 list->subexpressions.push_tail(expr);
134 s_expression *expr = (s_expression*) it.get(); local
135 expr->print()
    [all...]
hir_field_selection.cpp 31 _mesa_ast_field_selection_to_hir(const ast_expression *expr,
39 op = expr->subexpressions[0]->hir(instructions, state);
47 YYLTYPE loc = expr->get_location();
52 expr->primary_expression.identifier,
62 expr->primary_expression.identifier);
66 expr->primary_expression.identifier);
71 expr->primary_expression.identifier);
73 } else if (expr->subexpressions[1] != NULL) {
78 ast_expression *call = expr->subexpressions[1];
98 expr->primary_expression.identifier)
    [all...]
  /external/valgrind/main/coregrind/
pub_core_libcassert.h 49 #define vg_assert(expr) \
50 ((void) ((expr) ? 0 : \
51 (VG_(assert_fail) (/*isCore*/True, #expr, \
56 #define vg_assert2(expr, format, args...) \
57 ((void) ((expr) ? 0 : \
58 (VG_(assert_fail) (/*isCore*/True, #expr, \
  /external/clang/test/Sema/
i-c-e.c 9 int expr; variable
10 char w[__builtin_constant_p(expr) ? expr : 1];
21 expr // expected-note {{subexpression not valid in an integer constant expression}}
49 int expr; variable
50 char y[__builtin_constant_p(expr) ? -1 : 1];
62 char pbcp[__builtin_constant_p(4) ? (intptr_t)&expr : 0]; // expected-error {{variable length array declaration not allowed at file scope}}
73 int chooseexpr[__builtin_choose_expr(1, 1, expr)];
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
ast.ml 5 (* expr - Base type for all expression nodes. *)
6 type expr = type
14 | Unary of char * expr
17 | Binary of char * expr * expr
20 | Call of string * expr array
23 | If of expr * expr * expr
26 | For of string * expr * expr * expr option * exp
    [all...]
  /external/javassist/src/main/javassist/compiler/ast/
InstanceOfExpr.java 24 public InstanceOfExpr(ASTList className, int dim, ASTree expr) {
25 super(className, dim, expr);
28 public InstanceOfExpr(int type, int dim, ASTree expr) {
29 super(type, dim, expr);
  /external/clang/test/Parser/
builtin_types_compatible.c 9 #define func(expr) \
11 typeof(expr) tmp; \
12 if (__builtin_types_compatible_p(typeof(expr), int)) funcInt(tmp); \
13 else if (__builtin_types_compatible_p(typeof(expr), float)) funcFloat(tmp); \
14 else if (__builtin_types_compatible_p(typeof(expr), double)) funcDouble(tmp); \
16 #define func_choose(expr) \
17 __builtin_choose_expr(__builtin_types_compatible_p(typeof(expr), int), funcInt(expr), \
18 __builtin_choose_expr(__builtin_types_compatible_p(typeof(expr), float), funcFloat(expr), \
    [all...]
  /external/javassist/src/main/javassist/compiler/
NoFieldException.java 22 private ASTree expr; field in class:NoFieldException
29 expr = e;
38 public ASTree getExpr() { return expr; }
TypeChecker.java 141 public void atNewExpr(NewExpr expr) throws CompileError {
142 if (expr.isArray())
143 atNewArrayExpr(expr);
145 CtClass clazz = resolver.lookupClassByName(expr.getClassName());
147 ASTList args = expr.getArguments();
155 public void atNewArrayExpr(NewExpr expr) throws CompileError {
156 int type = expr.getArrayType();
157 ASTList size = expr.getArraySize();
158 ASTList classname = expr.getClassName();
159 ASTree init = expr.getInitializer()
    [all...]
  /frameworks/compile/linkloader/utils/
rsl_assert.cpp 30 char const *expr) {
33 llvm::errs() << "rslAssert [" << file << ":" << line << "] " << expr << "\n"; local
37 LOGE("rslAssert [%s:%d] %s\n", file, line, expr);
  /hardware/ti/omap3/omx/system/src/openmax_il/perf/tests/
perf 38 expr $2 / 2
41 expr $2 \* 2
43 expr $2
90 6) VDsize=$(expr $6 \* $7 \* 2)
92 13|14) VDsize=$(expr $9 \* $10 \* 2)
94 15) VDsize=$(expr $5 \* $6 \* 2)
104 size=$(expr $4 \* $5 \* 2)
132 size=$(expr $width \* $height \* 2)
142 size=$(expr $4 \* $5 \* 2)
173 size=$(expr $width \* $height \* 2
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
ast.ml 5 (* expr - Base type for all expression nodes. *)
6 type expr = type
14 | Unary of char * expr
17 | Binary of char * expr * expr
20 | Call of string * expr array
23 | If of expr * expr * expr
26 | For of string * expr * expr * expr option * exp
    [all...]
  /external/valgrind/main/include/
pub_tool_libcassert.h 34 #define tl_assert(expr) \
35 ((void) ((expr) ? 0 : \
36 (VG_(assert_fail) (/*isCore?*/False, (const Char*)#expr, \
42 #define tl_assert2(expr, format, args...) \
43 ((void) ((expr) ? 0 : \
44 (VG_(assert_fail) (/*isCore?*/False, (const Char*)#expr, \
58 extern void VG_(assert_fail) ( Bool isCore, const Char* expr, const Char* file,
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
ast.ml 5 (* expr - Base type for all expression nodes. *)
6 type expr = type
14 | Binary of char * expr * expr
17 | Call of string * expr array
20 | If of expr * expr * expr
23 | For of string * expr * expr * expr option * exp
    [all...]
  /external/webkit/LayoutTests/fast/xpath/
xpath-test-pre.js 17 function test(doc, context, expr, expected, nsResolver)
23 var result = doc.evaluate(expr, context, nsResolver, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);
24 checkSnapshot(expr, result, expected);
26 var result = doc.evaluate(expr, context, nsResolver, XPathResult.ANY_TYPE, null);
29 testPassed(expr);
31 testFailed(expr + ": expected " + expected + ", actual " + result.numberValue);
34 testPassed(expr);
36 testFailed(expr + ": expected '" + expected + "', actual '" + result.stringValue + "'");
39 testPassed(expr);
41 testFailed(expr + ": expected '" + expected + "', actual '" + result.booleanValue + "'")
    [all...]
  /build/tools/apicheck/etc/
apicheck 26 newProg=`expr "${newProg}" : ".* -> \(.*\)$"`
27 if expr "x${newProg}" : 'x/' >/dev/null; then
42 while expr "x$1" : 'x-J' >/dev/null; do
43 opt=`expr "x$1" : 'x-J\(.*\)'`
  /cts/tools/cts-api-coverage/etc/
cts-api-coverage 22 newProg=`expr "${newProg}" : ".* -> \(.*\)$"`
23 if expr "x${newProg}" : 'x/' >/dev/null; then
40 while expr "x$1" : 'x-J' >/dev/null; do
41 opt=`expr "$1" : '-J\(.*\)'`
  /development/tools/apkcheck/etc/
apkcheck 22 newProg=`expr "${newProg}" : ".* -> \(.*\)$"`
23 if expr "x${newProg}" : 'x/' >/dev/null; then
40 while expr "x$1" : 'x-J' >/dev/null; do
41 opt=`expr "$1" : '-J\(.*\)'`
  /external/v8/src/
data-flow.cc 171 void AssignedVariablesAnalyzer::MarkIfTrivial(Expression* expr) {
172 Variable* var = expr->AsVariableProxy()->AsVariable();
178 expr->AsVariableProxy()->MarkAsTrivial();
183 void AssignedVariablesAnalyzer::ProcessExpression(Expression* expr) {
186 Visit(expr);
317 void AssignedVariablesAnalyzer::VisitFunctionLiteral(FunctionLiteral* expr) {
324 SharedFunctionInfoLiteral* expr) {
330 void AssignedVariablesAnalyzer::VisitConditional(Conditional* expr) {
333 Visit(expr->condition());
337 Visit(expr->then_expression())
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
ast.ml 5 (* expr - Base type for all expression nodes. *)
6 type expr = type
14 | Binary of char * expr * expr
17 | Call of string * expr array
25 type func = Function of proto * expr
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
ast.ml 5 (* expr - Base type for all expression nodes. *)
6 type expr = type
14 | Binary of char * expr * expr
17 | Call of string * expr array
25 type func = Function of proto * expr

Completed in 794 milliseconds

1 2 3 4 5 6 7 8 91011>>