HomeSort by relevance Sort by last modified time
    Searched full:arguments (Results 651 - 675 of 11668) sorted by null

<<21222324252627282930>>

  /external/chromium_org/third_party/WebKit/Source/bindings/scripts/unstable/
v8_interface.py 289 arguments = method['arguments']
291 # check *omitting* optional arguments at |index| and up:
292 # index 0 => argument_count 0 (no arguments)
294 for index, argument in enumerate(arguments)
296 # FIXME: this is wrong if a method has optional arguments and a variadic
299 # Includes all optional arguments (len = last index + 1)
300 overload_checks.append(overload_check_expression(method, len(arguments)))
306 arguments = method['arguments'][:argument_count
    [all...]
  /external/chromium_org/tools/gyp/test/lib/
TestGyp.py 264 return self.run(program=self.gyp, arguments=run_args, **kw)
271 arguments implemented in this layer, without having to update
446 arguments = kw.get('arguments', [])[:]
447 arguments.append(self.target_name(target))
448 arguments.append('-C')
449 arguments.append(os.environ['ANDROID_BUILD_TOP'])
450 kw['arguments'] = arguments
547 arguments = kw.get('arguments', [])[:
    [all...]
  /development/apps/launchperf/src/com/android/launchperf/
ComplexActivityLaunchPerformance.java 38 public void onCreate(Bundle arguments) {
39 super.onCreate(arguments);
EmptyActivityLaunchPerformance.java 37 public void onCreate(Bundle arguments) {
38 super.onCreate(arguments);
HelloWorldLaunchPerformance.java 37 public void onCreate(Bundle arguments) {
38 super.onCreate(arguments);
NotePadLaunchPerformance.java 37 public void onCreate(Bundle arguments) {
38 super.onCreate(arguments);
PhoneLaunchPerformance.java 37 public void onCreate(Bundle arguments) {
38 super.onCreate(arguments);
SimpleActivityLaunchPerformance.java 37 public void onCreate(Bundle arguments) {
38 super.onCreate(arguments);
  /external/android-clat/
logging.c 29 * ... - printf format arguments
43 * ... - printf format arguments
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
t043synpred.html 19 TLexer.superclass.constructor.apply(this, arguments);
29 TParser.superclass.constructor.apply(this, arguments);
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
Function.java 34 * super class processes the arguments and hands the results to
36 * class may process it's own arguments, which is faster since
37 * the arguments don't have to be added to an array, but causes
63 * Check that the number of arguments passed to this function is correct.
65 * the number of arguments for a specific function type. This method is
66 * called by the compiler for static number of arguments checking.
68 * @param argNum The number of arguments that is being passed to the function.
107 * Call the visitors for the function arguments.
WrongNumberArgsException.java 24 * An exception that is thrown if the wrong number of arguments to an exception
35 * @param argsExpected Error message that tells the number of arguments that
  /external/bison/build-aux/snippet/
arg-nonnull.h 1 /* A C macro for declaring that specific arguments must not be NULL.
18 that the values passed as arguments n, ..., m must be non-NULL pointers.
  /external/bison/darwin-lib/
unitypes.h 27 /* Attribute of a function whose result depends only on the arguments
37 /* Attribute of a function whose result depends only on the arguments
  /external/bison/lib/
unitypes.in.h 26 /* Attribute of a function whose result depends only on the arguments
36 /* Attribute of a function whose result depends only on the arguments
  /external/bison/linux-lib/
unitypes.h 27 /* Attribute of a function whose result depends only on the arguments
37 /* Attribute of a function whose result depends only on the arguments
  /external/chromium/net/base/
winsock_util.cc 14 // Prevent the compiler from optimizing away the arguments so they appear
19 // Pass the important values as function arguments so that they are available
  /external/chromium_org/chrome/browser/safe_browsing/
local_safebrowsing_test_server.cc 58 base::DictionaryValue* arguments) const {
59 arguments->SetString("data-file", data_file_.value());
  /external/chromium_org/chrome/renderer/resources/extensions/
experimental.offscreenTabs_custom_bindings.js 57 function() { return validate(arguments, keyboardEventFilter); });
60 function() { return validate(arguments, mouseEventFilter); });
schema_utils.js 5 // Routines used to validate and normalize arguments.
12 // Validate arguments.
15 throw new Error("Too many arguments.");
55 // Return true if arguments match a given signature's schema.
68 // Finds the function signature for the given arguments.
101 // Finds the correct signature for the given arguments, then validates the
102 // arguments against that signature. Returns a 'normalized' arguments list
  /external/chromium_org/chrome/test/base/
js2gtest.js 16 // Arguments from rules in chrome_tests.gypi are passed in through
18 if (arguments.length < 4) {
20 arguments[0] + ' path-to-testfile.js testfile.js output.cc test-type');
28 var jsFile = arguments[1];
35 var jsFileBase = arguments[2];
41 var outputFile = arguments[3];
47 var testType = arguments[4];
79 print('// ' + arguments.join(' '));
  /external/chromium_org/chrome_frame/cfinstall/src/stub/
frame.js 13 * Plucks properties from the passed arguments and sets them on the passed
33 * arguments. Note that this should only be called once.
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/accessibility/
JellyBeanAccessibilityInjector.java 71 public boolean performAccessibilityAction(int action, Bundle arguments) {
77 boolean actionSuccessful = sendActionToAndroidVox(action, arguments);
109 * @param arguments The action arguments, if applicable.
112 private boolean sendActionToAndroidVox(int action, Bundle arguments) {
127 if (arguments != null) {
130 final int granularity = arguments.getInt(AccessibilityNodeInfo.
135 final String element = arguments.getString(
JellyBeanBrowserAccessibilityManager.java 42 public boolean performAction(int virtualViewId, int action, Bundle arguments) {
43 return delegate.performAction(virtualViewId, action, arguments);
  /external/chromium_org/gin/modules/
console.cc 10 #include "gin/arguments.h"
22 Arguments args(info);

Completed in 1816 milliseconds

<<21222324252627282930>>