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

  /libcore/luni/src/main/native/
java_io_ObjectInputStream.cpp 24 #define SETTER(FUNCTION_NAME, JNI_C_TYPE, JNI_TYPE_STRING, JNI_SETTER_FUNCTION) \
40 SETTER(ObjectInputStream_setFieldBool, jboolean, "Z", SetBooleanField)
41 SETTER(ObjectInputStream_setFieldByte, jbyte, "B", SetByteField)
42 SETTER(ObjectInputStream_setFieldChar, jchar, "C", SetCharField)
43 SETTER(ObjectInputStream_setFieldDouble, jdouble, "D", SetDoubleField)
44 SETTER(ObjectInputStream_setFieldFloat, jfloat, "F", SetFloatField)
45 SETTER(ObjectInputStream_setFieldInt, jint, "I", SetIntField)
46 SETTER(ObjectInputStream_setFieldLong, jlong, "J", SetLongField)
47 SETTER(ObjectInputStream_setFieldShort, jshort, "S", SetShortField)
  /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 751 milliseconds