/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/ |
WifiAssociationTestRunner.java | 60 Bundle arguments = icicle; local 61 String mFrequencyBand = arguments.getString("frequency-band");
|
/frameworks/support/v4/jellybean/android/support/v4/view/ |
ViewCompatJB.java | 61 public static boolean performAccessibilityAction(View view, int action, Bundle arguments) { 62 return view.performAccessibilityAction(action, arguments);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/ |
ExtractStringDescriptor.java | 38 Map<String, String> arguments) { 42 mArguments = arguments;
|
/frameworks/support/v4/java/android/support/v4/view/accessibility/ |
AccessibilityNodeProviderCompat.java | 51 Bundle arguments) { 52 return compat.performAction(virtualViewId, action, arguments); 92 int virtualViewId, int action, Bundle arguments) { 93 return compat.performAction(virtualViewId, action, arguments); 205 * @param arguments Optional arguments. 211 public boolean performAction(int virtualViewId, int action, Bundle arguments) {
|
/packages/apps/Settings/src/com/android/settings/accessibility/ |
ToggleFeaturePreferenceFragment.java | 131 protected void onProcessArguments(Bundle arguments) { 133 mPreferenceKey = arguments.getString(AccessibilitySettings.EXTRA_PREFERENCE_KEY); 135 final boolean enabled = arguments.getBoolean(AccessibilitySettings.EXTRA_CHECKED); 140 String title = arguments.getString(AccessibilitySettings.EXTRA_TITLE); 144 CharSequence summary = arguments.getCharSequence(AccessibilitySettings.EXTRA_SUMMARY);
|
/external/chromium_org/third_party/WebKit/Tools/TestResultServer/static-dashboards/ |
base.js | 36 // Create a new function with some of its arguments pre-filled. 40 var args = Array.prototype.slice.call(arguments, 1); 42 // Prepend the bound arguments to the current arguments. 43 var newArgs = Array.prototype.slice.call(arguments);
|
/external/chromium_org/v8/test/mjsunit/regress/ |
regress-1412.js | 28 // Test that the apply with arguments optimization passes values 36 assertEquals(void 0, strict.apply(undefined, arguments)); 37 assertEquals(42, strict.apply(42, arguments)); 38 assertEquals("asdf", strict.apply("asdf", arguments)); 46 Object.prototype.valueOf.apply(receiver, arguments);
|
regress-1548.js | 28 // Test that the caller and arguments objects are not available on native 40 // Redo tests with arguments object. 42 function bar() { return [].map.arguments; } 45 // Try to delete the arguments property (to make sure that we can't get to the 47 delete Array.prototype.map.arguments;
|
regress-crbug-150545.js | 30 // Test that we do not generate OSR entry points that have an arguments 40 assertSame(3, arguments.length); 41 assertSame(1, arguments[0]); 42 assertSame(2, arguments[1]); 43 assertSame(3, arguments[2]);
|
/external/v8/test/mjsunit/regress/ |
regress-1412.js | 28 // Test that the apply with arguments optimization passes values 36 assertEquals(void 0, strict.apply(undefined, arguments)); 37 assertEquals(42, strict.apply(42, arguments)); 38 assertEquals("asdf", strict.apply("asdf", arguments)); 46 Object.prototype.valueOf.apply(receiver, arguments);
|
regress-1548.js | 28 // Test that the caller and arguments objects are not available on native 40 // Redo tests with arguments object. 42 function bar() { return [].map.arguments; } 45 // Try to delete the arguments property (to make sure that we can't get to the 47 delete Array.prototype.map.arguments;
|
/frameworks/testing/androidtestlib/src/com/android/test/runner/ |
AndroidJUnitRunner.java | 128 // constants for supported instrumentation arguments 148 public void onCreate(Bundle arguments) { 149 super.onCreate(arguments); 150 mArguments = arguments; 156 * Get the Bundle object that contains the arguments passed to the instrumentation 166 * Set the arguments. 331 * Builds a {@link TestRequest} based on given input arguments. 335 TestRequest buildRequest(Bundle arguments, PrintStream writer) { 342 String testClassName = arguments.getString(ARGUMENT_TEST_CLASS); 349 String testPackage = arguments.getString(ARGUMENT_TEST_PACKAGE) [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/irc/ |
irclib.py | 129 Optional arguments are fn_to_add_socket, fn_to_remove_socket 142 The three arguments mainly exist to be able to use an external 160 self.delayed_commands = [] # list of tuples in the format (time, function, arguments) 174 Arguments: 201 Arguments: 224 Arguments: 239 Arguments: 264 Arguments: 279 def execute_at(self, at, function, arguments=()): 282 Arguments 1152 def arguments(self): member in class:Event [all...] |
/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/ |
idl_definitions_builder.py | 187 arguments = [] 192 if child_class == 'Arguments': 193 arguments = arguments_node_to_arguments(child) 201 return IdlOperation(name=name, data_type=return_type, extended_attributes=extended_attributes, is_static=is_static, arguments=arguments, specials=specials) 205 # [Constructor] and [CustomConstructor] without arguments (the bare form) 206 # have None instead of an arguments node, but have the same meaning as using 211 arguments = [] 214 arguments.append(argument_node_to_idl_argument(argument_node)) 215 return arguments [all...] |
/external/chromium_org/chrome/renderer/resources/extensions/ |
runtime_custom_bindings.js | 119 // Align missing (optional) function arguments with the arguments that 127 if (typeof(arguments[nextArg]) == 'string') 128 targetId = arguments[nextArg++]; 132 if (typeof(arguments[nextArg]) == 'object') 133 connectInfo = arguments[nextArg++]; 135 if (nextArg != arguments.length) 136 throw new Error('Invalid arguments to connect.'); 143 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;
|
/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...] |
/external/chromium_org/sandbox/win/tests/common/ |
controller.cc | 213 std::wstring 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/third_party/WebKit/Source/wtf/ |
StdLibExtras.h | 36 #define DEFINE_STATIC_LOCAL(type, name, arguments) \ 37 static type& name = *new type arguments 45 #define DEFINE_DEBUG_ONLY_GLOBAL(type, name, arguments) \ 49 static type name arguments; \ 52 #define DEFINE_DEBUG_ONLY_GLOBAL(type, name, arguments) \ 53 static type name arguments; 56 #define DEFINE_DEBUG_ONLY_GLOBAL(type, name, 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/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...] |