HomeSort by relevance Sort by last modified time
    Searched refs:getter (Results 301 - 325 of 536) sorted by null

<<11121314151617181920>>

  /external/chromium_org/chrome/test/chromedriver/chrome/
devtools_http_client.h 82 URLRequestContextGetter* getter,
  /external/chromium_org/v8/test/mjsunit/
accessors-on-global-object.js 28 // Test that installing a getter on the global object instead of a
59 // Test that replacing a getter with a normal property works as
mirror-object.js 208 // a has getter but no setter.
212 assertEquals('function', mirror.property('a').getter().type());
214 assertEquals('function (){return \'a\';}', mirror.property('a').getter().source());
215 // b has setter but no getter.
219 assertEquals('undefined', mirror.property('b').getter().type());
223 // c has both getter and setter. The getter throws an exception.
227 assertEquals('function', mirror.property('c').getter().type());
229 assertEquals('function (){throw \'c\';}', mirror.property('c').getter().source());
json2.js 73 var getter_obj = { get getter() {
77 TestStringify('{"getter":123}', getter_obj);
97 // Test toJSON produced by a getter.
  /external/chromium_org/v8/test/mjsunit/regress/
regress-992.js 33 var getter = desc.get; variable
40 assertEquals(desc.get, getter);
  /external/v8/src/
property.cc 126 return accessors->getter()->IsMap() || accessors->setter()->IsMap();
  /external/v8/test/mjsunit/
accessors-on-global-object.js 28 // Test that installing a getter on the global object instead of a
59 // Test that replacing a getter with a normal property works as
  /external/v8/test/mjsunit/regress/
regress-992.js 33 var getter = desc.get; variable
40 assertEquals(desc.get, getter);
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_new_helpers.h 36 * getter and setter functions */
88 /* property getter function */
89 WPADBusPropertyAccessor getter; member in struct:wpa_dbus_property_desc
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeySourceNetworkVars.java 193 VarGetter getter = VAR_MAP.get(command.get(1)); local
194 if (getter == null) {
197 return new MonkeyCommandReturn(true, getter.get());
  /external/chromium/chrome/browser/chromeos/cros/
libcros_service_library.cc 211 net::URLRequestContextGetter* getter = Profile::GetDefaultRequestContext(); local
213 if (getter)
214 proxy_service = getter->GetURLRequestContext()->proxy_service();
  /external/chromium_org/third_party/protobuf/python/google/protobuf/internal/
python_message.py 403 def getter(self): function in function:_AddPropertiesForRepeatedField
417 getter.__module__ = None
418 getter.__doc__ = 'Getter for %s.' % proto_field_name
427 setattr(cls, property_name, property(getter, setter, doc=doc))
447 def getter(self): function in function:_AddPropertiesForNonRepeatedScalarField
451 getter.__module__ = None
452 getter.__doc__ = 'Getter for %s.' % proto_field_name
464 # Add a property to encapsulate the getter/setter
491 def getter(self): function in function:_AddPropertiesForNonRepeatedCompositeField
    [all...]
  /external/protobuf/python/google/protobuf/
reflection.py 462 def getter(self): function in function:_AddPropertiesForRepeatedField
476 getter.__module__ = None
477 getter.__doc__ = 'Getter for %s.' % proto_field_name
486 setattr(cls, property_name, property(getter, setter, doc=doc))
505 def getter(self): function in function:_AddPropertiesForNonRepeatedScalarField
507 getter.__module__ = None
508 getter.__doc__ = 'Getter for %s.' % proto_field_name
519 # Add a property to encapsulate the getter/setter
541 def getter(self): function in function:_AddPropertiesForNonRepeatedCompositeField
    [all...]
  /external/chromium/chrome/browser/net/websocket_experiment/
websocket_experiment_task.cc 37 net::URLRequestContextGetter* getter = local
42 if (!getter)
46 fetcher->set_request_context(getter);
56 net::URLRequestContextGetter* getter = local
61 if (!getter)
69 getter->GetURLRequestContext()));
  /external/chromium/chrome/browser/chromeos/login/
login_utils.cc 90 net::URLRequestContextGetter* getter = Profile::GetDefaultRequestContext(); local
91 DCHECK(getter);
92 if (getter) {
93 getter->GetURLRequestContext()->proxy_service()->ResetConfigService(
  /external/chromium/chrome/common/net/gaia/
gaia_auth_fetcher.cc 98 net::URLRequestContextGetter* getter)
100 getter_(getter),
120 net::URLRequestContextGetter* getter,
130 to_return->set_request_context(getter);
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRBaseTree.h 31 @property (retain, getter=getChildren, setter=setChildren) NSMutableArray *children;
104 @property (retain, getter=getChildren, setter=setChildren) NSMutableArray *children;
ANTLRTreeWizard.h 67 @property (retain, getter=getLabel, setter=setLabel:) NSString *label;
68 @property (assign, getter=getHasTextArg, setter=setHasTextArg:) BOOL hasTextArg;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRBaseTree.h 31 @property (retain, getter=getChildren, setter=setChildren) NSMutableArray *children;
104 @property (retain, getter=getChildren, setter=setChildren) NSMutableArray *children;
ANTLRTreeWizard.h 67 @property (retain, getter=getLabel, setter=setLabel:) NSString *label;
68 @property (assign, getter=getHasTextArg, setter=setHasTextArg:) BOOL hasTextArg;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRBaseTree.h 31 @property (retain, getter=getChildren, setter=setChildren) NSMutableArray *children;
104 @property (retain, getter=getChildren, setter=setChildren) NSMutableArray *children;
ANTLRTreeWizard.h 67 @property (retain, getter=getLabel, setter=setLabel:) NSString *label;
68 @property (assign, getter=getHasTextArg, setter=setHasTextArg:) BOOL hasTextArg;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRTreeWizard.h 72 @property (retain, getter=getLabel, setter=setLabel:) NSString *label;
73 @property (assign, getter=getHasTextArg, setter=setHasTextArg:) BOOL hasTextArg;
  /external/chromium_org/chrome/browser/chromeos/settings/
device_oauth2_token_service.cc 212 net::URLRequestContextGetter* getter,
216 url_request_context_getter_(getter),
device_oauth2_token_service_unittest.cc 38 explicit TestDeviceOAuth2TokenService(net::URLRequestContextGetter* getter,
40 : DeviceOAuth2TokenService(getter, local_state) {

Completed in 842 milliseconds

<<11121314151617181920>>