/external/chromium_org/build/android/pylib/ |
chrome_test_server_spawner.py | 103 def __init__(self, ready_event, arguments, adb, tool, build_type): 108 arguments: dictionary of arguments to run the test server. 118 self.arguments = arguments 123 self.host_port = self.arguments['port'] 181 # The following arguments must exist. 182 type_cmd = _GetServerTypeCommandLine(self.arguments['server-type']) 191 self.command_line.append('--host=%s' % self.arguments['host']) 192 data_dir = self.arguments['data-dir'] or 'chrome/test/data [all...] |
/external/chromium_org/third_party/android_platform/development/scripts/ |
stack | 113 options, arguments = getopt.getopt(sys.argv[1:], "", 142 if len(arguments) > 1: 145 if not arguments or arguments[0] == "-": 149 print "Searching for native crashes in %s" % arguments[0] 150 f = open(arguments[0], "r")
|
/external/emma/core/java12/com/vladium/util/exception/ |
AbstractException.java | 45 * All constructors taking an 'arguments' parameter supply parameters to the error 118 * @param arguments message format parameters [can be null or empty] 122 public AbstractException (final String message, final Object [] arguments) 126 m_arguments = arguments == null ? null : (Object []) arguments.clone (); 158 * @param arguments message format parameters [can be null or empty] 163 public AbstractException (final String message, final Object [] arguments, final Throwable cause) 167 m_arguments = arguments == null ? null : (Object []) arguments.clone ();
|
AbstractRuntimeException.java | 45 * All constructors taking an 'arguments' parameter supply parameters to the error 118 * @param arguments message format parameters [can be null or empty] 122 public AbstractRuntimeException (final String message, final Object [] arguments) 126 m_arguments = arguments == null ? null : (Object []) arguments.clone (); 158 * @param arguments message format parameters [can be null or empty] 163 public AbstractRuntimeException (final String message, final Object [] arguments, final Throwable cause) 167 m_arguments = arguments == null ? null : (Object []) arguments.clone ();
|
/external/v8/test/mjsunit/ |
array-slice.js | 50 // Check various forms of arguments omission. 89 // More than 2 arguments: 118 // performing ToInteger on arguments. 222 // Check slicing on arguments object. 225 assertEquals(expected, Array.prototype.slice.call(arguments, 1)); 235 // Check slicing on arguments object when missing arguments get assigined. 238 assertEquals(1, arguments.length); 241 assertEquals(1, arguments.length); // arguments length is the same [all...] |
/external/bison/djgpp/ |
subpipe.c | 56 static char **arguments; variable 139 arguments = xmalloc(argc * sizeof(arguments[0])); 142 arguments[argc] = xmalloc((strlen(argv[argc]) + 1) * sizeof(arguments[0][0])); 143 strcpy(arguments[argc], argv[argc]); 145 arguments[argc] = NULL; 187 program = strrchr(arguments[0], '/'); 191 program = arguments[0]; 228 status = spawnvp(P_WAIT, program, arguments); [all...] |
/external/easymock/src/org/easymock/internal/ |
Invocation.java | 37 private final Object[] arguments;
field in class:Invocation 45 this.arguments = expandVarArgs(method.isVarArgs(), args);
85 return arguments;
96 && this.equalArguments(other.arguments);
104 private boolean equalArguments(Object[] arguments) {
105 if (this.arguments.length != arguments.length) {
108 for (int i = 0; i < this.arguments.length; i++) {
109 Object myArgument = this.arguments[i];
110 Object otherArgument = arguments[i]; [all...] |
/external/chromium/chrome/common/extensions/docs/examples/extensions/irc/servlet/ |
util.js | 11 return func.apply(obj, arguments);
|
/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/common/extensions/docs/examples/extensions/irc/servlet/ |
util.js | 11 return func.apply(obj, arguments);
|
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/accessibility/ |
JellyBeanBrowserAccessibilityManager.java | 43 public boolean performAction(int virtualViewId, int action, Bundle arguments) { 44 return delegate.performAction(virtualViewId, action, arguments);
|
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/ |
SQLStatementBackend.h | 48 const String& sqlStatement, const Vector<SQLValue>& arguments, int permissions); 65 const Vector<SQLValue>& arguments, int permissions);
|
/external/chromium_org/webkit/data/test_shell/sort/ |
sort-bubble.js | 4 if (arguments.length == 1) {
|
sort-insertion.js | 4 if (arguments.length == 1 || x == undefined) {
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/ |
ChangeLayoutContribution.java | 28 String comment, Map arguments, int flags) throws IllegalArgumentException { 29 return new ChangeLayoutRefactoring.Descriptor(project, description, comment, arguments);
|
ChangeViewContribution.java | 28 String comment, Map arguments, int flags) throws IllegalArgumentException { 29 return new ChangeViewRefactoring.Descriptor(project, description, comment, arguments);
|
ExtractIncludeContribution.java | 28 String comment, Map arguments, int flags) throws IllegalArgumentException { 29 return new ExtractIncludeRefactoring.Descriptor(project, description, comment, arguments);
|
ExtractStyleContribution.java | 28 String comment, Map arguments, int flags) throws IllegalArgumentException { 29 return new ExtractStyleRefactoring.Descriptor(project, description, comment, arguments);
|
UnwrapContribution.java | 28 String comment, Map arguments, int flags) throws IllegalArgumentException { 29 return new UnwrapRefactoring.Descriptor(project, description, comment, arguments);
|
WrapInContribution.java | 28 String comment, Map arguments, int flags) throws IllegalArgumentException { 29 return new WrapInRefactoring.Descriptor(project, description, comment, arguments);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/ |
ExtractStringContribution.java | 39 Map arguments, 42 return new ExtractStringDescriptor(project, description, comment, arguments);
|
/external/chromium_org/chrome/third_party/mock4js/ |
mock4js.js | 53 for(var i=0; i<arguments.length; i++) {
54 constraints[i] = Mock4JS._convertToConstraint(arguments[i]);
60 for(var i=0; i<arguments.length; i++) {
61 constraints[i] = Mock4JS._convertToConstraint(arguments[i]);
341 this._actionSequence.addAll.apply(this._actionSequence, arguments);
383 this._stubInvocation.will.apply(this._stubInvocation, arguments);
451 for(var i=0; i<arguments.length; i++) {
452 if(typeof arguments[i] != 'object' && arguments[i].invoke === undefined) {
455 this._actionSequence.push(arguments[i]); [all...] |
/external/chromium_org/v8/test/webkit/ |
dfg-inline-arguments-use-from-all-the-places.js | 25 "This tests that inlining preserves basic function.arguments functionality when said functionality is used from inside and outside getters and from inlined code, all at once." 29 return [foo.arguments, bar.arguments].concat(o.f); 33 return [foo.arguments, bar.arguments, getter.arguments, fuzz.arguments]; 37 return [foo.arguments, bar.arguments, getter.arguments].concat(fuzz(42, 56)) [all...] |
/external/chromium_org/chrome/browser/extensions/api/app_runtime/ |
app_runtime_api.cc | 44 scoped_ptr<base::ListValue> arguments(new base::ListValue()); 45 DispatchOnLaunchedEventImpl(extension->id(), arguments.Pass(), profile); 51 scoped_ptr<base::ListValue> arguments(new base::ListValue()); 52 scoped_ptr<Event> event(new Event(kOnRestarted, arguments.Pass()));
|
/external/chromium_org/v8/test/mjsunit/bugs/ |
bug-222.js | 30 var oldArgs = Foo.arguments; 32 var newArgs = Foo.arguments 36 // Don't allow arguments to be overwritten. 37 Foo.arguments = oldArgs; 38 assertEquals(Foo.arguments, newArgs); 40 // Don't allow arguments to be deleted. 41 assertFalse(delete Foo.arguments); 42 assertEquals(Foo.arguments, newArgs);
|