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

1 2

  /frameworks/base/tools/aidl/
Type.cpp 289 addTo->Add(new Assignment(v, new MethodCall(parcel, m_unmarshallMethod)));
308 addTo->Add(new Assignment(v, new MethodCall(parcel, m_createArrayMethod)));
336 addTo->Add(new Assignment(v, new Comparison(new LiteralExpression("0"),
356 addTo->Add(new Assignment(v, new MethodCall(parcel, "createBooleanArray")));
383 addTo->Add(new Assignment(v, new MethodCall(parcel, "readInt"), this));
402 addTo->Add(new Assignment(v, new MethodCall(parcel, "createCharArray")));
433 addTo->Add(new Assignment(v, new MethodCall(parcel, "readString")));
452 addTo->Add(new Assignment(v, new MethodCall(parcel, "createStringArray")));
507 elsepart->statements->Add(new Assignment(v, NULL_VALUE));
513 ifpart->statements->Add(new Assignment(v
    [all...]
AST.h 128 struct Assignment : public Expression
134 Assignment(Variable* lvalue, Expression* rvalue);
135 Assignment(Variable* lvalue, Expression* rvalue, Type* cast);
136 virtual ~Assignment();
AST.cpp 244 Assignment::Assignment(Variable* l, Expression* r)
251 Assignment::Assignment(Variable* l, Expression* r, Type* c)
258 Assignment::~Assignment()
263 Assignment::Write(FILE* to)
generate_java.cpp 216 ctor->statements->Add(new Assignment(mRemote, remote));
268 lencheck->statements->Add(new Assignment(v, NULL_VALUE));
270 lencheck->elseif->statements->Add(new Assignment(v,
379 c->statements->Add(new Assignment(
  /external/chromium/net/base/
address_list_unittest.cc 38 TEST(AddressListTest, Assignment) {
  /external/v8/test/mjsunit/
override-read-only-property.js 40 // Assignment to a property which does not exist on the object itself,
47 // Assignment to a property which does not exist on the object itself,
55 // Assignment to read-only property on the object itself is ignored.
59 // G should be read-only on the global object and the assignment is
arguments-read-and-assignment.js 43 "arguments assignment");
60 "args[0] assignment");
123 // Assignment to captured parameters.
127 }(20, 37), "captured assignment");
  /external/v8/src/mips/
full-codegen-mips.cc 171 void FullCodeGenerator::EmitNamedPropertyAssignment(Assignment* expr) {
176 void FullCodeGenerator::EmitKeyedPropertyAssignment(Assignment* expr) {
codegen-mips.cc 240 void CodeGenerator::VisitAssignment(Assignment* node) {
  /external/v8/test/mjsunit/regress/
regress-334.js 69 // Assignment to non-readonly. Assignment shouldn't change attributes!
  /external/v8/src/
full-codegen.h 371 // Apply the compound assignment operator. Expects the left operand on top
375 // Complete a variable assignment. The right-hand-side value is expected
379 // Complete a named property assignment. The receiver is expected on top
381 void EmitNamedPropertyAssignment(Assignment* expr);
383 // Complete a keyed property assignment. The receiver and key are
386 void EmitKeyedPropertyAssignment(Assignment* expr);
rewriter.cc 291 void AstOptimizer::VisitAssignment(Assignment* node) {
297 // No type can be infered from the general assignment.
336 // Pure assignment copies the type from the value.
364 // Since this is an assignment. We have to propagate this node's type to the
547 // there was ever an assignment to result_.
559 return new Assignment(Token::ASSIGN, result_, value,
756 void Processor::VisitAssignment(Assignment* node) {
data-flow.cc 199 void AstLabeler::VisitAssignment(Assignment* expr) {
490 void LivenessAnalyzer::VisitAssignment(Assignment* expr) {
497 // Record use of this at the assignment node. Assignments to
ast.h 85 V(Assignment) \
138 virtual Assignment* AsAssignment() { return NULL; }
    [all...]
parser.cc 118 // The minimum number of contiguous assignment that will
1436 Assignment* assignment = AsAssignment(stat); local
1540 Assignment* assignment = AsAssignment(stat); local
2200 Assignment* assignment = NEW(Assignment(op, last_var, value, position)); local
    [all...]
fast-codegen.cc 264 void FastCodeGenSyntaxChecker::VisitAssignment(Assignment* expr) {
266 if (expr->op() != Token::ASSIGN) BAILOUT("Non-simple assignment");
269 if (prop == NULL) BAILOUT("Non-property assignment");
272 BAILOUT("Non-this-property assignment");
275 BAILOUT("Non-named-property assignment");
290 if (lookup.holder() != *receiver) BAILOUT("Non-own property assignment");
291 if (!lookup.type() == FIELD) BAILOUT("Non-field property assignment");
634 void FastCodeGenerator::VisitAssignment(Assignment* expr) {
635 // Known to be a simple this property assignment. Effectively a unary
usage-analyzer.cc 276 void UsageComputer::VisitAssignment(Assignment* node) {
prettyprinter.cc 321 void PrettyPrinter::VisitAssignment(Assignment* node) {
1034 void AstPrinter::VisitAssignment(Assignment* node) {
    [all...]
ast.cc 95 Token::Value Assignment::binary_op() const {
full-codegen.cc 283 void FullCodeGenSyntaxChecker::VisitAssignment(Assignment* expr) {
291 if (var->mode() == Variable::CONST) BAILOUT("Assignment to const");
300 BAILOUT("non-variable/non-property assignment");
  /external/v8/src/ia32/
codegen-ia32.h 89 // reference is for a compound assignment.
433 // Support for compiling assignment expressions.
434 void EmitSlotAssignment(Assignment* node);
435 void EmitNamedPropertyAssignment(Assignment* node);
436 void EmitKeyedPropertyAssignment(Assignment* node);
    [all...]
fast-codegen-ia32.cc 264 void FastCodeGenSyntaxChecker::VisitAssignment(Assignment* expr) {
266 if (expr->op() != Token::ASSIGN) BAILOUT("Non-simple assignment");
269 if (prop == NULL) BAILOUT("Non-property assignment");
272 BAILOUT("Non-this-property assignment");
275 BAILOUT("Non-named-property assignment");
290 if (lookup.holder() != *receiver) BAILOUT("Non-own property assignment");
291 if (!lookup.type() == FIELD) BAILOUT("Non-field property assignment");
837 void FastCodeGenerator::VisitAssignment(Assignment* expr) {
838 // Known to be a simple this property assignment. Effectively a unary
full-codegen-ia32.cc 1016 void FullCodeGenerator::VisitAssignment(Assignment* expr) {
1017 Comment cmnt(masm_, "[ Assignment");
    [all...]
  /external/v8/src/arm/
full-codegen-arm.cc 910 void FullCodeGenerator::VisitAssignment(Assignment* expr) {
911 Comment cmnt(masm_, "[ Assignment");
943 // If we have a compound assignment: Get value of LHS expression and
969 // If we have a compound assignment: Apply operator.
    [all...]
  /external/v8/src/x64/
full-codegen-x64.cc 1018 void FullCodeGenerator::VisitAssignment(Assignment* expr) {
1019 Comment cmnt(masm_, "[ Assignment");
    [all...]

Completed in 113 milliseconds

1 2