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

  /external/v8/src/
regexp.js 344 // Getter and setter for the input.
354 %DefineAccessor($RegExp, 'input', SETTER, RegExpSetInput, DONT_DELETE);
356 %DefineAccessor($RegExp, '$_', SETTER, RegExpSetInput, DONT_ENUM | DONT_DELETE);
358 %DefineAccessor($RegExp, '$input', SETTER, RegExpSetInput, DONT_ENUM | DONT_DELETE);
367 // Getter and setter for multiline.
373 %DefineAccessor($RegExp, 'multiline', SETTER, RegExpSetMultiline, DONT_DELETE);
375 %DefineAccessor($RegExp, '$*', SETTER, RegExpSetMultiline, DONT_ENUM | DONT_DELETE);
383 %DefineAccessor($RegExp, 'lastMatch', SETTER, NoOpSetter, DONT_DELETE);
385 %DefineAccessor($RegExp, '$&', SETTER, NoOpSetter, DONT_ENUM | DONT_DELETE);
387 %DefineAccessor($RegExp, 'lastParen', SETTER, NoOpSetter, DONT_DELETE)
    [all...]
macros.py 36 # Constants used for getter and setter operations.
38 const SETTER = 1;
v8natives.js 265 return %DefineAccessor(ToObject(this), ToString(name), SETTER, fun);
273 return %LookupAccessor(ToObject(this), ToString(name), SETTER);
588 %DefineOrRedefineAccessorProperty(obj, p, SETTER, desc.getSet(), flag);
ast.cc 138 kind_ = is_getter ? GETTER : SETTER;
ast.h 798 GETTER, SETTER, // Property is an accessor function.
    [all...]
prettyprinter.cc 968 case ObjectLiteral::Property::SETTER:
969 prop_kind = "PROPERTY - SETTER";
    [all...]
  /external/v8/src/arm/
full-codegen-arm.cc 834 case ObjectLiteral::Property::SETTER:
839 __ mov(r1, Operand(property->kind() == ObjectLiteral::Property::SETTER ?
    [all...]
codegen-arm.cc     [all...]
  /external/v8/src/ia32/
full-codegen-ia32.cc 944 case ObjectLiteral::Property::SETTER:
948 __ push(Immediate(property->kind() == ObjectLiteral::Property::SETTER ?
    [all...]
codegen-ia32.cc     [all...]
  /external/v8/src/x64/
full-codegen-x64.cc 947 case ObjectLiteral::Property::SETTER:
951 __ Push(property->kind() == ObjectLiteral::Property::SETTER ?
    [all...]
codegen-x64.cc     [all...]

Completed in 80 milliseconds