Searched defs:args (Results 1 - 25 of 364) sorted by last modified time

1234567891011>>

/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DActivityChooserModel.java1041 public Void doInBackground(Object... args) { argument
1042 List<HistoricalRecord> historicalRecords = (List<HistoricalRecord>) args[0];
1043 String hostoryFileName = (String) args[1];
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java6724 boolean performAccessibilityAction(int action, Bundle args) { argument
6726 action, args);
6736 * @param args Optional action arguments
6740 Bundle args) {
6771 boolean performAccessibilityActionForItem(View view, int action, Bundle args) { argument
6773 view, action, args);
6787 * @param args Optional action arguments
6792 int action, Bundle args) {
6739 performAccessibilityAction(Recycler recycler, State state, int action, Bundle args) argument
6791 performAccessibilityActionForItem(Recycler recycler, State state, View view, int action, Bundle args) argument
H A DRecyclerViewAccessibilityDelegate.java39 public boolean performAccessibilityAction(View host, int action, Bundle args) { argument
40 if (super.performAccessibilityAction(host, action, args)) {
44 return mRecyclerView.getLayoutManager().performAccessibilityAction(action, args);
86 public boolean performAccessibilityAction(View host, int action, Bundle args) {
87 if (super.performAccessibilityAction(host, action, args)) {
92 performAccessibilityActionForItem(host, action, args);
/frameworks/volley/src/com/android/volley/
H A DVolleyLog.java48 public static void v(String format, Object... args) { argument
50 Log.v(TAG, buildMessage(format, args));
54 public static void d(String format, Object... args) { argument
55 Log.d(TAG, buildMessage(format, args));
58 public static void e(String format, Object... args) { argument
59 Log.e(TAG, buildMessage(format, args));
62 public static void e(Throwable tr, String format, Object... args) { argument
63 Log.e(TAG, buildMessage(format, args), tr);
66 public static void wtf(String format, Object... args) { argument
67 Log.wtf(TAG, buildMessage(format, args));
70 wtf(Throwable tr, String format, Object... args) argument
78 buildMessage(String format, Object... args) argument
[all...]
/frameworks/webview/chromium/java/com/android/webview/chromium/
H A DWebViewContentsClientAdapter.java852 public void onReceivedLoginRequest(String realm, String account, String args) { argument
855 mWebViewClient.onReceivedLoginRequest(mWebView, realm, account, args);
/frameworks/support/gradle/wrapper/
H A Dgradle-wrapper.jar ... io.File) throws java.lang.Exception String[] args java.io.File gradleHome java.io. ...
/frameworks/support/v13/java/android/support/v13/app/
H A DFragmentTabHost.java56 private final Bundle args; field in class:FragmentTabHost.TabInfo
62 args = _args;
218 public void addTab(TabHost.TabSpec tabSpec, Class<?> clss, Bundle args) { argument
222 TabInfo info = new TabInfo(tag, clss, args);
336 newTab.clss.getName(), newTab.args);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
H A DBrowseFragment.java227 * @param args The Bundle to place arguments into, or null if the method
235 public static Bundle createArgs(Bundle args, String title, int headersState) { argument
236 if (args == null) {
237 args = new Bundle();
239 args.putString(ARG_TITLE, title);
240 args.putInt(ARG_HEADERS_STATE, headersState);
241 return args;
972 private void readArguments(Bundle args) { argument
973 if (args == null) {
976 if (args
[all...]
H A DBrowseSupportFragment.java229 * @param args The Bundle to place arguments into, or null if the method
237 public static Bundle createArgs(Bundle args, String title, int headersState) { argument
238 if (args == null) {
239 args = new Bundle();
241 args.putString(ARG_TITLE, title);
242 args.putInt(ARG_HEADERS_STATE, headersState);
243 return args;
974 private void readArguments(Bundle args) { argument
975 if (args == null) {
978 if (args
[all...]
H A DSearchFragment.java220 * @param args Bundle to use for the arguments, if null a new Bundle will be created.
222 public static Bundle createArgs(Bundle args, String query) { argument
223 return createArgs(args, query, null);
226 public static Bundle createArgs(Bundle args, String query, String title) { argument
227 if (args == null) {
228 args = new Bundle();
230 args.putString(ARG_QUERY, query);
231 args.putString(ARG_TITLE, title);
232 return args;
246 Bundle args
677 readArguments(Bundle args) argument
[all...]
H A DSearchSupportFragment.java222 * @param args Bundle to use for the arguments, if null a new Bundle will be created.
224 public static Bundle createArgs(Bundle args, String query) { argument
225 return createArgs(args, query, null);
228 public static Bundle createArgs(Bundle args, String query, String title) { argument
229 if (args == null) {
230 args = new Bundle();
232 args.putString(ARG_QUERY, query);
233 args.putString(ARG_TITLE, title);
234 return args;
248 Bundle args
679 readArguments(Bundle args) argument
[all...]
/frameworks/support/v4/api21/android/support/v4/media/session/
H A DMediaControllerCompatApi21.java170 public static void sendCustomAction(Object controlsObj, String action, Bundle args) { argument
171 ((MediaController.TransportControls) controlsObj).sendCustomAction(action, args);
H A DMediaSessionCompatApi21.java161 public void onCommand(String command, Bundle args, ResultReceiver cb) { argument
162 mCallback.onCommand(command, args, cb);
/frameworks/support/v4/honeycomb/android/support/v4/app/
H A DActivityCompatHoneycomb.java33 PrintWriter writer, String[] args) {
34 activity.dump(prefix, fd, writer, args);
32 dump(Activity activity, String prefix, FileDescriptor fd, PrintWriter writer, String[] args) argument
/frameworks/support/v4/java/android/support/v4/app/
H A DBackStackRecord.java258 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) { argument
H A DFragment.java405 * @param args Bundle of arguments to supply to the fragment, which it
412 public static Fragment instantiate(Context context, String fname, Bundle args) { argument
421 if (args != null) {
422 args.setClassLoader(f.getClass().getClassLoader());
423 f.mArguments = args;
546 public void setArguments(Bundle args) { argument
550 mArguments = args;
1651 * @param args additional arguments to the dump request.
1653 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) { argument
1722 mLoaderManager.dump(prefix + " ", fd, writer, args);
[all...]
H A DFragmentActivity.java643 * @param args additional arguments to the dump request.
645 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) { argument
648 //ActivityCompatHoneycomb.dump(this, prefix, fd, writer, args);
665 mLoaderManager.dump(prefix + " ", fd, writer, args);
667 mFragments.dump(prefix, fd, writer, args);
H A DFragmentManager.java350 * @param args Additional arguments to the dump request.
352 public abstract void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args); argument
636 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) { argument
651 f.dump(innerPrefix, fd, writer, args);
689 bs.dump(innerPrefix, fd, writer, args);
H A DFragmentTabHost.java64 private final Bundle args; field in class:FragmentTabHost.TabInfo
70 args = _args;
226 public void addTab(TabHost.TabSpec tabSpec, Class<?> clss, Bundle args) { argument
230 TabInfo info = new TabInfo(tag, clss, args);
344 newTab.clss.getName(), newTab.args);
H A DLoaderManager.java48 * @param args Any arguments supplied by the caller.
51 public Loader<D> onCreateLoader(int id, Bundle args); argument
120 * @param args Optional arguments to supply to the loader at construction.
126 public abstract <D> Loader<D> initLoader(int id, Bundle args, argument
140 * @param args Optional arguments to supply to the loader at construction.
144 public abstract <D> Loader<D> restartLoader(int id, Bundle args, argument
167 * @param args Additional arguments to the dump request.
169 public abstract void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args); argument
228 public LoaderInfo(int id, Bundle args, LoaderManager.LoaderCallbacks<Object> callbacks) { argument
230 mArgs = args;
450 dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) argument
487 createLoader(int id, Bundle args, LoaderManager.LoaderCallbacks<Object> callback) argument
495 createAndInstallLoader(int id, Bundle args, LoaderManager.LoaderCallbacks<Object> callback) argument
542 initLoader(int id, Bundle args, LoaderManager.LoaderCallbacks<D> callback) argument
592 restartLoader(int id, Bundle args, LoaderManager.LoaderCallbacks<D> callback) argument
800 dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) argument
[all...]
/frameworks/support/v4/java/android/support/v4/content/
H A DAsyncTaskLoader.java267 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) { argument
268 super.dump(prefix, fd, writer, args);
H A DCursorLoader.java195 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) { argument
196 super.dump(prefix, fd, writer, args);
H A DLoader.java390 * @param args Additional arguments to the dump request.
392 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) { argument
/frameworks/support/v4/java/android/support/v4/media/session/
H A DMediaControllerCompat.java654 * @param args Optional arguments to supply to the
658 Bundle args);
661 * Send the id and args from a custom action for the
665 * Bundle args)
669 * @param args Optional arguments to supply to the
672 public abstract void sendCustomAction(String action, Bundle args); argument
1103 public void sendCustomAction(CustomAction customAction, Bundle args) { argument
1104 sendCustomAction(customAction.getAction(), args);
1108 public void sendCustomAction(String action, Bundle args) { argument
1110 mBinder.sendCustomAction(action, args);
657 sendCustomAction(PlaybackStateCompat.CustomAction customAction, Bundle args) argument
1312 sendCustomAction(CustomAction customAction, Bundle args) argument
1318 sendCustomAction(String action, Bundle args) argument
[all...]
H A DMediaSessionCompat.java1471 public void sendCommand(String command, Bundle args, ResultReceiverWrapper cb) { argument
1473 new Command(command, args, cb.mResultReceiver));
1627 public void sendCustomAction(String action, Bundle args) argument
1629 mHandler.post(MessageHandler.MSG_CUSTOM_ACTION, action, args);

Completed in 333 milliseconds

1234567891011>>