HomeSort by relevance Sort by last modified time
    Searched full:res (Results 476 - 500 of 6406) sorted by null

<<11121314151617181920>>

  /frameworks/base/packages/VpnServices/res/values-ja/
strings.xml 2 <resources xmlns:android="http://schemas.android.com/apk/res/android"
  /frameworks/base/packages/VpnServices/res/values-ko/
strings.xml 2 <resources xmlns:android="http://schemas.android.com/apk/res/android"
  /frameworks/base/packages/VpnServices/res/values-ru/
strings.xml 2 <resources xmlns:android="http://schemas.android.com/apk/res/android"
  /frameworks/base/packages/VpnServices/res/values-zh-rCN/
strings.xml 2 <resources xmlns:android="http://schemas.android.com/apk/res/android"
  /frameworks/base/packages/VpnServices/res/values-zh-rTW/
strings.xml 2 <resources xmlns:android="http://schemas.android.com/apk/res/android"
  /frameworks/base/tests/BatteryWaster/
AndroidManifest.xml 1 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  /frameworks/base/tests/LowStorageTest/
AndroidManifest.xml 2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  /frameworks/base/tests/SslLoad/
AndroidManifest.xml 3 <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.android.sslload">
  /frameworks/base/tests/backup/
AndroidManifest.xml 1 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  /ndk/samples/bitmap-plasma/
AndroidManifest.xml 2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  /ndk/samples/hello-jni/
AndroidManifest.xml 2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  /ndk/samples/hello-neon/
AndroidManifest.xml 2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  /ndk/samples/san-angeles/
AndroidManifest.xml 2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  /ndk/samples/two-libs/
AndroidManifest.xml 2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  /packages/apps/Calculator/
AndroidManifest.xml 2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  /packages/apps/Calculator/res/layout-land/
history_item.xml 3 xmlns:android="http://schemas.android.com/apk/res/android"
  /packages/apps/Calculator/res/layout-port/
history_item.xml 3 xmlns:android="http://schemas.android.com/apk/res/android"
  /packages/apps/Gallery3D/src/com/cooliris/media/
MovieViewControl.java 38 import com.cooliris.app.Res;
78 durationValue = String.format(context.getString(Res.string.details_ms), m, s);
80 durationValue = String.format(context.getString(Res.string.details_hms), h, m, s);
87 mVideoView = (VideoView) rootView.findViewById(Res.id.surface_view);
88 mProgressView = rootView.findViewById(Res.id.progress_indicator);
116 builder.setTitle(Res.string.resume_playing_title);
119 .format(context.getString(Res.string.resume_playing_message), formatDuration(context, bookmark)));
125 builder.setPositiveButton(Res.string.resume_playing_resume, new OnClickListener() {
131 builder.setNegativeButton(Res.string.resume_playing_restart, new OnClickListener() {
  /packages/apps/IM/src/com/android/im/app/
ErrorResUtils.java 24 import android.content.res.Resources;
28 public static String getErrorRes(Resources res, int code, Object... args) {
31 return res.getString(R.string.general_error, code);
33 return res.getString(resId, args);
  /packages/apps/Settings/res/layout/
vpn_connect_dialog_view.xml 17 <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
21 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
27 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
44 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  /sdk/templates/
AndroidManifest.template 2 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  /frameworks/base/awt/org/apache/harmony/awt/gl/
Crossing.java 51 * @param res - the roots of the equation
54 public static int solveQuad(double eqn[], double res[]) {
63 res[rc++] = -c / b;
71 res[rc++] = (- b + d) / (a * 2.0);
74 res[rc++] = (- b - d) / (a * 2.0);
77 return fixRoots(res, rc);
83 * @param res - the roots of the equation
86 public static int solveCubic(double eqn[], double res[]) {
89 return solveQuad(eqn, res);
106 res[rc++] = m * Math.cos(t) + n
425 double res[] = new double[3]; local
457 double res[] = new double[3]; local
    [all...]
  /external/bluetooth/glib/gio/
gfileenumerator.c 81 GAsyncResult *res,
89 GAsyncResult *res,
292 GAsyncResult *res,
299 (*enumerator->priv->outstanding_callback) (source_object, res, user_data);
426 GAsyncResult *res,
434 (*enumerator->priv->outstanding_callback) (source_object, res, user_data);
620 next_files_thread (GSimpleAsyncResult *res,
632 op = g_simple_async_result_get_op_res_gpointer (res);
671 GSimpleAsyncResult *res; local
679 res = g_simple_async_result_new (G_OBJECT (enumerator), callback, user_data, g_file_enumerator_real_ne (…)
693 GList *res; local
736 GSimpleAsyncResult *res; local
    [all...]
  /external/icu4c/test/cintltst/
crestst.c 647 UResourceBundle *res, *item; local
654 res=ures_open(loadTestData(&errorCode), "testtable32", &errorCode);
656 log_data_err("unable to open testdata/testtable32.res - %s\n", u_errorName(errorCode));
659 if(ures_getType(res)!=URES_TABLE) {
660 log_data_err("testdata/testtable32.res has type %d instead of URES_TABLE\n", ures_getType(res));
663 count=ures_getSize(res);
665 log_err("testdata/testtable32.res should have 66000 entries but has %d\n", count);
671 item=ures_getByIndex(res, i, item, &errorCode);
673 log_err("unable to get item %d of %d in testdata/testtable32.res - %s\n"
910 UResourceBundle *res = NULL; local
969 UResourceBundle *res = NULL; local
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/drivers/
driver_privsep.c 38 int res; local
40 res = sendto(drv->priv_socket, &cmd, sizeof(cmd), 0,
43 if (res < 0)
45 return res < 0 ? -1 : 0;
75 int res; local
81 res = select(drv->cmd_socket + 1, &rfds, NULL, NULL, &tv);
82 if (res < 0 && errno != EINTR) {
88 res = recv(drv->cmd_socket, reply, *reply_len, 0);
89 if (res < 0) {
93 *reply_len = res;
127 int res, num; local
237 int res; local
277 int res; local
290 int res, ssid_len; local
468 int res, event; local
732 int res; local
    [all...]

Completed in 189 milliseconds

<<11121314151617181920>>