Searched defs:getter (Results 1 - 25 of 109) sorted by relevance

12345

/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-992.js33 var getter = desc.get; variable
40 assertEquals(desc.get, getter);
H A Dregress-874.js30 var getter = function(){ return 42; }; function
32 x.__defineGetter__(0, getter);
36 assertEquals (getter, Object.getOwnPropertyDescriptor(x, 0).get);
H A Dregress-crbug-137689.js30 function getter() { return 10; } function
37 Object.defineProperty(o, "foo", { get: getter, configurable: true });
38 Object.defineProperty(o2, "foo", { get: getter, configurable: true });
H A Dregress-2163.js33 function getter() { return 111; } function
39 // obj1 and obj2 share the getter accessor.
41 dp(obj1, "alpha", { get: getter, set: setter });
43 dp(obj2, "alpha", { get: getter });
49 // obj1, obj2, and obj3 share the getter accessor.
51 dp(obj1, "alpha", { get: getter, set: setter });
53 dp(obj2, "alpha", { get: getter });
57 dp(obj3, "alpha", { get: getter });
60 // obj1 and obj2 share the getter and setter accessor.
62 dp(obj1, "alpha", { get: getter, se
[all...]
/external/v8/test/mjsunit/regress/
H A Dregress-992.js33 var getter = desc.get; variable
40 assertEquals(desc.get, getter);
H A Dregress-874.js30 var getter = function(){ return 42; }; function
32 x.__defineGetter__(0, getter);
36 assertEquals (getter, Object.getOwnPropertyDescriptor(x, 0).get);
/external/chromium_org/chrome/test/chromedriver/net/
H A Dsync_websocket_factory.cc22 URLRequestContextGetter* getter) {
23 return base::Bind(&CreateSyncWebSocket, make_scoped_refptr(getter));
21 CreateSyncWebSocketFactory( URLRequestContextGetter* getter) argument
H A Dnet_util.cc27 URLRequestContextGetter* getter,
29 : url_(url), getter_(getter), response_(response), event_(false, false) {}
67 URLRequestContextGetter* getter,
69 return SyncUrlFetcher(GURL(url), getter, response).Fetch();
26 SyncUrlFetcher(const GURL& url, URLRequestContextGetter* getter, std::string* response) argument
66 FetchUrl(const std::string& url, URLRequestContextGetter* getter, std::string* response) argument
/external/chromium_org/v8/test/webkit/
H A Dstrict-throw-type-error.js26 function getter(object, name) function
38 var functionCaller1 = getter(strictArgumentsFunction1, "caller");
39 var functionArguments1 = getter(strictArgumentsFunction1, "arguments");
40 var argumentsCaller1 = getter(strictArguments1, "caller");
41 var argumentsCallee1 = getter(strictArguments1, "callee");
42 var boundCaller1 = getter(boundFunction1, "caller");
43 var boundArguments1 = getter(boundFunction1, "arguments");
52 var functionCaller2 = getter(strictArgumentsFunction2, "caller");
53 var functionArguments2 = getter(strictArgumentsFunction2, "arguments");
54 var argumentsCaller2 = getter(strictArguments
[all...]
H A Ddfg-inline-arguments-use-from-all-the-places-broken.js33 return [foo.arguments, bar.arguments, getter.arguments, fuzz.arguments];
36 function getter() { function
37 return [foo.arguments, bar.arguments, getter.arguments].concat(fuzz(42, 56));
41 o.__defineGetter__("f", getter);
H A Ddfg-inline-arguments-use-from-all-the-places.js33 return [foo.arguments, bar.arguments, getter.arguments, fuzz.arguments];
36 function getter() { function
37 return [foo.arguments, bar.arguments, getter.arguments].concat(fuzz(42, 56));
41 o.__defineGetter__("f", getter);
/external/chromium_org/v8/test/mjsunit/
H A Daccessor-map-sharing.js34 function getter() { return 111; } function
40 // Two objects with the same getter.
42 dp(obj1, "alpha", { get: getter });
44 dp(obj2, "alpha", { get: getter });
47 // Two objects with the same getter, oldskool.
49 obj1.__defineGetter__("bravo", getter);
50 assertEquals(getter, obj1.__lookupGetter__("bravo"));
52 obj2.__defineGetter__("bravo", getter);
53 assertEquals(getter, obj2.__lookupGetter__("bravo"));
72 // Two objects with the same getter an
[all...]
/external/chromium/base/nix/
H A Dxdg_util_unittest.cc36 MockEnvironment getter; local
37 EXPECT_CALL(getter, GetVar(_, _)).WillRepeatedly(Return(false));
38 EXPECT_CALL(getter, GetVar(StrEq("DESKTOP_SESSION"), _))
42 GetDesktopEnvironment(&getter));
46 MockEnvironment getter; local
47 EXPECT_CALL(getter, GetVar(_, _)).WillRepeatedly(Return(false));
48 EXPECT_CALL(getter, GetVar(StrEq("DESKTOP_SESSION"), _))
52 GetDesktopEnvironment(&getter));
56 MockEnvironment getter; local
57 EXPECT_CALL(getter, GetVa
66 MockEnvironment getter; local
[all...]
/external/chromium/chrome/browser/chromeos/login/
H A Dissue_response_handler.h27 explicit IssueResponseHandler(net::URLRequestContextGetter* getter) argument
28 : getter_(getter) {}
H A Dclient_login_response_handler.h26 explicit ClientLoginResponseHandler(net::URLRequestContextGetter* getter) argument
27 : getter_(getter) {}
/external/chromium_org/base/nix/
H A Dxdg_util_unittest.cc36 MockEnvironment getter; local
37 EXPECT_CALL(getter, GetVar(_, _)).WillRepeatedly(Return(false));
38 EXPECT_CALL(getter, GetVar(StrEq("DESKTOP_SESSION"), _))
42 GetDesktopEnvironment(&getter));
46 MockEnvironment getter; local
47 EXPECT_CALL(getter, GetVar(_, _)).WillRepeatedly(Return(false));
48 EXPECT_CALL(getter, GetVar(StrEq("DESKTOP_SESSION"), _))
52 GetDesktopEnvironment(&getter));
56 MockEnvironment getter; local
57 EXPECT_CALL(getter, GetVa
66 MockEnvironment getter; local
[all...]
/external/chromium_org/v8/test/webkit/fast/js/
H A DObject-defineProperty.js48 shouldBe("Object.getOwnPropertyDescriptor(Object.defineProperty([1,2,3], '1', {get:getter, configurable: true}), '1').get", "getter");
49 shouldThrow("Object.defineProperty([1,2,3], '1', {get:getter, configurable: true})[1]", "'called getter'");
78 function getter(){ throw "called getter"; } function
91 shouldThrow("Object.defineProperty({}, 'foo', {get: getter}).foo", "'called getter'");
92 shouldThrow("Object.defineProperty(Object.defineProperty({}, 'foo', {get: getter}), 'foo', {get: getter1})");
93 shouldThrow("Object.defineProperty(Object.defineProperty({}, 'foo', {get: getter}), 'fo
[all...]
/external/chromium/chrome/browser/net/
H A Dpreconnect.cc40 net::URLRequestContextGetter* getter = Profile::GetDefaultRequestContext(); local
41 if (!getter)
52 net::URLRequestContext* context = getter->GetURLRequestContext();
/external/chromium_org/chrome/browser/net/
H A Dpreconnect.cc29 net::URLRequestContextGetter* getter) {
35 motivation, count, make_scoped_refptr(getter)));
45 net::URLRequestContextGetter* getter) {
50 if (!getter)
56 net::URLRequestContext* context = getter->GetURLRequestContext();
24 PreconnectOnUIThread( const GURL& url, const GURL& first_party_for_cookies, UrlInfo::ResolutionMotivation motivation, int count, net::URLRequestContextGetter* getter) argument
40 PreconnectOnIOThread( const GURL& url, const GURL& first_party_for_cookies, UrlInfo::ResolutionMotivation motivation, int count, net::URLRequestContextGetter* getter) argument
/external/chromium_org/content/browser/
H A Dresolve_proxy_msg_helper.cc18 net::URLRequestContextGetter* getter)
19 : context_getter_(getter),
17 ResolveProxyMsgHelper( net::URLRequestContextGetter* getter) argument
/external/chromium/chrome/browser/remoting/
H A Ddirectory_add_request.cc22 DirectoryAddRequest::DirectoryAddRequest(net::URLRequestContextGetter* getter) argument
23 : getter_(getter) {
/external/chromium_org/chrome/browser/net/gaia/
H A Dgaia_oauth_fetcher_unittest.cc59 net::URLRequestContextGetter* getter,
62 consumer, getter, service_scope) {}
58 MockGaiaOAuthFetcher(GaiaOAuthConsumer* consumer, net::URLRequestContextGetter* getter, const std::string& service_scope) argument
/external/chromium_org/chrome/browser/signin/
H A Doauth2_token_service_unittest.cc49 explicit TestOAuth2TokenService(net::TestURLRequestContextGetter* getter) argument
50 : request_context_getter_(getter) {
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
H A DV8DOMConfiguration.h48 v8::AccessorGetterCallback getter; member in struct:WebCore::V8DOMConfiguration::BatchedAttribute
64 attribute.getter,
74 v8::AccessorGetterCallback getter = attribute.getter; local
78 getter = attribute.getterForMainWorld;
83 getter, local
/external/javassist/src/main/javassist/
H A DCtNewMethod.java213 * 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

Completed in 615 milliseconds

12345