HomeSort by relevance Sort by last modified time
    Searched refs:Expr (Results 1 - 15 of 15) sorted by null

  /bootable/recovery/edify/
expr.h 26 typedef struct Expr Expr;
54 int argc, Expr* argv[]);
56 struct Expr {
60 Expr** argv;
64 // Take one of the Expr*s passed to the function as an argument,
67 Value* EvaluateValue(State* state, Expr* expr);
69 // Take one of the Expr*s passed to the function as an argument,
74 char* Evaluate(State* state, Expr* expr)
    [all...]
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...]
expr.c 24 #include "expr.h"
35 char* Evaluate(State* state, Expr* expr) {
36 Value* v = expr->fn(expr->name, state, expr->argc, expr->argv);
48 Value* EvaluateValue(State* state, Expr* expr) {
49 return expr->fn(expr->name, state, expr->argc, expr->argv)
    [all...]
main.c 21 #include "expr.h"
24 extern int yyparse(Expr** root, int* error_count);
27 Expr* e;
162 void ExprDump(int depth, Expr* n, char* script) {
194 Expr* root;
  /bootable/recovery/updater/
install.c 31 #include "edify/expr.h"
47 Value* MountFn(const char* name, State* state, int argc, Expr* argv[]) {
119 Value* IsMountedFn(const char* name, State* state, int argc, Expr* argv[]) {
147 Value* UnmountFn(const char* name, State* state, int argc, Expr* argv[]) {
181 Value* FormatFn(const char* name, State* state, int argc, Expr* argv[]) {
259 Value* DeleteFn(const char* name, State* state, int argc, Expr* argv[]) {
290 Value* ShowProgressFn(const char* name, State* state, int argc, Expr* argv[]) {
310 Value* SetProgressFn(const char* name, State* state, int argc, Expr* argv[]) {
329 int argc, Expr* argv[]) {
357 int argc, Expr* argv[])
    [all...]
updater.c 21 #include "edify/expr.h"
97 Expr* root;
  /external/webkit/WebCore/xml/
XPathGrammar.y 66 Expression* expr;
98 %type <expr> Predicate
102 %type <expr> Expr
103 %type <expr> PrimaryExpr
104 %type <expr> FunctionCall
106 %type <expr> Argument
107 %type <expr> UnionExpr
108 %type <expr> PathExpr
109 %type <expr> FilterExp
    [all...]
  /bionic/libc/kernel/tools/
cpp.py 622 class Expr:
683 return Expr.precedences.get(self.op, 1000)
686 return self.op in Expr.unaries
689 return self.op in Expr.binaries
699 class IntExpr(Expr):
701 Expr.__init__(self,opInteger)
717 class IdentExpr(Expr):
719 Expr.__init__(self,opIdent)
728 class CallExpr(Expr):
730 Expr.__init__(self,opCall
    [all...]
  /device/htc/common/updater/
recovery_updater.c 25 #include "edify/expr.h"
32 Value* UpdateFn(const char* name, State* state, int argc, Expr* argv[]) {
  /external/webkit/JavaScriptCore/parser/
Grammar.y 255 %type <expressionNode> Expr ExprNoIn ExprNoBF
362 | '(' Expr ')' { $$ = $2; }
396 | MemberExpr '[' Expr ']' { BracketAccessorNode* node = new (GLOBAL_DATA) BracketAccessorNode(GLOBAL_DATA, $1.m_node, $3.m_node, $3.m_features & AssignFeature);
412 | MemberExprNoBF '[' Expr ']' { BracketAccessorNode* node = new (GLOBAL_DATA) BracketAccessorNode(GLOBAL_DATA, $1.m_node, $3.m_node, $3.m_features & AssignFeature);
445 | CallExpr '[' Expr ']' { BracketAccessorNode* node = new (GLOBAL_DATA) BracketAccessorNode(GLOBAL_DATA, $1.m_node, $3.m_node, $3.m_features & AssignFeature);
457 | CallExprNoBF '[' Expr ']' { BracketAccessorNode* node = new (GLOBAL_DATA) BracketAccessorNode(GLOBAL_DATA, $1.m_node, $3.m_node, $3.m_features & AssignFeature);
    [all...]
  /libcore/luni/src/main/java/org/apache/xpath/compiler/
XPathParser.java 129 Expr();
783 * Expr ::= OrExpr
788 protected void Expr() throws javax.xml.transform.TransformerException
1151 * StringExpr ::= Expr
1162 Expr();
1171 * StringExpr ::= Expr
1182 Expr();
1197 * NumberExpr ::= Expr
1208 Expr();
    [all...]
  /external/sqlite/dist/
sqlite3.c     [all...]
sqlite3.c.orig     [all...]
  /cts/tools/signature-tools/lib/
stringtemplate.jar 
  /prebuilt/common/jython/
jython.jar 

Completed in 1226 milliseconds