HomeSort by relevance Sort by last modified time
    Searched refs:getter (Results 251 - 275 of 330) sorted by null

<<11121314

  /external/javassist/src/main/javassist/
CtNewMethod.java 213 * Creates a public getter method. The getter method returns the value
218 * @param methodName the name of the getter
221 public static CtMethod getter(String methodName, CtField field) method in class:CtNewMethod
  /external/javassist/src/main/javassist/tools/rmi/
StubGenerator.java 151 proxy.addMethod(CtNewMethod.getter(accessorObjectId, f));
  /external/v8/src/
v8globals.h 353 MaybeObject* (*getter)(Object* object, void* data); member in struct:v8::internal::AccessorDescriptor
stub-cache.cc 158 ASSERT(v8::ToCData<Address>(callback->getter()) != 0);
1003 v8::NamedPropertyGetter getter = local
1058 v8::NamedPropertyGetter getter = local
    [all...]
objects.cc 178 MaybeObject* value = (callback->getter)(receiver, callback->data);
186 Object* fun_obj = data->getter();
209 Object* getter = AccessorPair::cast(structure)->getter(); local
210 if (getter->IsSpecFunction()) {
212 return GetPropertyWithDefinedGetter(receiver, JSReceiver::cast(getter));
214 // Getter is not a function.
275 JSReceiver* getter) {
277 Handle<JSReceiver> fun(getter);
281 // Handle stepping into a getter if step into is active
3158 v8::NamedPropertyGetter getter = local
8770 v8::IndexedPropertyGetter getter = local
9015 Object* getter = AccessorPair::cast(structure)->getter(); local
9766 v8::IndexedPropertyGetter getter = local
10051 v8::NamedPropertyGetter getter = local
    [all...]
objects-debug.cc 662 VerifyPointer(getter());
672 VerifyPointer(getter());
687 VerifyPointer(getter());
objects-printer.cc 824 PrintF(out, "\n - getter: ");
825 getter()->ShortPrint(out);
839 PrintF(out, "\n - getter: ");
840 getter()->ShortPrint(out);
859 PrintF(out, "\n - getter: ");
860 getter()->ShortPrint(out);
objects.h     [all...]
  /external/v8/test/mjsunit/
object-create.js 95 // Add a getter foo that returns a counter value.
108 // Make sure that trying to add both a value and a getter
205 assertTrue(/Getter must be a function/.test(e));
219 assertTrue(/Getter must be a function/.test(e));
error-constructors.js 53 // name property with a getter can leaks error objects from different
object-define-property.js 231 // Add a getter - should not touch the setter.
243 // The above should also work if redefining just a getter or setter on
244 // an existing property with both a getter and a setter.
545 // Different getter.
  /external/webkit/LayoutTests/fast/dom/Geolocation/script-tests/
argument-types.js 31 throw new Error('enableHighAccuracy getter exception');
67 test('navigator.geolocation.getCurrentPosition(emptyFunction, undefined, objectThrowingException)', true, 'Error: enableHighAccuracy getter exception');
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_new_introspect.c 89 dsc->getter ? "read" : "",
  /external/v8/include/
v8.h     [all...]
  /external/webkit/Source/WebCore/bindings/scripts/
CodeGeneratorV8.pm 692 # Getter
739 # Generate super-compact call for regular attribute getter:
    [all...]
  /external/webkit/Source/JavaScriptCore/interpreter/
Interpreter.cpp     [all...]
  /external/chromium/chrome/browser/resources/file_manager/js/
harness.js 83 * This is a getter rather than a normal property because the fileManager
  /external/icu4c/common/
locdispnames.cpp 352 UDisplayNameGetter *getter,
371 length=(*getter)(locale, localeBuffer, sizeof(localeBuffer), &localStatus);
  /external/v8/test/cctest/
test-accessors.cc 61 Local<Script> getter = v8_compile("var obj = new Fun(); obj.foo;"); local
62 CHECK_EQ(900, getter->Run()->Int32Value());
350 // Use the throwing property setter/getter in a loop to force
  /external/webkit/Source/WebCore/bindings/v8/
V8DOMWindowShell.cpp 552 v8::Handle<v8::Value> getter(v8::Local<v8::String> property, const v8::AccessorInfo& info) function in namespace:WebCore
576 m_document->SetAccessor(v8String(name), getter); local
  /external/chromium/chrome/browser/sync/glue/
sync_backend_host.h 358 // Getter/setter for whether we are waiting on SetPassphrase to process a
543 net::URLRequestContextGetter* getter);
sync_backend_host.cc 197 net::URLRequestContextGetter* getter) {
198 return new HttpBridgeFactory(getter);
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/oauth2/
__init__.py 245 def getter(self): function in function:setter
254 return property(getter, attr, deleter)
  /external/webkit/Source/WebCore/dom/
Document.idl 162 getter raises (DOMException);
  /libcore/luni/src/main/native/
libcore_icu_ICU.cpp 695 EnumerationGetter getter(e, &status);
696 jobject result = toStringArray16(env, &counter, &getter);
    [all...]

Completed in 970 milliseconds

<<11121314