/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/ |
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...] |
call-apply-crash.js | 28 Function.prototype.call.apply(testLog, arguments); 29 })('Did not crash using apply', 0, 0); // needs 3+ arguments 31 arguments; // reify the arguments object. 32 Function.prototype.call.apply(testLog, arguments); 33 })('Did not crash using apply', 0, 0); // needs 3+ arguments
|
dfg-arguments-alias-one-block-overwrite-arguments.js | 25 "Tests that if you alias the arguments in a very small function, arguments simplification still works even if you overwrite the arguments register." 29 var args = arguments; 30 arguments = [1, 2, 3]; 31 return args[0] + arguments[1] + args[2];
|
/external/chromium_org/chrome/common/extensions/docs/server2/ |
app_engine_handler.py | 32 arguments = {} 33 for argument in self.request.arguments(): 34 arguments[argument] = self.request.get(argument) 38 arguments)
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
CSSFunctionValue.h | 46 CSSValueList* arguments() const { return m_args.get(); } function in class:blink::CSSFunctionValue
|
/external/chromium_org/v8/src/base/ |
logging.cc | 80 va_list arguments; local 81 va_start(arguments, format); 82 v8::base::OS::VPrintError(format, arguments); 83 va_end(arguments);
|
/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);
|
/external/ltrace/ |
common.h | 60 /* Format VALUE into STREAM. The dictionary of all arguments is given 65 struct value_dict *arguments);
|
/frameworks/base/core/java/android/view/accessibility/ |
AccessibilityNodeProvider.java | 111 * @param arguments Optional action arguments. 118 public boolean performAction(int virtualViewId, int action, Bundle arguments) {
|
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/ |
PrintErrorFragment.java | 47 Bundle arguments = new Bundle(); local 48 arguments.putCharSequence(EXTRA_MESSAGE, message); 49 arguments.putInt(EXTRA_ACTION, action); 51 fragment.setArguments(arguments);
|
/packages/apps/Contacts/src/com/android/contacts/interactions/ |
GroupCreationDialogFragment.java | 81 Bundle arguments = getArguments(); local 82 String accountType = arguments.getString(ARG_ACCOUNT_TYPE); 83 String accountName = arguments.getString(ARG_ACCOUNT_NAME); 84 String dataSet = arguments.getString(ARG_DATA_SET);
|
/device/sample/apps/SampleEmailPolicy/src/com/android/email/policy/ |
EmailPolicy.java | 40 * in the "arguments" bundle. If there is a single argument, it will typically use the same key 41 * as the policy name. If there are multiple arguments, they keys are provided and called out. 72 * The following arguments are provided: 187 * @param arguments A bundle containing zero or more argument values for the requested policy 190 public static Bundle getPolicy(String policy, Bundle arguments) { 205 String domain = arguments.getString(FIND_PROVIDER); 231 String capabilities = arguments.getString(GET_IMAP_ID_CAPA);
|
/external/chromium_org/extensions/renderer/resources/ |
messaging_utils.js | 5 // Routines used to normalize arguments to messaging functions. 8 // Align missing (optional) function arguments with the arguments that 24 // argument it should match. If there are more than two arguments remaining, 29 // Exactly two arguments remaining. If the first argument is a string, 31 // request, which is required. In other words, when two arguments remain,
|
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/ |
npruntime_impl.h | 53 bool _NPN_Invoke(NPP, NPObject*, NPIdentifier methodName, const NPVariant* arguments, uint32_t argumentCount, NPVariant* result); 54 bool _NPN_InvokeDefault(NPP, NPObject*, const NPVariant* arguments, uint32_t argumentCount, NPVariant* result); 64 bool _NPN_Construct(NPP, NPObject*, const NPVariant* arguments, uint32_t argumentCount, NPVariant* result);
|
/external/chromium_org/third_party/WebKit/Source/bindings/templates/ |
callback_interface.cpp | 48 {% for argument in method.arguments %} 56 {% if method.arguments %} 57 v8::Handle<v8::Value> argv[] = { {{method.arguments | join(', ', 'handle')}} }; 67 ScriptController::callFunction(m_scriptState->executionContext(), m_callback.newLocal(m_scriptState->isolate()), {{this_handle_parameter}}{{method.arguments | length}}, argv, m_scriptState->isolate()); 70 ScriptController::callFunction(m_scriptState->executionContext(), m_callback.newLocal(m_scriptState->isolate()), {{this_handle_parameter}}{{method.arguments | length}}, argv, m_scriptState->isolate());
|
/external/chromium_org/v8/test/mjsunit/regress/ |
regress-3185905.js | 29 var a = arguments.callee; 37 var a = arguments.callee; 45 var a = arguments.callee; 53 var arguments = { 0 : 3, 'x' : 4 }; 57 assertEquals(3, arguments[0]) 58 assertEquals(4, arguments['x'])
|
/external/mockito/src/org/mockito/internal/invocation/ |
ArgumentsProcessor.java | 41 public static List<Matcher> argumentsToMatchers(Object[] arguments) { 42 List<Matcher> matchers = new ArrayList<Matcher>(arguments.length); 43 for (Object arg : arguments) {
|
/frameworks/support/v4/kitkat/android/support/v4/view/accessibility/ |
AccessibilityNodeProviderCompatKitKat.java | 31 public boolean performAction(int virtualViewId, int action, Bundle arguments); 55 public boolean performAction(int virtualViewId, int action, Bundle arguments) { 56 return bridge.performAction(virtualViewId, action, arguments);
|