HomeSort by relevance Sort by last modified time
    Searched refs:arguments (Results 501 - 525 of 1463) sorted by null

<<21222324252627282930>>

  /external/chromium_org/chrome/renderer/resources/extensions/
storage_area.js 27 var args = $Array.slice(arguments);
app_custom_bindings.js 27 $Array.slice(arguments));
28 return $Function.apply(fun, this, arguments);
  /external/chromium_org/chrome/test/functional/tracing/
tracer.js 14 Array.prototype.slice.call(arguments, 1)
  /external/chromium_org/third_party/WebKit/Source/testing/runner/
CppBoundClass.h 123 virtual void run(const CppArgumentList& arguments, CppVariant* result)
125 (m_object->*m_method)(arguments, result);
  /external/chromium_org/third_party/flot/
jquery.flot.resize.min.js 1 (function(n,p,u){var w=n([]),s=n.resize=n.extend(n.resize,{}),o,l="setTimeout",m="resize",t=m+"-special-event",v="delay",r="throttleWindow";s[v]=250;s[r]=true;n.event.special[m]={setup:function(){if(!s[r]&&this[l]){return false}var a=n(this);w=w.add(a);n.data(this,t,{w:a.width(),h:a.height()});if(w.length===1){q()}},teardown:function(){if(!s[r]&&this[l]){return false}var a=n(this);w=w.not(a);a.removeData(t);if(!w.length){clearTimeout(o)}},add:function(b){if(!s[r]&&this[l]){return false}var c;function a(d,h,g){var f=n(this),e=n.data(this,t);e.w=h!==u?h:f.width();e.h=g!==u?g:f.height();c.apply(this,arguments)}if(n.isFunction(b)){c=b;return a}else{c=b.handler;b.handler=a}}};function q(){o=p[l](function(){w (…)
  /external/chromium_org/third_party/libjingle/source/talk/base/
basictypes.h 167 #define LIBJINGLE_DEFINE_STATIC_LOCAL(type, name, arguments) \
168 static type& name = *new type arguments
  /external/chromium_org/tools/generate_stubs/
generate_stubs.py 28 Only one argument from the varidiac arguments is used and it will be used as
70 # is considered the arguments.
91 # arg_list: The arguments used to call the stub function.
105 # arg_list: The arguments used to call the stub function without the
125 # arg_list: The arguments used to call the stub function without the
643 arguments = [re.split('[\*& ]', arg)[-1].strip() for arg in
645 arg_list = ', '.join(arguments)
649 if arg_list != '' and len(arguments) > 1 and arguments[-1] == '...':
656 'arg_list': ', '.join(arguments[0:-1])
    [all...]
  /external/chromium_org/v8/src/
safepoint-table.h 216 int arguments,
231 unsigned arguments;
  /external/chromium_org/v8/test/mjsunit/
debug-evaluate-locals.js 68 // Frame 1 (g) has normal variable a (and arguments).
77 assertEquals('arguments', name);
92 // Frame 2 (f) has normal variables a and b (and arguments).
103 assertEquals('arguments', name);
debug-scripts-request.js 48 function testArguments(dcp, arguments, success) {
49 var request = '{' + base_request + ',"arguments":' + arguments + '}'
86 var request = '{' + base_request + ',"arguments":{"ids":[' +
  /external/chromium_org/webkit/data/test_shell/sort/
sort-heap.js 4 if (arguments.length == 1) {
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
ast.ml 26 * its name, and its argument names (thus implicitly the number of arguments the
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
ast.ml 29 * its name, and its argument names (thus implicitly the number of arguments the
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
ast.ml 32 * its name, and its argument names (thus implicitly the number of arguments the
  /external/markdown/markdown/
inlinepatterns.py 123 Keyword arguments:
145 Keyword arguments:
  /external/v8/src/
safepoint-table.h 215 int arguments,
230 unsigned arguments;
  /external/v8/test/mjsunit/
debug-evaluate-locals.js 66 // Frame 1 (g) has normal variable a (and arguments).
75 assertEquals('arguments', name);
90 // Frame 2 (f) has normal variables a and b (and arguments).
101 assertEquals('arguments', name);
debug-scripts-request.js 48 function testArguments(dcp, arguments, success) {
49 var request = '{' + base_request + ',"arguments":' + arguments + '}'
84 var request = '{' + base_request + ',"arguments":{"ids":[' +
error-constructors.js 40 ReferenceError.prototype.__defineSetter__('arguments', fail);
48 assertTrue(e0.hasOwnProperty('arguments'));
49 assertTrue(e1.hasOwnProperty('arguments'));
71 desc = Object.getOwnPropertyDescriptor(e, 'arguments');
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
MediaPlayerStressTest.java 53 Bundle arguments = mRunner.getArguments(); local
54 mMediaSrc = arguments.getString("media-source");
  /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/testing/gmock/scripts/generator/cpp/
gmock_class_test.py 149 '// type has multiple template arguments. To fix it, use a\n'
  /external/chromium_org/chrome_frame/cfinstall/src/miniclosure/
base.js 66 * A simple form that supports only bound 'this', not arguments.
75 return fn.apply(selfObj, arguments);
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorConsoleAgent.cpp 165 void InspectorConsoleAgent::addMessageToConsole(MessageSource source, MessageType type, MessageLevel level, const String& message, ScriptState* state, PassRefPtr<ScriptArguments> arguments, unsigned long requestIdentifier)
172 addConsoleMessage(adoptPtr(new ConsoleMessage(!isWorkerAgent(), source, type, level, message, arguments, state, requestIdentifier)));
224 void InspectorConsoleAgent::consoleCount(ScriptState* state, PassRefPtr<ScriptArguments> arguments)
231 arguments->getFirstArgumentAsString(title);
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
SQLTransactionBackend.h 83 const Vector<SQLValue>& arguments, int permissions) OVERRIDE;

Completed in 2932 milliseconds

<<21222324252627282930>>