/external/chromium_org/base/test/android/javatests/src/org/chromium/base/test/util/ |
InMemorySharedPreferences.java | 17 * It keeps all state in memory, and there is no difference between apply() and commit(). 207 apply(); method 212 public void apply() { method in class:InMemorySharedPreferences.InMemoryEditor
|
/external/chromium_org/chrome/common/extensions/docs/examples/api/downloads/download_links/ |
send_links.js | 8 var links = [].slice.apply(document.getElementsByTagName('a'));
|
/external/chromium_org/native_client_sdk/src/resources/ |
background.js | 31 createWindow(makeURL.apply(null, toolchain_config));
|
/external/chromium_org/v8/test/mjsunit/harmony/ |
string-contains.js | 63 assertThrows("String.prototype.contains.apply(null, ['test'])", TypeError); 64 assertThrows("String.prototype.contains.apply(null, [null])", TypeError); 65 assertThrows("String.prototype.contains.apply(undefined, [undefined])", TypeError); 98 assertTrue(String.prototype.contains.apply(v, [v]), e.msg);
|
string-endswith.js | 52 assertThrows("String.prototype.endsWith.apply(null, ['test'])", TypeError); 53 assertThrows("String.prototype.endsWith.apply(null, [null])", TypeError); 54 assertThrows("String.prototype.endsWith.apply(undefined, [undefined])", TypeError); 88 assertTrue(String.prototype.endsWith.apply(v, [v]), e.msg);
|
string-startswith.js | 52 assertThrows("String.prototype.startsWith.apply(null, ['test'])", TypeError); 53 assertThrows("String.prototype.startsWith.apply(null, [null])", TypeError); 54 assertThrows("String.prototype.startsWith.apply(undefined, [undefined])", TypeError); 88 assertTrue(String.prototype.startsWith.apply(v, [v]), e.msg);
|
/external/clang/test/CXX/temp/temp.param/ |
p15-cxx0x.cpp | 172 template<T... Values> struct apply { }; struct in struct:std_examples::value_holder 177 value_holder<int, char, int*>::apply<12345, 'x', &n> test;
|
/external/guava/guava/src/com/google/common/base/ |
Suppliers.java | 67 return function.apply(supplier.get()); 250 public Object apply(Supplier<?> input) { method in class:Suppliers.SupplierFunction
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/ |
ImageFilterChanSat.java | 90 public Bitmap apply(Bitmap bitmap, float scaleFactor, int quality) { method in class:ImageFilterChanSat 96 Bitmap ret = super.apply(bitmap, scaleFactor, quality);
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/ |
FilterEnvironment.java | 116 filter.apply(in, out); 135 Bitmap ret = filter.apply(bitmap, mScaleFactor, mQuality);
|
/packages/apps/UnifiedEmail/src/com/android/mail/preferences/ |
VersionedPrefs.java | 114 getEditor().apply(); 233 getEditor().apply();
|
/external/chromium_org/v8/test/mjsunit/tools/ |
tickprocessor.js | 90 shell_syms.push(Array.prototype.slice.apply(arguments, [0])); 116 libc_syms.push(Array.prototype.slice.apply(arguments, [0])); 154 shell_syms.push(Array.prototype.slice.apply(arguments, [0])); 177 stdc_syms.push(Array.prototype.slice.apply(arguments, [0])); 220 shell_syms.push(Array.prototype.slice.apply(arguments, [0])); 261 exe_exe_syms.push(Array.prototype.slice.apply(arguments, [0])); 273 exe_dll_syms.push(Array.prototype.slice.apply(arguments, [0])); 284 dll_dll_syms.push(Array.prototype.slice.apply(arguments, [0])); 296 dll_exe_syms.push(Array.prototype.slice.apply(arguments, [0])); 324 symbolAdder.apply(null, syms[i]) [all...] |
/external/v8/test/mjsunit/tools/ |
tickprocessor.js | 86 shell_syms.push(Array.prototype.slice.apply(arguments, [0])); 112 libc_syms.push(Array.prototype.slice.apply(arguments, [0])); 150 shell_syms.push(Array.prototype.slice.apply(arguments, [0])); 173 stdc_syms.push(Array.prototype.slice.apply(arguments, [0])); 216 shell_syms.push(Array.prototype.slice.apply(arguments, [0])); 257 exe_exe_syms.push(Array.prototype.slice.apply(arguments, [0])); 269 exe_dll_syms.push(Array.prototype.slice.apply(arguments, [0])); 280 dll_dll_syms.push(Array.prototype.slice.apply(arguments, [0])); 292 dll_exe_syms.push(Array.prototype.slice.apply(arguments, [0])); 320 symbolAdder.apply(null, syms[i]) [all...] |
/build/tools/droiddoc/templates-ds/assets/scroller/ |
jquery.mousewheel.min.js | 12 (function(a){function d(b){var c=b||window.event,d=[].slice.call(arguments,1),e=0,f=!0,g=0,h=0;return b=a.event.fix(c),b.type="mousewheel",c.wheelDelta&&(e=c.wheelDelta/120),c.detail&&(e=-c.detail/3),h=e,c.axis!==undefined&&c.axis===c.HORIZONTAL_AXIS&&(h=0,g=-1*e),c.wheelDeltaY!==undefined&&(h=c.wheelDeltaY/120),c.wheelDeltaX!==undefined&&(g=-1*c.wheelDeltaX/120),d.unshift(b,e,g,h),(a.event.dispatch||a.event.handle).apply(this,d)}var b=["DOMMouseScroll","mousewheel"];if(a.event.fixHooks)for(var c=b.length;c;)a.event.fixHooks[b[--c]]=a.event.mouseHooks;a.event.special.mousewheel={setup:function(){if(this.addEventListener)for(var a=b.length;a;)this.addEventListener(b[--a],d,!1);else this.onmousewheel=d},teardown:function(){if(this.removeEventListener)for(var a=b.length;a;)this.removeEventListener(b[--a],d,!1);else this.onmousewheel=null}},a.fn.extend({mousewheel:function(a){return a?this.bind("mousewheel",a):this.trigger("mousewheel")},unmousewheel:function(a){return this.unbind("mousewheel",a)}})})(jQuery)
|
/external/chromium_org/chrome/browser/resources/file_manager/foreground/js/metadata/ |
function_parallel.js | 31 this.apply = this.start.bind(this); 77 this.steps_[i].apply(this, arguments);
|
/external/chromium_org/chrome/renderer/resources/extensions/ |
app_custom_bindings.js | 25 // fun.apply. Array slice can either be rewritten or similarly defined. 28 return $Function.apply(fun, this, arguments);
|
/external/chromium_org/chrome_frame/cfinstall/src/miniclosure/ |
base.js | 67 * @param {Function} fn A function to partially apply. 75 return fn.apply(selfObj, arguments);
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
CookiesTable.js | 197 return sortDirection * (getter.apply(cookie1) + "").compareTo(getter.apply(cookie2) + "") 202 return sortDirection * (getter.apply(cookie1) - getter.apply(cookie2));
|
/external/chromium_org/third_party/WebKit/Source/platform/transforms/ |
MatrixTransformOperation.h | 61 virtual void apply(TransformationMatrix& transform, const FloatSize&) const function in class:WebCore::MatrixTransformOperation
|
TranslateTransformOperation.h | 67 virtual void apply(TransformationMatrix& transform, const FloatSize& borderBoxSize) const function in class:WebCore::TranslateTransformOperation
|
/external/chromium_org/third_party/WebKit/Tools/TestResultServer/static-dashboards/ |
base.js | 44 newArgs.unshift.apply(newArgs, args); 45 return fn.apply(this, newArgs);
|
/external/chromium_org/third_party/openssl/openssl/crypto/bn/ |
bn_prime.pl | 43 * apply to all code found in this distribution, be it the RC4, RSA,
|
/external/chromium_org/third_party/skia/src/animator/ |
SkDisplayApply.h | 20 DECLARE_MEMBER_INFO(Apply); 37 void append(SkApply* apply);
|
/external/chromium_org/v8/test/mjsunit/ |
arguments-call-apply.js | 41 assertEquals(6, sum.apply(this, [1, 2, 3]), "apply");
|
/external/chromium_org/v8/test/mjsunit/compiler/ |
inline-function-apply.js | 30 // Test inlining and deoptimization of function.apply(this, arguments) 52 var r = "B" + dispatcher.func.apply(this, arguments);
|