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

1 2

  /external/webkit/WebCore/bindings/v8/custom/
V8DocumentCustom.cpp 65 String expression = toWebCoreString(args[0]); local
80 RefPtr<XPathResult> result = document->evaluate(expression, contextNode.get(), resolver.get(), type, inResult.get(), ec);
  /external/e2fsprogs/intl/
plural-exp.h 0 /* Expression parsing and evaluation for plural form selection.
34 struct expression struct
64 struct expression *args[3]; /* Up to three arguments. */
73 struct expression *res;
82 binary incompatible changes in 'struct expression'. Furthermore,
104 extern void FREE_EXPRESSION (struct expression *exp)
107 extern struct expression GERMANIC_PLURAL attribute_hidden;
109 struct expression **pluralp,
114 extern unsigned long int plural_eval (struct expression *pexp,
  /external/v8/src/
ast.cc 119 ObjectLiteral::Property::Property(Literal* key, Expression* value) {
177 void AstVisitor::VisitExpressions(ZoneList<Expression*>* expressions) {
181 // undefined expression or literal? Revisit this code if this
183 Expression* expression = expressions->at(i); local
184 if (expression != NULL) Visit(expression);
288 // Convert regular expression trees to a simple sexp representation.
ast.h 127 virtual Expression* AsExpression() { return NULL; }
164 class Expression: public AstNode {
186 Expression() : num_(kNoLabel), def_(NULL), defined_vars_(NULL) {}
188 virtual Expression* AsExpression() { return this; }
197 // True if the expression does not have (evaluated) subexpressions.
202 // True if the expression has no side effects and is safe to
206 // Mark the expression as being compiled as an expression
211 // Static type information for this expression.
237 * A sentinel used during pre parsing that represents some expression
480 Expression* expression() { return expression_; } function in class:v8::internal::ExpressionStatement
525 Expression* expression() { return expression_; } function in class:v8::internal::ReturnStatement
539 Expression* expression() const { return expression_; } function in class:v8::internal::WithEnterStatement
1085 Expression* expression() const { return expression_; } function in class:v8::internal::Call
1107 Expression* expression() const { return expression_; } function in class:v8::internal::CallNew
1156 Expression* expression() const { return expression_; } function in class:v8::internal::UnaryOperation
1228 Expression* expression() const { return expression_; } function in class:v8::internal::CountOperation
    [all...]
parser.cc 168 Block* ParseVariableDeclarations(bool accept_IN, Expression** var, bool* ok);
175 Block* WithHelper(Expression* obj,
186 Expression* MakeCatchContext(Handle<String> id, VariableProxy* value);
190 Expression* ParseExpression(bool accept_IN, bool* ok);
191 Expression* ParseAssignmentExpression(bool accept_IN, bool* ok);
192 Expression* ParseConditionalExpression(bool accept_IN, bool* ok);
193 Expression* ParseBinaryExpression(int prec, bool accept_IN, bool* ok);
194 Expression* ParseUnaryExpression(bool* ok);
195 Expression* ParsePostfixExpression(bool* ok);
196 Expression* ParseLeftHandSideExpression(bool* ok)
1353 Expression* expression = ParseJson(&ok); local
1856 Expression* expression = local
2715 Expression* expression = ParseExpression(false, CHECK_OK); local
2796 Expression* expression = ParseConditionalExpression(accept_IN, CHECK_OK); local
2840 Expression* expression = ParseBinaryExpression(4, accept_IN, CHECK_OK); local
2984 Expression* expression = ParseUnaryExpression(CHECK_OK); local
3005 Expression* expression = ParseUnaryExpression(CHECK_OK); local
3026 Expression* expression = ParseLeftHandSideExpression(CHECK_OK); local
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
c-pretty-print.h 90 c_pretty_print_fn expression; member in struct:c_pretty_print_info
151 pp_c_base (PP)->expression (pp_c_base (PP), E)
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
c-pretty-print.h 90 c_pretty_print_fn expression; member in struct:c_pretty_print_info
151 pp_c_base (PP)->expression (pp_c_base (PP), E)
  /external/srec/srec/Semproc/src/
SemanticProcessorImpl.c 63 const LCHAR* expression; member in struct:script_t
539 raw_scripts_buf.list[i].expression = 0;
557 * expression is: meaning='hello';meaning=meaning+' '+'world';
568 if (raw_scripts_buf.list[i].ruleName && raw_scripts_buf.list[i].expression &&
570 raw_scripts_buf.list[i].expression != WORD_NOT_FOUND)
572 if (!LSTRCMP(raw_scripts_buf.list[i].expression, L(";")))
592 /* append the rest of the expression */
593 src = raw_scripts_buf.list[i].expression;
632 * In an expression there may be several statements, each perhaps with a
645 /* if end of the expression */
    [all...]
  /frameworks/base/tools/aidl/
AST.h 42 struct Expression
44 virtual ~Expression();
48 struct LiteralExpression : public Expression
57 struct Variable : public Expression
73 struct FieldVariable : public Expression
75 Expression* object;
79 FieldVariable(Expression* object, const string& name);
116 void Add(Expression* expression);
121 Expression* expression member in struct:ExpressionStatement
206 Expression* expression; member in struct:Cast
228 Expression* expression; member in struct:IfStatement
239 Expression* expression; member in struct:ReturnStatement
287 Expression* expression; member in struct:SwitchStatement
    [all...]
AST.cpp 37 WriteArgumentList(FILE* to, const vector<Expression*>& arguments)
95 Expression::~Expression()
162 FieldVariable::FieldVariable(Expression* o, const string& n)
223 StatementBlock::Add(Expression* expression)
225 this->statements.push_back(new ExpressionStatement(expression));
228 ExpressionStatement::ExpressionStatement(Expression* e)
229 :expression(e)
240 this->expression->Write(to)
324 Expression* expression = (Expression*)va_arg(args, void*); local
    [all...]
  /external/v8/src/arm/
codegen-arm.h 57 Expression* expression,
61 Expression* expression() const { return expression_; } function in class:v8::internal::BASE_EMBEDDED
87 // expression stack. The reference is expected to be already on top of
88 // the expression stack, and it is consumed by the call unless the
97 // Generate code to store the value on top of the expression stack in the
99 // on the expression stack. The value is stored in the location specified
106 Expression* expression_;
166 static bool ShouldGenerateLog(Expression* type)
    [all...]
codegen-arm.cc 402 // (such as the variable referring to a named function expression).
405 // such assignments into expression statements); however, in general
486 void CodeGenerator::LoadCondition(Expression* x,
497 // the expression. In that case, we ensure that we have a
503 // with a dummied frame state, and visiting this expression
523 void CodeGenerator::Load(Expression* expr) {
596 void CodeGenerator::LoadTypeofExpression(Expression* expr) {
622 Expression* expression,
625 expression_(expression),
1281 Expression* expression = node->expression(); local
    [all...]
  /external/sonivox/arm-fm-22k/host_src/
eas_types.h 246 EAS_U8 expression; /* CC11 */ member in struct:s_midi_controllers_tag
  /external/sonivox/arm-fm-22k/lib_src/
eas_synth.h 218 EAS_U8 expression; /* CC11 */ member in struct:s_synth_channel_tag
  /external/sonivox/arm-hybrid-22k/host_src/
eas_types.h 246 EAS_U8 expression; /* CC11 */ member in struct:s_midi_controllers_tag
  /external/sonivox/arm-hybrid-22k/lib_src/
eas_synth.h 218 EAS_U8 expression; /* CC11 */ member in struct:s_synth_channel_tag
  /external/sonivox/arm-wt-22k/host_src/
eas_types.h 251 EAS_U8 expression; /* CC11 */ member in struct:s_midi_controllers_tag
  /external/sonivox/arm-wt-22k/lib_src/
eas_synth.h 218 EAS_U8 expression; /* CC11 */ member in struct:s_synth_channel_tag
  /external/v8/src/ia32/
codegen-ia32.h 57 Expression* expression,
61 Expression* expression() const { return expression_; } function in class:v8::internal::BASE_EMBEDDED
87 // expression stack. The reference is expected to be already on top of
88 // the expression stack, and it is consumed by the call unless the
98 // Generate code to store the value on top of the expression stack in the
100 // on the expression stack. The value is stored in the location specified
107 Expression* expression_;
125 // when compiling an expression) because they can cause either labe
    [all...]
codegen-ia32.cc 361 // (such as the variable referring to a named function expression).
364 // such assignments into expression statements); however, in general
437 // Emit code to load the value of an expression to the top of the
438 // frame. If the expression is boolean-valued it may be compiled (or
441 void CodeGenerator::LoadCondition(Expression* x,
451 // the expression. In that case, we ensure that we have a
457 // with a dummied frame state, and visiting this expression
476 void CodeGenerator::LoadAndSpill(Expression* expression) {
479 Load(expression);
2792 Expression* expression = node->expression(); local
5956 Expression* expression = node->expression(); local
    [all...]
  /external/v8/src/x64/
codegen-x64.h 58 Expression* expression,
62 Expression* expression() const { return expression_; } function in class:v8::internal::BASE_EMBEDDED
88 // expression stack. The reference is expected to be already on top of
89 // the expression stack, and it is consumed by the call unless the
99 // Generate code to store the value on top of the expression stack in the
101 // on the expression stack. The value is stored in the location specified
108 Expression* expression_;
125 // when compiling an expression) because they can cause either labe
    [all...]
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/project/
ProjectCreator.java 955 String expression = String.format("\/manifest\/application\/activity" + local
    [all...]
  /external/elfutils/src/
ld.h 470 /* Data structure to describe expression in linker script. */
471 struct expression struct
492 struct expression *child;
495 struct expression *left;
496 struct expression *right;
523 struct expression *expression; member in struct:assignment
  /packages/apps/Calculator/
arity-2.1.2.jar 
  /prebuilt/common/ecj/
ecj.jar 

Completed in 1046 milliseconds

1 2