Searched defs:args (Results 1 - 25 of 41) sorted by relevance

12

/development/tools/idegen/src/
H A DMain.java36 public static void main(String[] args) throws Exception { argument
/development/ndk/sources/android/libportable/arch-x86/
H A Dopen.c66 va_list args; local
68 va_start(args, flags);
69 mode = (mode_t) va_arg(args, int);
70 va_end(args);
/development/ndk/sources/android/libportable/arch-mips/
H A Dopen.c70 va_list args; local
72 va_start(args, flags);
73 mode = (mode_t) va_arg(args, int);
74 va_end(args);
89 va_list args; local
91 va_start(args, flags);
92 mode = (mode_t) va_arg(args, int);
93 va_end(args);
/development/tools/mkstubs/src/com/android/mkstubs/sourcer/
H A DOutput.java47 * @param args The arguments for the format string.
51 public void write(String format, Object... args) { argument
53 mWriter.write(String.format(format, args));
/development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/ui/
H A DDialogHelperImpl.java97 public Dialog handleOnCreateDialog(int id, Bundle args) { argument
99 Exception exception = (Exception) args.getSerializable(KEY_EXCEPTION);
100 String title = args.getString(KEY_TITLE);
/development/tools/hosttestlib/src/com/android/hosttest/
H A DDeviceTestRunner.java55 * @param args command line arguments
59 public TestResult start(String[] args) throws Exception { argument
62 for (int i=0; i < args.length; i++) {
63 if (args[i].equals("-s")) {
65 mDeviceSerial = extractArg(args, i);
66 } else if (args[i].equals("-p")) {
68 mTestDataPath = extractArg(args, i);
71 parentArgs.add(args[i]);
79 private String extractArg(String[] args, int index) { argument
80 if (args
98 main(String[] args) argument
[all...]
/development/samples/ApiDemos/src/com/example/android/apis/app/
H A DFragmentNestingTabs.java49 this, "args", FragmentArgumentsFragment.class)));
81 public TabListener(Activity activity, String tag, Class<T> clz, Bundle args) { argument
85 mArgs = args;
H A DFragmentTabs.java81 public TabListener(Activity activity, String tag, Class<T> clz, Bundle args) { argument
85 mArgs = args;
H A DForegroundService.java67 void invokeMethod(Method method, Object[] args) { argument
69 method.invoke(this, args);
H A DLoaderCursor.java173 public Loader<Cursor> onCreateLoader(int id, Bundle args) { argument
H A DLoaderRetained.java178 public Loader<Cursor> onCreateLoader(int id, Bundle args) { argument
H A DFragmentTabsFragment.java101 private final Bundle args; field in class:FragmentTabsFragment.TabManager.TabInfo
107 args = _args;
143 public void addTab(TabHost.TabSpec tabSpec, Class<?> clss, Bundle args) { argument
146 TabInfo info = new TabInfo(tag, clss, args);
238 newTab.clss.getName(), newTab.args);
/development/samples/ApiDemos/src/com/example/android/apis/content/
H A DFileProvider.java93 Bundle opts, InputStream args) {
99 while ((n=args.read(buffer)) >= 0) {
106 args.close();
92 writeDataToPipe(ParcelFileDescriptor output, Uri uri, String mimeType, Bundle opts, InputStream args) argument
/development/samples/Support4Demos/src/com/example/android/supportv4/app/
H A DLoaderCursorSupport.java154 public Loader<Cursor> onCreateLoader(int id, Bundle args) { argument
H A DLoaderRetainedSupport.java145 public Loader<Cursor> onCreateLoader(int id, Bundle args) { argument
H A DFragmentTabsPager.java96 private final Bundle args; field in class:FragmentTabsPager.TabsAdapter.TabInfo
101 args = _args;
131 public void addTab(TabHost.TabSpec tabSpec, Class<?> clss, Bundle args) { argument
135 TabInfo info = new TabInfo(tag, clss, args);
149 return Fragment.instantiate(mContext, info.clss.getName(), info.args);
/development/samples/Support13Demos/src/com/example/android/supportv13/app/
H A DActionBarTabsPager.java92 private final Bundle args; field in class:ActionBarTabsPager.TabsAdapter.TabInfo
96 args = _args;
109 public void addTab(ActionBar.Tab tab, Class<?> clss, Bundle args) { argument
110 TabInfo info = new TabInfo(clss, args);
126 return Fragment.instantiate(mContext, info.clss.getName(), info.args);
H A DCursorFragment.java113 public Loader<Cursor> onCreateLoader(int id, Bundle args) { argument
H A DFragmentNestingPagerSupport.java90 private final Bundle args; field in class:FragmentNestingPagerSupport.TabsAdapter.TabInfo
94 args = _args;
107 public void addTab(ActionBar.Tab tab, Class<?> clss, Bundle args) { argument
108 TabInfo info = new TabInfo(clss, args);
124 return Fragment.instantiate(mContext, info.clss.getName(), info.args);
H A DFragmentNestingStatePagerSupport.java90 private final Bundle args; field in class:FragmentNestingStatePagerSupport.TabsAdapter.TabInfo
94 args = _args;
107 public void addTab(ActionBar.Tab tab, Class<?> clss, Bundle args) { argument
108 TabInfo info = new TabInfo(clss, args);
124 return Fragment.instantiate(mContext, info.clss.getName(), info.args);
/development/tools/apkcheck/src/com/android/apkcheck/
H A DApkCheck.java58 public static void main(String[] args) { argument
61 if (args.length < 2) {
66 /* process args */
68 for (idx = 0; idx < args.length; idx++) {
69 if (args[idx].equals("--help")) {
72 } else if (args[idx].startsWith("--uses-library=")) {
73 String libName = args[idx].substring(args[idx].indexOf('=')+1);
82 } else if (args[idx].startsWith("--ignore-package=")) {
83 String pkgName = args[id
[all...]
/development/tools/mkstubs/src/com/android/mkstubs/
H A DMain.java38 * A struct-like class to hold the various input values (e.g. command-line args)
121 public static void main(String[] args) { argument
124 Params p = m.processArgs(args);
142 private Params processArgs(String[] args) throws IOException { argument
145 for (String arg : args) {
/development/cmds/monkey/src/com/android/commands/monkey/
H A DMonkeySourceNetworkViews.java70 public MonkeyCommandReturn query(AccessibilityNodeInfo node, List<String> args); argument
235 List<String> args;
240 args = command.subList(4, command.size());
248 args = command.subList(5, command.size());
260 return getter.query(node, args);
327 List<String> args) {
328 if (args.size() == 0) {
349 List<String> args) {
350 if (args.size() == 0) {
373 List<String> args) {
326 query(AccessibilityNodeInfo node, List<String> args) argument
348 query(AccessibilityNodeInfo node, List<String> args) argument
372 query(AccessibilityNodeInfo node, List<String> args) argument
386 query(AccessibilityNodeInfo node, List<String> args) argument
401 query(AccessibilityNodeInfo node, List<String> args) argument
416 query(AccessibilityNodeInfo node, List<String> args) argument
432 query(AccessibilityNodeInfo node, List<String> args) argument
456 query(AccessibilityNodeInfo node, List<String> args) argument
472 query(AccessibilityNodeInfo node, List<String> args) argument
497 query(AccessibilityNodeInfo node, List<String> args) argument
526 query(AccessibilityNodeInfo node, List<String> args) argument
547 query(AccessibilityNodeInfo node, List<String> args) argument
[all...]
/development/samples/BrowserPlugin/jni/
H A DPluginObject.cpp81 static bool pluginInvoke(NPObject *obj, NPIdentifier name, const NPVariant *args, uint32_t argCount, NPVariant *result);
82 static bool pluginInvokeDefault(NPObject *obj, const NPVariant *args, uint32_t argCount, NPVariant *result);
167 static bool pluginInvoke(NPObject *obj, NPIdentifier name, const NPVariant *args, uint32_t argCount, NPVariant *result) argument
176 static bool pluginInvokeDefault(NPObject *obj, const NPVariant *args, uint32_t argCount, NPVariant *result) argument
/development/samples/SampleSyncAdapter/src/com/example/android/samplesync/authenticator/
H A DAuthenticatorActivity.java121 protected Dialog onCreateDialog(int id, Bundle args) { argument

Completed in 357 milliseconds

12