/external/chromium_org/v8/test/webkit/ |
H A D | strict-throw-type-error.js | 26 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...] |
/external/chromium_org/v8/test/mjsunit/regress/ |
H A D | regress-crbug-352586.js | 7 function getter() { function 14 a.__defineGetter__('message', getter);
|
H A D | regress-2163.js | 33 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...] |
H A D | regress-874.js | 30 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 D | sync_websocket_factory.cc | 22 URLRequestContextGetter* getter) { 23 return base::Bind(&CreateSyncWebSocket, make_scoped_refptr(getter)); 21 CreateSyncWebSocketFactory( URLRequestContextGetter* getter) argument
|
/external/chromium_org/base/nix/ |
H A D | xdg_util_unittest.cc | 36 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/third_party/WebKit/Source/core/css/ |
H A D | StyleSheetList.idl | 27 getter StyleSheet item(unsigned long index); 28 [NotEnumerable] getter CSSStyleSheet (DOMString name);
|
H A D | CSSRuleList.idl | 32 getter CSSRule item(unsigned long index);
|
H A D | CSSValueList.idl | 29 [ImplementedAs=itemWithBoundsCheck] getter CSSValue item(unsigned long index);
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
H A D | HTMLFormControlsCollection.idl | 26 [ImplementedAs=item] getter Node (unsigned long index); 27 [ImplementedAs=namedGetter] getter (RadioNodeList or Element) namedItem(DOMString name); // shadows inherited namedItem()
|
H A D | HTMLCollection.idl | 28 getter Element item([Default=Undefined] optional unsigned long index); 29 getter Element namedItem(DOMString name);
|
H A D | RadioNodeList.idl | 30 [ImplementedAs=item] getter Node (unsigned long index);
|
/external/chromium_org/third_party/skia/src/gpu/gl/iOS/ |
H A D | GrGLCreateNativeInterface_iOS.cpp | 49 const GLProcGetter* getter = (const GLProcGetter*) ctx; local 50 return getter->getProc(name); 54 GLProcGetter getter; local 55 return GrGLAssembleGLESInterface(&getter, ios_get_gl_proc);
|
/external/chromium_org/third_party/skia/src/gpu/gl/mac/ |
H A D | GrGLCreateNativeInterface_mac.cpp | 51 const GLProcGetter* getter = (const GLProcGetter*) ctx; local 52 return getter->getProc(name); 56 GLProcGetter getter; local 57 return GrGLAssembleGLInterface(&getter, mac_get_gl_proc);
|
/external/skia/src/gpu/gl/mac/ |
H A D | GrGLCreateNativeInterface_mac.cpp | 51 const GLProcGetter* getter = (const GLProcGetter*) ctx; local 52 return getter->getProc(name); 56 GLProcGetter getter; local 57 return GrGLAssembleGLInterface(&getter, mac_get_gl_proc);
|
/external/chromium_org/third_party/cython/src/Cython/Tempita/ |
H A D | _looper.py | 127 def first_group(self, getter=None): 130 where groups mean that some attribute has changed. The getter 136 return self._compare_group(self.item, self.previous, getter) 138 def last_group(self, getter=None): 141 where groups mean that some attribute has changed. The getter 147 return self._compare_group(self.item, self.__next__, getter) 149 def _compare_group(self, item, other, getter): 150 if getter is None: 152 elif (isinstance(getter, basestring_) 153 and getter [all...] |
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
H A D | ClientRectList.idl | 31 getter ClientRect item(unsigned long index);
|
H A D | DOMSettableTokenList.idl | 26 [TreatReturnedNullStringAs=Null, ImplementedAs=item] getter DOMString (unsigned long index);
|
H A D | NodeList.idl | 26 getter Node item(unsigned long index);
|
H A D | TouchList.idl | 31 getter Touch item(unsigned long index);
|
/external/chromium_org/third_party/WebKit/Source/core/fileapi/ |
H A D | FileList.idl | 31 getter File item(unsigned long index);
|
/external/chromium_org/third_party/WebKit/Source/core/html/track/ |
H A D | TextTrackCueList.idl | 30 getter TextTrackCue item(unsigned long index);
|
/external/chromium_org/third_party/WebKit/Source/core/testing/ |
H A D | LayerRectList.idl | 35 getter LayerRect item(unsigned long index);
|
/external/chromium_org/third_party/WebKit/Source/modules/gamepad/ |
H A D | GamepadList.idl | 31 getter Gamepad item([Default=Undefined] optional unsigned long index);
|
/external/chromium_org/third_party/WebKit/Source/modules/mediasource/ |
H A D | SourceBufferList.idl | 37 getter SourceBuffer item(unsigned long index);
|