HomeSort by relevance Sort by last modified time
    Searched full:getter (Results 26 - 50 of 441) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/clang/test/SemaObjCXX/
reserved-keyword-methods.mm 37 #define DECLARE_PROPERTY_WITH_GETTER(name) @property (getter=name) int prop_##name;
  /external/chromium/chrome/browser/chromeos/login/
client_login_response_handler.h 26 explicit ClientLoginResponseHandler(net::URLRequestContextGetter* getter)
27 : getter_(getter) {}
issue_response_handler.h 27 explicit IssueResponseHandler(net::URLRequestContextGetter* getter)
28 : getter_(getter) {}
  /external/clang/test/Index/
complete-property-flags.m 13 // CHECK-CC1-NEXT: {TypedText getter}{Text = }{Placeholder method}
22 // CHECK-CC2: {TypedText getter}{Text = }{Placeholder method}
complete-property-getset.m 13 @property (getter = getter1, setter = setter1:) int blah;
19 @property (getter = getter4, setter = setter1:) int blarg;
  /libcore/luni/src/main/java/org/apache/harmony/luni/internal/util/
TimezoneGetter.java 42 public static void setInstance(TimezoneGetter getter) {
46 instance = getter;
  /external/webkit/Source/JavaScriptCore/runtime/
PropertyDescriptor.h 47 JSValue getter() const;
51 void setAccessorDescriptor(JSValue getter, JSValue setter, unsigned attributes);
71 // May be a getter/setter
JSObject.cpp 99 throwError(exec, createTypeError(exec, "setting a property that has only a getter"));
325 putDirectInternal(globalData, propertyName, getterSetter, attributes | Getter, true, slot);
329 // if we override an existing non-getter or non-setter.
354 // if we override an existing non-getter or non-setter.
371 JSObject* functionObject = asGetterSetter(value)->getter();
562 if (JSObject* getterFunction = asGetterSetter(location->get())->getter()) {
627 if (oldDescriptor.getter()) {
628 attributes |= Getter;
629 accessor->setGetter(exec->globalData(), asObject(oldDescriptor.getter()));
643 target->putWithAttributes(exec, propertyName, newValue, attributes & ~(Getter | Setter))
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_new_helpers.h 41 * getter and setter functions */
95 /* property getter function */
96 WPADBusPropertyAccessor getter; member in struct:wpa_dbus_property_desc
  /external/chromium/chrome/browser/ui/cocoa/status_icons/
status_icon_mac.h 35 // Getter for item_ that allows lazy initialization.
  /external/clang/test/SemaObjC/
custom-atomic-property.m 8 -(Foo*)myProp {return 0;} // expected-warning {{atomic by default property 'myProp' has a user defined getter (property should be marked 'atomic' if this is intended)}}
property-category-3.m 27 // Don't issue warning on unimplemented setter/getter
  /external/clang/tools/libclang/
CIndexInclusionStack.cpp 38 const SrcMgr::SLocEntry &(SourceManager::*Getter)(unsigned, bool*) const;
40 Getter = &SourceManager::getLoadedSLocEntry;
43 Getter = &SourceManager::getLocalSLocEntry;
47 const SrcMgr::SLocEntry &SL = (SM.*Getter)(i, &Invalid);
  /external/v8/src/
regexp.js 421 // Getter and setter for the input.
430 %DefineAccessor($RegExp, 'input', GETTER, RegExpGetInput, DONT_DELETE);
432 %DefineAccessor($RegExp, '$_', GETTER, RegExpGetInput, DONT_ENUM | DONT_DELETE);
434 %DefineAccessor($RegExp, '$input', GETTER, RegExpGetInput, DONT_ENUM | DONT_DELETE);
444 // Getter and setter for multiline.
449 %DefineAccessor($RegExp, 'multiline', GETTER, RegExpGetMultiline, DONT_DELETE);
451 %DefineAccessor($RegExp, '$*', GETTER, RegExpGetMultiline, DONT_ENUM | DONT_DELETE);
459 %DefineAccessor($RegExp, 'lastMatch', GETTER, RegExpGetLastMatch, DONT_DELETE);
461 %DefineAccessor($RegExp, '$&', GETTER, RegExpGetLastMatch, DONT_ENUM | DONT_DELETE);
463 %DefineAccessor($RegExp, 'lastParen', GETTER, RegExpGetLastParen, DONT_DELETE)
    [all...]
  /external/v8/test/mjsunit/
indexed-accessors.js 64 // Testing that a defined getter doesn't get lost due to inline caching.
84 // Using a setter where only a getter is defined throws an exception.
89 // Using a getter where only a setter is defined returns undefined.
98 // Complex case of using an undefined getter.
mirror-object.js 195 // a has getter but no setter.
199 assertEquals('function', mirror.property('a').getter().type());
201 assertEquals('function (){return \'a\';}', mirror.property('a').getter().source());
202 // b has setter but no getter.
206 assertEquals('undefined', mirror.property('b').getter().type());
210 // c has both getter and setter. The getter throws an exception.
214 assertEquals('function', mirror.property('c').getter().type());
216 assertEquals('function (){throw \'c\';}', mirror.property('c').getter().source());
object-get-own-property-names.js 72 // Check that getter properties are returned.
74 obj.__defineGetter__("getter", function() {});
78 assertEquals("getter", propertyNames[0]);
  /external/v8/test/mjsunit/regress/
regress-798.js 30 // Add property a with getter/setter.
48 // Add property b with getter/setter.
69 // Add property c with getter/setter.
90 // Check that the stack for an exception in a getter and setter produce the
regress-1240.js 29 // non-configurable getter with a new getter. In addition, we should not
regress-992.js 33 var getter = desc.get; variable
40 assertEquals(desc.get, getter);
  /external/chromium/chrome/browser/
idle_mac.mm 18 getter=isScreensaverRunning) BOOL screensaverRunning;
19 @property (readonly, nonatomic, getter=isScreenLocked) BOOL screenLocked;
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/GetSet/
getset-003.js 22 * SUMMARY: Testing obj.prop getter/setter
28 var summary = 'Testing obj.prop getter/setter';
43 // SECTION1: define getter/setter directly on an object (not its prototype)
48 obj.name getter = function() {this.nameGETS++; return this._name;}
74 // SECTION2: define getter/setter in Object.prototype
78 Object.prototype.name getter = function() {this.nameGETS++; return this._name;}
105 // SECTION 3: define getter/setter in prototype of user-defined constructor
112 TestObject.prototype.name getter = function() {this.nameGETS++; return this._name;}
  /external/webkit/Source/WebCore/storage/
SQLResultSet.idl 40 getter raises(DOMException);
44 getter raises(DOMException);
  /frameworks/base/core/java/android/animation/
PropertyValuesHolder.java 58 * The getter function, if needed. ObjectAnimator hands off this functionality to
62 * The getter is only derived and used if one of the values is null.
67 * The type of values supplied. This information is used both in deriving the setter/getter
82 // We try several different types when searching for appropriate setter/getter functions.
83 // The caller may have supplied values in a type that does not match the setter/getter
86 // of primitive types (Float vs. float). But most likely, the setter/getter functions
97 // is used to speed up property/setter/getter lookups for a given class/property
235 * and an initial value will be derived, if possible, by calling a getter function
239 * {@link ObjectAnimator}, and with a getter function
297 * and an initial value will be derived, if possible, by calling a getter functio
    [all...]
  /external/chromium/chrome/browser/net/
preconnect.cc 40 net::URLRequestContextGetter* getter = Profile::GetDefaultRequestContext(); local
41 if (!getter)
52 net::URLRequestContext* context = getter->GetURLRequestContext();

Completed in 1127 milliseconds

12 3 4 5 6 7 8 91011>>