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

1 2 3 45 6 7 8 91011>>

  /packages/apps/DeskClock/res/anim/
dim_instant.xml 1 <alpha xmlns:android="http://schemas.android.com/apk/res/android"
undim_instant.xml 1 <alpha xmlns:android="http://schemas.android.com/apk/res/android"
  /sdk/layoutopt/samples/
simple.xml 4 xmlns:android="http://schemas.android.com/apk/res/android"
  /system/extras/tests/bionic/libc/common/
test_getaddrinfo.c 19 struct addrinfo* res; local
23 ret = getaddrinfo( SERVER_NAME, PORT_NUMBER, NULL, &res);
29 freeaddrinfo(res);
37 ret = getaddrinfo( SERVER_NAME, PORT_NUMBER, &hints, &res );
  /external/elfutils/libebl/
ebldynamictagname.c 31 const char *res = ebl != NULL ? ebl->dynamic_tag_name (tag, buf, len) : NULL; local
33 if (res == NULL)
48 res = stdtags[tag];
51 res = "VERSYM";
61 res = valrntags[tag - DT_GNU_PRELINKED];
71 res = addrrntags[tag - DT_GNU_CONFLICT];
81 res = suntags[tag - DT_RELACOUNT];
84 res = "AUXILIARY";
86 res = "FILTER";
91 res = buf
    [all...]
eblsectionname.c 33 const char *res = ebl != NULL ? ebl->section_name (section, xsection, local
36 if (res == NULL)
39 res = "UNDEF";
41 res = "ABS";
43 res = "COMMON";
45 res = "BEFORE";
47 res = "AFTER";
54 res = scnnames[idx];
58 res = buf;
76 res = buf
    [all...]
eblsymbolbindingname.c 30 const char *res; local
32 res = ebl != NULL ? ebl->symbol_type_name (binding, buf, len) : NULL;
33 if (res == NULL)
42 res = stb_names[binding];
52 res = buf;
56 return res;
  /external/libffi/testsuite/libffi.call/
problem1.c 63 struct my_ffi_struct res; local
85 ffi_call(&cif, FFI_FN(callee), &res, args);
87 printf("res: %g %g %g\n", res.a, res.b, res.c);
92 res = ((my_ffi_struct(*)(struct my_ffi_struct, struct my_ffi_struct))(pcl))(g, f);
94 printf("res: %g %g %g\n", res.a, res.b, res.c)
    [all...]
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/
Util.java 23 import android.content.res.Resources;
47 public static Uri getResourceUri(Context packageContext, int res) {
50 return getResourceUri(resources, packageContext.getPackageName(), res);
52 Log.e(TAG, "Resource not found: " + res + " in " + packageContext.getPackageName());
57 public static Uri getResourceUri(Context context, ApplicationInfo appInfo, int res) {
60 return getResourceUri(resources, appInfo.packageName, res);
65 Log.e(TAG, "Resource not found: " + res + " in " + appInfo.packageName);
70 private static Uri getResourceUri(Resources resources, String appPkg, int res)
72 String resPkg = resources.getResourcePackageName(res);
73 String type = resources.getResourceTypeName(res);
    [all...]
  /external/dropbear/libtomcrypt/src/pk/dsa/
dsa_shared_secret.c 34 void *res; local
43 if ((err = mp_init(&res)) != CRYPT_OK) {
47 if ((err = mp_exptmod(base, private_key, public_key->p, res)) != CRYPT_OK) {
48 mp_clear(res);
52 x = (unsigned long)mp_unsigned_bin_size(res);
59 if ((err = mp_to_unsigned_bin(res, out + (x - mp_unsigned_bin_size(res)))) != CRYPT_OK) { goto done; }
64 mp_clear(res);
  /external/icu4c/samples/ufortune/resources/
Makefile 15 # a binary .res file.
16 # pkgdata combines all of the .res files into a single
22 # icu tools. gencmn combines the individual .res
46 RESFILES=root.res es.res
49 RESLIST=res-file-list.txt
55 install: res-install
57 es.res: es.txt
  /packages/apps/Phone/res/xml/
cdma_call_options.xml 2 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
3 xmlns:settings="http://schemas.android.com/apk/res/com.android.phone"
  /external/dropbear/libtommath/
bn_mp_reduce_2k_setup_l.c 21 int res; local
24 if ((res = mp_init(&tmp)) != MP_OKAY) {
25 return res;
28 if ((res = mp_2expt(&tmp, mp_count_bits(a))) != MP_OKAY) {
32 if ((res = s_mp_sub(&tmp, a, d)) != MP_OKAY) {
38 return res;
bn_mp_div.c 24 int res, n, n2; local
34 res = mp_copy (a, d);
36 res = MP_OKAY;
41 return res;
45 if ((res = mp_init_multi(&ta, &tb, &tq, &q, NULL) != MP_OKAY)) {
46 return res;
52 if (((res = mp_abs(a, &ta)) != MP_OKAY) ||
53 ((res = mp_abs(b, &tb)) != MP_OKAY) ||
54 ((res = mp_mul_2d(&tb, n, &tb)) != MP_OKAY) ||
55 ((res = mp_mul_2d(&tq, n, &tq)) != MP_OKAY))
106 int res, n, t, i, norm, neg; local
    [all...]
bn_mp_montgomery_calc_normalization.c 26 int x, bits, res; local
32 if ((res = mp_2expt (a, (b->used - 1) * DIGIT_BIT + bits - 1)) != MP_OKAY) {
33 return res;
43 if ((res = mp_mul_2 (a, a)) != MP_OKAY) {
44 return res;
47 if ((res = s_mp_sub (a, b, a)) != MP_OKAY) {
48 return res;
bn_mp_mul.c 21 int res, neg; local
27 res = mp_toom_mul(a, b, c);
33 res = mp_karatsuba_mul (a, b, c);
49 res = fast_s_mp_mul_digs (a, b, c, digs);
53 res = s_mp_mul (a, b, c); /* uses s_mp_mul_digs */
55 res = MP_VAL;
60 return res;
bn_fast_mp_invmod.c 27 int res, neg; local
35 if ((res = mp_init_multi(&x, &y, &u, &v, &B, &D, NULL)) != MP_OKAY) {
36 return res;
40 if ((res = mp_copy (b, &x)) != MP_OKAY) {
45 if ((res = mp_mod (a, b, &y)) != MP_OKAY) {
50 if ((res = mp_copy (&x, &u)) != MP_OKAY) {
53 if ((res = mp_copy (&y, &v)) != MP_OKAY) {
62 if ((res = mp_div_2 (&u, &u)) != MP_OKAY) {
67 if ((res = mp_sub (&B, &x, &B)) != MP_OKAY) {
72 if ((res = mp_div_2 (&B, &B)) != MP_OKAY)
    [all...]
  /cts/tests/tests/content/src/android/content/res/cts/
PluralResourcesTest.java 17 package android.content.res.cts;
22 import android.content.res.Configuration;
23 import android.content.res.Resources;
52 final Resources res = resourcesForLanguage("en"); local
54 cs = res.getQuantityText(R.plurals.plurals_test, 0);
60 cs = res.getQuantityText(R.plurals.plurals_test, 1);
66 cs = res.getQuantityText(R.plurals.plurals_test, 2);
69 cs = res.getQuantityText(R.plurals.plurals_test, 5);
72 cs = res.getQuantityText(R.plurals.plurals_test, 500);
79 final Resources res = resourcesForLanguage("cs") local
    [all...]
  /external/webkit/WebCore/loader/
CachedResourceHandle.h 47 CachedResourceHandleBase(CachedResource* res) { m_resource = res; if (m_resource) m_resource->registerHandle(this); }
63 CachedResourceHandle(R* res);
69 CachedResourceHandle& operator=(R* res) { setResource(res); return *this; }
82 CachedResourceHandle<R>::CachedResourceHandle(R* res) : CachedResourceHandleBase(res)
86 template <class R, class RR> bool operator==(const CachedResourceHandle<R>& h, const RR* res)
88 return h.get() == res;
90 template <class R, class RR> bool operator==(const RR* res, const CachedResourceHandle<R>& h)
    [all...]
  /external/speex/libspeex/
_kiss_fft_guts.h 43 C_SUB( res, a,b) : res = a - b
44 C_SUBFROM( res , a) : res -= a
45 C_ADDTO( res , a) : res += a
105 #define C_ADD( res, a,b)\
109 (res).r=(a).r+(b).r; (res).i=(a).i+(b).i; \
111 #define C_SUB( res, a,b)
    [all...]
fixed_arm5e.h 40 int res; local
42 : "=&r"(res)
44 return(res);
49 int res; local
51 : "=&r"(res)
53 return(res);
58 int res; local
60 : "=&r"(res)
62 return(res);
67 int res; local
76 int res; local
85 int res; local
95 int res=0; local
    [all...]
fixed_bfin.h 42 spx_word32_t res, bb; local
58 : "=m" (res)
61 return res;
67 spx_word32_t res, bb; local
85 : "=m" (res)
88 return res;
94 spx_word32_t res; local
99 : "=d" (res)
102 return res;
108 spx_word32_t res; local
124 spx_word32_t res; local
141 spx_word32_t res; local
158 spx_word32_t res; local
    [all...]
  /external/webkit/WebKit/android/wds/client/
AdbConnection.cpp 89 int res = vsnprintf(buf, MAX_COMMAND_LENGTH, fmt, args); local
92 LOGV("Sending command: %04X%.*s", res, res, buf);
96 snprintf(payloadLen, sizeof(payloadLen), PAYLOAD_FORMAT, res);
105 if (send(m_fd, buf, res, 0) < 0) {
128 int res = recv(fd, msg, payloadLen, 0); local
129 if (res < 0) {
132 } else if (res != payloadLen) {
133 LOGE("Incorrect payload length %d - expected %d", res, payloadLen);
136 msg[res] = 0
151 int res = recv(m_fd, buf, sizeof(buf), 0); local
193 int res = recv(m_fd, lenStr, sizeof(lenStr) - 1, 0); local
    [all...]
  /dalvik/libcore/math/src/test/java/org/apache/harmony/math/tests/java/math/
BigIntegerXorTest.java 50 String res = "27384627835298756289327365"; local
54 assertTrue(res.equals(result.toString()));
69 String res = "-27384627835298756289327365"; local
73 assertTrue(res.equals(result.toString()));
88 String res = "27384627835298756289327365"; local
92 assertTrue(res.equals(result.toString()));
107 String res = "-27384627835298756289327365"; local
111 assertTrue(res.equals(result.toString()));
126 String res = "0"; local
130 assertTrue(res.equals(result.toString()))
145 String res = "1"; local
164 String res = "0"; local
183 String res = "71412358434940908477702819237626"; local
202 String res = "2837462783428374767845615168483972194300564226167553530"; local
221 String res = "2837462783428374767845615168483972194300564226167553530"; local
240 String res = "71412358434940908477702819237626"; local
259 String res = "2837462783428374767845615168483972194300564226167553530"; local
278 String res = "2837462783428374767845615168483972194300564226167553530"; local
297 String res = "-71412358434940908477702819237628"; local
316 String res = "-71412358434940908477702819237628"; local
335 String res = "-2837462783428374767845615168483972194300564226167553532"; local
354 String res = "-2837462783428374767845615168483972194300564226167553532"; local
373 String res = "-2837462783428374767845615168483972194300564226167553532"; local
392 String res = "-2837462783428374767845615168483972194300564226167553532"; local
    [all...]
  /packages/apps/Gallery3D/src/com/cooliris/media/
DetailMode.java 27 import android.content.res.Resources;
31 import com.cooliris.app.Res;
79 strings.add("1 " + resources.getString(Res.string.album_selected));
81 strings.add(Integer.toString(numOriginalSets) + " " + resources.getString(Res.string.albums_selected));
87 strings.add("1 " + resources.getString(Res.string.item_selected));
89 strings.add(Integer.toString(numItems) + " " + resources.getString(Res.string.items_selected));
102 strings.add(resources.getString(Res.string.start) + ": " + dateTimeFormat.format(new Date(minTimestamp)));
103 strings.add(resources.getString(Res.string.end) + ": " + dateTimeFormat.format(new Date(maxTimestamp)));
111 strings.add(resources.getString(Res.string.start) + ": " + dateTimeFormat.format(new Date(minTimestamp)));
112 strings.add(resources.getString(Res.string.end) + ": " + dateTimeFormat.format(new Date(maxTimestamp)))
    [all...]

Completed in 268 milliseconds

1 2 3 45 6 7 8 91011>>