/developers/samples/android/media/MediaRecorder/ |
gradlew.bat | 49 @rem Get command-line arguments, handling Windowz variants
55 @rem Slurp the command line arguments.
66 @rem Get arguments from the 4NT Shell from JP Software
|
/developers/samples/android/security/keystore/BasicAndroidKeyStore/ |
gradlew.bat | 49 @rem Get command-line arguments, handling Windowz variants
55 @rem Slurp the command line arguments.
66 @rem Get arguments from the 4NT Shell from JP Software
|
/developers/samples/android/ui/accessibility/BasicAccessibility/ |
gradlew.bat | 49 @rem Get command-line arguments, handling Windowz variants
55 @rem Slurp the command line arguments.
66 @rem Get arguments from the 4NT Shell from JP Software
|
/developers/samples/android/ui/actionbar/DoneBar/ |
gradlew.bat | 49 @rem Get command-line arguments, handling Windowz variants
55 @rem Slurp the command line arguments.
66 @rem Get arguments from the 4NT Shell from JP Software
|
/developers/samples/android/ui/actionbarcompat/Basic/ |
gradlew.bat | 49 @rem Get command-line arguments, handling Windowz variants
55 @rem Slurp the command line arguments.
66 @rem Get arguments from the 4NT Shell from JP Software
|
/developers/samples/android/ui/actionbarcompat/ListPopupMenu/ |
gradlew.bat | 49 @rem Get command-line arguments, handling Windowz variants
55 @rem Slurp the command line arguments.
66 @rem Get arguments from the 4NT Shell from JP Software
|
/developers/samples/android/ui/actionbarcompat/ShareActionProvider/ |
gradlew.bat | 49 @rem Get command-line arguments, handling Windowz variants
55 @rem Slurp the command line arguments.
66 @rem Get arguments from the 4NT Shell from JP Software
|
/developers/samples/android/ui/actionbarcompat/Styled/ |
gradlew.bat | 49 @rem Get command-line arguments, handling Windowz variants
55 @rem Slurp the command line arguments.
66 @rem Get arguments from the 4NT Shell from JP Software
|
/developers/samples/android/ui/holo/BorderlessButtons/ |
gradlew.bat | 49 @rem Get command-line arguments, handling Windowz variants
55 @rem Slurp the command line arguments.
66 @rem Get arguments from the 4NT Shell from JP Software
|
/developers/samples/android/ui/lists/CustomChoiceList/ |
gradlew.bat | 49 @rem Get command-line arguments, handling Windowz variants
55 @rem Slurp the command line arguments.
66 @rem Get arguments from the 4NT Shell from JP Software
|
/developers/samples/android/ui/notifications/BasicNotifications/ |
gradlew.bat | 49 @rem Get command-line arguments, handling Windowz variants
55 @rem Slurp the command line arguments.
66 @rem Get arguments from the 4NT Shell from JP Software
|
/developers/samples/android/ui/views/HorizontalPaging/ |
gradlew.bat | 49 @rem Get command-line arguments, handling Windowz variants
55 @rem Slurp the command line arguments.
66 @rem Get arguments from the 4NT Shell from JP Software
|
/developers/samples/android/ui/views/TextSwitcher/ |
gradlew.bat | 49 @rem Get command-line arguments, handling Windowz variants
55 @rem Slurp the command line arguments.
66 @rem Get arguments from the 4NT Shell from JP Software
|
/development/samples/training/testingfun/ |
gradlew.bat | 49 @rem Get command-line arguments, handling Windowz variants
55 @rem Slurp the command line arguments.
66 @rem Get arguments from the 4NT Shell from JP Software
|
/external/chromium_org/chrome/renderer/resources/extensions/ |
context_menus_custom_bindings.js | 39 var id = arguments[0].menuItemId; 42 $Function.apply(onclick, null, arguments); 48 var args = arguments;
|
/external/chromium_org/v8/test/mjsunit/regress/ |
regress-1079.js | 30 // Getting the arguments property of an optimized function should not crash, 34 return unoptimized.apply(null, arguments); 40 return optimized.arguments;
|
regress-124.js | 50 // Receiver should be the arguments object here. 51 assertEquals("[object Arguments]", eval("arguments[0]()")); 52 with (arguments) { 53 assertEquals("[object Arguments]", toString());
|
/external/chromium_org/v8/test/webkit/ |
dfg-inline-arguments-become-double.js | 25 "This tests that inlining preserves function.arguments functionality if the arguments are reassigned to refer to an int32." 29 return bar.arguments; 52 shouldBe("argsToStr(baz(\"a\" + __i, \"b\" + __i, \"c\" + __i))", "\"[object Arguments]: a" + __i + ", 42.5, c" + __i + "\"");
|
dfg-inline-arguments-become-int32.js | 25 "This tests that inlining preserves function.arguments functionality if the arguments are reassigned to refer to an int32." 29 return bar.arguments; 52 shouldBe("argsToStr(baz(\"a\" + __i, \"b\" + __i, \"c\" + __i))", "\"[object Arguments]: a" + __i + ", 42, c" + __i + "\"");
|
dfg-inline-arguments-int32.js | 25 "This tests that inlining preserves function.arguments functionality if the arguments were represented as unboxed int32." 29 return bar.arguments; 51 shouldBe("argsToStr(baz(__i + 1, __i + 2, __i + 3))", "\"[object Arguments]: " + (__i + 1) + ", " + (__i + 2) + ", " + (__i + 3) + "\"");
|
dfg-inline-arguments-osr-exit-and-capture.js | 25 "Tests what happens if you OSR exit within inlined code that has interesting control flow with arguments that are specially formatted and you capture the arguments reflectively after the OSR exit." 29 return bar.arguments[0];
|
dfg-inline-arguments-reset-changetype.js | 25 "This tests that inlining preserves function.arguments functionality if the arguments are reassigned with a different type." 29 return bar.arguments; 52 shouldBe("argsToStr(baz(\"a\" + __i, __i + 2, \"c\" + __i))", "\"[object Arguments]: a" + __i + ", a" + __i + ", c" + __i + "\"");
|
dfg-inline-arguments-reset.js | 25 "This tests that inlining preserves function.arguments functionality if the arguments are reassigned." 29 return bar.arguments; 52 shouldBe("argsToStr(baz(\"a\" + __i, \"b\" + __i, \"c\" + __i))", "\"[object Arguments]: a" + __i + ", a" + __i + ", c" + __i + "\"");
|
dfg-inline-arguments-use-from-uninlined-code.js | 25 "This tests that inlining preserves basic function.arguments functionality when said functionality is used from outside of the code where inlining actually happened." 29 return bar.arguments; 33 return baz.arguments;
|
dfg-inline-function-dot-caller.js | 25 "Tests that DFG inlining does not brak function.arguments.caller." 37 if (0) return [arguments, function(){}]; 42 f=f.arguments.callee.caller;
|