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

  /libcore/luni/src/main/native/
java_io_ObjectOutputStream.cpp 24 #define GETTER(FUNCTION_NAME, JNI_C_TYPE, JNI_TYPE_STRING, JNI_GETTER_FUNCTION) \
41 GETTER(ObjectOutputStream_getFieldBool, jboolean, "Z", GetBooleanField)
42 GETTER(ObjectOutputStream_getFieldByte, jbyte, "B", GetByteField)
43 GETTER(ObjectOutputStream_getFieldChar, jchar, "C", GetCharField)
44 GETTER(ObjectOutputStream_getFieldDouble, jdouble, "D", GetDoubleField)
45 GETTER(ObjectOutputStream_getFieldFloat, jfloat, "F", GetFloatField)
46 GETTER(ObjectOutputStream_getFieldInt, jint, "I", GetIntField)
47 GETTER(ObjectOutputStream_getFieldLong, jlong, "J", GetLongField)
48 GETTER(ObjectOutputStream_getFieldShort, jshort, "S", GetShortField)
  /external/v8/src/
regexp.js 344 // Getter and setter for the input.
353 %DefineAccessor($RegExp, 'input', GETTER, RegExpGetInput, DONT_DELETE);
355 %DefineAccessor($RegExp, '$_', GETTER, RegExpGetInput, DONT_ENUM | DONT_DELETE);
357 %DefineAccessor($RegExp, '$input', GETTER, RegExpGetInput, DONT_ENUM | DONT_DELETE);
367 // Getter and setter for multiline.
372 %DefineAccessor($RegExp, 'multiline', GETTER, RegExpGetMultiline, DONT_DELETE);
374 %DefineAccessor($RegExp, '$*', GETTER, RegExpGetMultiline, DONT_ENUM | DONT_DELETE);
382 %DefineAccessor($RegExp, 'lastMatch', GETTER, RegExpGetLastMatch, DONT_DELETE);
384 %DefineAccessor($RegExp, '$&', GETTER, RegExpGetLastMatch, DONT_ENUM | DONT_DELETE);
386 %DefineAccessor($RegExp, 'lastParen', GETTER, RegExpGetLastParen, DONT_DELETE)
    [all...]
macros.py 36 # Constants used for getter and setter operations.
37 const GETTER = 0;
v8natives.js 245 return %DefineAccessor(ToObject(this), ToString(name), GETTER, fun);
253 return %LookupAccessor(ToObject(this), ToString(name), GETTER);
585 %DefineOrRedefineAccessorProperty(obj, p, GETTER, desc.getGet(), flag);
ast.cc 138 kind_ = is_getter ? GETTER : SETTER;
ast.h 798 GETTER, SETTER, // Property is an accessor function.
    [all...]
prettyprinter.cc 965 case ObjectLiteral::Property::GETTER:
966 prop_kind = "PROPERTY - GETTER";
    [all...]
  /external/v8/src/arm/
full-codegen-arm.cc 833 case ObjectLiteral::Property::GETTER:
    [all...]
codegen-arm.cc     [all...]
  /external/v8/src/ia32/
full-codegen-ia32.cc 945 case ObjectLiteral::Property::GETTER:
    [all...]
codegen-ia32.cc     [all...]
  /external/v8/src/x64/
full-codegen-x64.cc 948 case ObjectLiteral::Property::GETTER:
    [all...]
codegen-x64.cc     [all...]

Completed in 363 milliseconds