/external/chromium_org/v8/test/mjsunit/ |
debug-handle.js | 46 function evaluateRequest(exec_state, arguments) { 53 // Generate request with the supplied arguments. 55 if (arguments) { 56 request = '{' + base_request + ',"arguments":' + arguments + '}'; 69 function lookupRequest(exec_state, arguments, success) { 76 // Generate request with the supplied arguments. 78 if (arguments) { 79 request = '{' + base_request + ',"arguments":' + arguments + '}' [all...] |
/external/v8/test/mjsunit/ |
debug-handle.js | 46 function evaluateRequest(exec_state, arguments) { 53 // Generate request with the supplied arguments. 55 if (arguments) { 56 request = '{' + base_request + ',"arguments":' + arguments + '}'; 69 function lookupRequest(exec_state, arguments, success) { 76 // Generate request with the supplied arguments. 78 if (arguments) { 79 request = '{' + base_request + ',"arguments":' + arguments + '}' [all...] |
/external/chromium_org/third_party/WebKit/Source/bindings/scripts/unstable/ |
idl_definitions_builder.py | 186 arguments = [] 191 if child_class == 'Arguments': 192 arguments = arguments_node_to_arguments(child) 200 return IdlOperation(name=name, idl_type=return_type, extended_attributes=extended_attributes, is_static=is_static, arguments=arguments, specials=specials) 204 # [Constructor] and [CustomConstructor] without arguments (the bare form) 205 # have None instead of an arguments node, but have the same meaning as using 210 arguments = [] 213 arguments.append(argument_node_to_idl_argument(argument_node)) 214 return arguments [all...] |
/external/chromium_org/chrome/renderer/resources/extensions/ |
runtime_custom_bindings.js | 124 // Align missing (optional) function arguments with the arguments that 132 if (typeof(arguments[nextArg]) == 'string') 133 targetId = arguments[nextArg++]; 137 if (typeof(arguments[nextArg]) == 'object') 138 connectInfo = arguments[nextArg++]; 140 if (nextArg != arguments.length) 141 throw new Error('Invalid arguments to connect.'); 148 throw new Error('Invalid arguments to connectNative.');
|
permissions_custom_bindings.js | 34 if (arguments.length < 1) 35 return arguments; 37 var args = arguments[0].permissions; 39 return arguments; 48 arguments[0].permissions[i] = keys[0] + '|' + 53 return arguments;
|
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
|
/frameworks/base/test-runner/src/android/test/ |
InstrumentationTestRunner.java | 80 * with no optional arguments, to run all tests (except performance tests). 156 * in addition to the other arguments. 302 public void onCreate(Bundle arguments) { 303 super.onCreate(arguments); 304 mArguments = arguments; 317 if (arguments != null) { 319 testClassesArg = arguments.getString(ARGUMENT_TEST_CLASS); 320 mDebug = getBooleanArgument(arguments, "debug"); 321 mJustCount = getBooleanArgument(arguments, "count"); 322 mSuiteAssignmentMode = getBooleanArgument(arguments, "suiteAssignment") [all...] |
InstrumentationCoreTestRunner.java | 64 public void onCreate(Bundle arguments) { 76 if (arguments != null) { 77 String classArg = arguments.getString(ARGUMENT_TEST_CLASS); 81 super.onCreate(arguments);
|
/external/chromium_org/sandbox/win/tests/common/ |
controller.cc | 213 base::string16 arguments(L"\""); 214 arguments += prog_name; 215 arguments += L"\" -child"; 216 arguments += no_sandbox_ ? L"-no-sandbox " : L" "; 217 arguments += command; 221 if (!::CreateProcessW(prog_name, &arguments[0], NULL, NULL, FALSE, 0, 227 result = broker_->SpawnTarget(prog_name, arguments.c_str(), policy_, 279 // We expect the arguments to be: 283 // argv[4...] = command arguments.
|
/external/chromium_org/v8/test/webkit/ |
named-function-expression.js | 65 (function closure() { return closure == arguments.callee && !this.closure; })(), 66 "(function closure() { return closure == arguments.callee && !this.closure; })()" 71 (function closure() { closure = 1; return closure == arguments.callee && !this.closure; })(), 72 "(function closure() { closure = 1; return closure == arguments.callee && !this.closure; })()" 89 (function closure() { function closure() { }; return closure != arguments.callee && !this.closure; })(), 90 "(function closure() { function closure() { }; return closure != arguments.callee && !this.closure; })()" 125 (function closure() { eval("function closure() { }"); return closure != arguments.callee && !this.closure; })(), 126 "(function closure() { eval(\"function closure() { }\"); return closure != arguments.callee && !this.closure; })()" 137 (function closure() { eval("var closure"); delete closure; return closure == arguments.callee && !this.closure; })(), 138 "(function closure() { eval(\"var closure\"); delete closure; return closure == arguments.callee && !this.closure; })() [all...] |
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/ |
BitSet.js | 240 * If no arguments given, sets all of the bits in this BitSet to false. 245 if (arguments.length===0) { 423 * If no arguments are passed sets all bits to the complement of their 426 * current value. If two arguments are passed sets each bit from the 434 if (arguments.length===0) { 439 if (arguments.length===1) { 441 maxBit = arguments[0]; 443 minBit = arguments[0]; 444 maxBit = arguments[1]; 620 * <>If two arguments are passed, the first will be used as a custo [all...] |
/external/chromium_org/chrome/browser/ |
jumplist_win.h | 42 // * arguments (std::wstring) 43 // The arguments for the application. 61 const std::wstring& arguments() const { return arguments_; } function in class:ShellLinkItem 67 void SetArguments(const std::wstring& arguments) { 68 arguments_ = arguments;
|
/external/chromium_org/chrome/renderer/extensions/ |
messaging_bindings.cc | 105 // Arguments are (int32 port_id, string message). 126 // Arguments are (int32 port_id, boolean notify_browser). 148 // Arguments are (int32 port_id). 160 // Arguments are (int32 port_id). 291 v8::Handle<v8::Value> arguments[] = { local 315 arraysize(arguments), arguments); 372 std::vector<v8::Handle<v8::Value> > arguments; local 373 arguments.push_back(v8::String::NewFromUtf8(isolate, 377 arguments.push_back(port_id_handle) 405 std::vector<v8::Handle<v8::Value> > arguments; local [all...] |
/external/chromium_org/chrome/tools/profile_reset/ |
jtl_parser.cc | 47 // the: operation name, the optional arguments, and the separator that follows. 125 std::string arguments, separator; local 129 &arguments, 136 re2::StringPiece arguments_piece(arguments);
|
/external/chromium_org/v8/src/ |
d8.js | 531 if (this.arguments) { 532 json += ',"arguments":'; 533 // Encode the arguments part. 534 if (this.arguments.toJSONProtocol) { 535 json += this.arguments.toJSONProtocol(); 537 json += SimpleObjectToJSON_(this.arguments); 561 request.arguments = {}; 562 request.arguments.handles = [ lookup_handle ]; 567 request.arguments = {}; 568 request.arguments.expression = expression [all...] |
lithium-codegen.cc | 128 va_list arguments; local 129 va_start(arguments, format); 130 builder.AddFormattedList(format, arguments); 131 va_end(arguments);
|
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/ |
SQLStatementBackend.cpp | 75 const String& statement, const Vector<SQLValue>& arguments, int permissions) 77 return adoptRef(new SQLStatementBackend(frontend, statement, arguments, permissions)); 81 const String& statement, const Vector<SQLValue>& arguments, int permissions) 84 , m_arguments(arguments)
|
SQLTransactionBackendSync.h | 56 PassRefPtr<SQLResultSet> executeSQL(const String& sqlStatement, const Vector<SQLValue>& arguments, ExceptionState&);
|
/external/easymock/src/org/easymock/internal/ |
ExpectedInvocation.java | 96 private boolean matches(Object[] arguments) {
97 if (arguments.length != matchers.size()) {
100 for (int i = 0; i < arguments.length; i++) {
101 if (!matchers.get(i).matches(arguments[i])) {
|
/external/javassist/src/main/javassist/util/ |
HotSwapper.java | 112 Map arguments = connector.defaultArguments(); local 113 ((Connector.Argument)arguments.get("hostname")).setValue(HOST_NAME); 114 ((Connector.Argument)arguments.get("port")).setValue(port); 115 jvm = connector.attach(arguments);
|
/external/objenesis/tck-android/src/org/objenesis/tck/android/ |
TckInstrumentation.java | 36 public void onCreate(Bundle arguments) {
|
/frameworks/testing/uiautomator/library/core-src/com/android/uiautomator/core/ |
Tracer.java | 166 private void doTrace(Object[] arguments) { 176 log(String.format("%s (%s)", caller, join(", ", arguments))); 196 * arguments and where in the user's code the method is called from. If a 201 * Special note about array arguments. You can safely pass arrays of reference types 207 * @param arguments arguments of the method being traced. 209 public static void trace(Object... arguments) { 210 Tracer.getInstance().doTrace(arguments);
|
/cts/tools/vm-tests-tf/src/util/build/ |
JarBuildStep.java | 59 String[] arguments = new String[] { local 63 boolean success = main.run(arguments);
|
/external/chromium_org/chrome/browser/resources/file_manager/foreground/js/metadata/ |
function_parallel.js | 68 'with ' + arguments.length + ' argument(s)'); 70 for (var j = 0; j < arguments.length; j++) { 71 this.logger.vlog(arguments[j]); 77 this.steps_[i].apply(this, arguments);
|