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

1 2 3 4 5 6 7

  /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);
42 Expr* expr;
45 Expr** argv;
51 %type <expr> expr
54 %parse-param {Expr** root}
69 input: expr { *root = $1;
72 expr: STRING { label
    [all...]
  /external/iproute2/misc/
ssfilter.y 44 applet: null expr
53 expr: DCOND HOSTCOND label
115 | expr '|' expr
120 | expr expr
125 | expr '&' expr
131 | '!' expr
135 | '(' expr ')'
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XPathEvaluator.cpp 65 RefPtrWillBeRawPtr<XPathExpression> expr = createExpression(expression, resolver, exceptionState); local
69 return expr->evaluate(contextNode, type, result, exceptionState);
XPathExpression.cpp 51 RefPtrWillBeRawPtr<XPathExpression> expr = XPathExpression::create(); local
54 expr->m_topExpression = parser.parseStatement(expression, resolver, exceptionState);
55 if (!expr->m_topExpression)
58 return expr.release();
  /external/deqp/framework/delibs/decpp/
deDefs.cpp 32 void throwRuntimeError (const char* message, const char* expr, const char* file, int line)
36 if (expr)
37 msg << '\'' << expr << '\''; local
  /external/deqp/execserver/
xsDefs.cpp 31 static std::string formatError (const char* message, const char* expr, const char* file, int line)
35 if (expr)
36 msg << '\'' << expr << '\''; local
41 Error::Error (const char* message, const char* expr, const char* file, int line)
42 : std::runtime_error(formatError(message, expr, file, line))
  /external/deqp/executor/
xeDefs.cpp 31 static std::string formatError (const char* message, const char* expr, const char* file, int line)
35 if (expr)
36 msg << '\'' << expr << '\''; local
41 Error::Error (const char* message, const char* expr, const char* file, int line)
42 : std::runtime_error(formatError(message, expr, file, line))
  /external/iproute2/tc/
emp_ematch.y 31 %type <e> match expr
38 | expr
40 | expr error
47 expr: label
50 | match relation expr
66 | invert '(' expr ')'
  /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; }
  /external/chromium_org/third_party/mesa/src/src/glsl/
lower_texture_projection.cpp 64 ir_expression *expr = new(mem_ctx) ir_expression(ir_unop_rcp, local
68 ir_assignment *assign = new(mem_ctx) ir_assignment(deref, expr, NULL);
  /external/javassist/src/main/javassist/expr/
ConstructorCall.java 16 package javassist.expr;
ExprEditor.java 16 package javassist.expr;
180 Expr expr = null; local
190 expr = new MethodCall(pos, iterator, clazz, minfo);
191 edit((MethodCall)expr);
196 expr = new FieldAccess(pos, iterator, clazz, minfo, c);
197 edit((FieldAccess)expr);
209 expr = new NewExpr(pos, iterator, clazz, minfo,
211 edit((NewExpr)expr);
218 expr = ccall
    [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
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
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/lib/Target/Sparc/
SparcMCInstLower.cpp 64 const SparcMCExpr *expr = SparcMCExpr::Create(Kind, MCSym, local
66 return MCOperand::CreateExpr(expr);
  /external/mesa3d/src/glsl/
lower_texture_projection.cpp 64 ir_expression *expr = new(mem_ctx) ir_expression(ir_unop_rcp, local
68 ir_assignment *assign = new(mem_ctx) ir_assignment(deref, expr, NULL);
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
XUnresolvedVariableSimple.java 55 Expression expr = ((ElemVariable)m_obj).getSelect().getExpression(); local
56 XObject xobj = expr.execute(xctxt);
  /external/apache-xml/src/main/java/org/apache/xpath/operations/
VariableSafeAbsRef.java 67 Expression expr = (Expression)xns.getContainedIter(); local
68 xns = (XNodeSet)expr.asIterator(xctxt, context);
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_cubemap_normalize.cpp 78 ir_expression *expr; local
79 expr = new(mem_ctx) ir_expression(ir_binop_max,
83 expr = new(mem_ctx) ir_expression(ir_binop_max,
85 expr, swiz2);
87 expr = new(mem_ctx) ir_expression(ir_unop_rcp,
89 expr, NULL);
95 expr);
  /external/deqp/framework/common/
tcuDefs.cpp 50 static std::string formatError (const char* message, const char* expr, const char* file, int line)
55 if (expr)
56 msg << ": '" << expr << '\''; local
64 Exception::Exception (const char* message, const char* expr, const char* file, int line)
65 : std::runtime_error(formatError(message, expr, file, line))
76 TestException::TestException (const char* message, const char* expr, const char* file, int line, qpTestResult result)
77 : Exception (formatError(message, expr, file, line))
88 TestError::TestError (const char* message, const char* expr, const char* file, int line)
89 : TestException(message, expr, file, line, QP_TEST_RESULT_FAIL)
98 InternalError::InternalError (const char* message, const char* expr, const char* file, int line
    [all...]
  /external/jarjar/src/main/com/tonicsystems/jarjar/
PatternElement.java 37 String expr = pattern.getPattern(); local
38 if (expr.indexOf('/') >= 0)
40 wildcards.add(new Wildcard(expr.replace('.', '/'), result));
  /external/libsepol/tests/
test-linker-cond-map.c 60 cond_expr_t *expr; local
63 CU_ASSERT_FATAL(d->cond_list->expr != NULL);
65 expr = d->cond_list->expr;
68 CU_ASSERT_FATAL(expr != NULL);
70 CU_ASSERT(expr->expr_type == bools[i].expr_type);
72 CU_ASSERT(strcmp(p->sym_val_to_name[SYM_BOOLS][expr->bool - 1], bools[i].bool) == 0);
74 expr = expr->next;
  /external/lldb/test/lang/c/blocks/
TestBlocks.py 18 self.expr()
24 self.expr()
55 def expr(self): member in class:AnonymousTestCase
  /external/lldb/test/lang/c/shared_lib/
TestSharedLib.py 17 self.expr()
23 self.expr()
67 def expr(self): member in class:SharedLibTestCase

Completed in 544 milliseconds

1 2 3 4 5 6 7