HomeSort by relevance Sort by last modified time
    Searched refs:res (Results 276 - 300 of 4212) sorted by null

<<11121314151617181920>>

  /frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
Contrast.java 25 public void createTest(android.content.res.Resources res) {
Exposure.java 26 public void createTest(android.content.res.Resources res) {
Shadows.java 23 public void createTest(android.content.res.Resources res) {
Vibrance.java 22 public void createTest(android.content.res.Resources res) {
  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
BWFilter.java 25 public void createTest(android.content.res.Resources res) {
Contrast.java 26 public void createTest(android.content.res.Resources res) {
Exposure.java 26 public void createTest(android.content.res.Resources res) {
Shadows.java 26 public void createTest(android.content.res.Resources res) {
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
AccessDescription.java 65 StringBuilder res = new StringBuilder(); local
66 res.append("\n-- AccessDescription:");
67 res.append("\naccessMethod: ");
68 res.append(accessMethod);
69 res.append("\naccessLocation: ");
70 res.append(accessLocation);
71 res.append("\n-- AccessDescription END\n");
72 return res.toString();
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/tsp/
TimeStampResp.java 49 StringBuilder res = new StringBuilder(); local
50 res.append("-- TimeStampResp:");
51 res.append("\nstatus: ");
52 res.append(status);
53 res.append("\ntimeStampToken: ");
54 res.append(timeStampToken);
55 res.append("\n-- TimeStampResp End\n");
56 return res.toString();
  /packages/apps/Settings/src/com/android/settings/widget/
ChartAxis.java 19 import android.content.res.Resources;
42 public long buildLabel(Resources res, SpannableStringBuilder builder, long value);
  /development/ndk/platforms/android-14/samples/native-media/jni/
native-media-jni.c 112 XAresult res; local
128 res = (*playerBQItf)->Clear(playerBQItf);
129 assert(XA_RESULT_SUCCESS == res);
173 res = (*caller)->Enqueue(caller, NULL /*pBufferContext*/,
178 assert(XA_RESULT_SUCCESS == res);
186 res = (*caller)->Enqueue(caller, (void *)&kEosBufferCntxt /*pBufferContext*/,
190 assert(XA_RESULT_SUCCESS == res);
219 XAresult res; local
221 res = (*caller)->QueryStreamType(caller, streamIndex, &domain);
222 assert(XA_RESULT_SUCCESS == res);
247 XAresult res; local
303 XAresult res; local
332 XAresult res; local
440 XAresult res; local
506 XAresult res; local
    [all...]
  /device/generic/goldfish/opengl/shared/OpenglCodecCommon/
SocketStream.cpp 95 size_t res = size;
98 while (res > 0) {
99 ssize_t stat = ::send(m_sock, (const char *)buffer + (size - res), res, 0);
107 res -= stat;
120 size_t res = len; local
121 while (res > 0) {
122 ssize_t stat = ::recv(m_sock, (char *)(buf) + len - res, res, 0);
124 res -= stat
157 int res = 0; local
    [all...]
  /packages/apps/Settings/src/com/android/settings/
AccountPreference.java 92 int res; local
95 res = R.string.sync_enabled;
98 res = R.string.sync_disabled;
101 res = R.string.sync_error;
104 res = R.string.sync_in_progress;
107 res = R.string.sync_error;
110 return res;
114 int res; local
117 res = R.drawable.ic_sync_green_holo;
120 res = R.drawable.ic_sync_grey_holo
    [all...]
  /sdk/emulator/opengl/shared/OpenglCodecCommon/
SocketStream.cpp 95 size_t res = size;
98 while (res > 0) {
99 ssize_t stat = ::send(m_sock, (const char *)buffer + (size - res), res, 0);
107 res -= stat;
120 size_t res = len; local
121 while (res > 0) {
122 ssize_t stat = ::recv(m_sock, (char *)(buf) + len - res, res, 0);
124 res -= stat
157 int res = 0; local
    [all...]
  /external/dropbear/libtommath/
bn_mp_and.c 22 int res, ix, px; local
26 if ((res = mp_init_copy (&t, a)) != MP_OKAY) {
27 return res;
32 if ((res = mp_init_copy (&t, b)) != MP_OKAY) {
33 return res;
bn_mp_or.c 21 int res, ix, px; local
25 if ((res = mp_init_copy (&t, a)) != MP_OKAY) {
26 return res;
31 if ((res = mp_init_copy (&t, b)) != MP_OKAY) {
32 return res;
bn_mp_prime_is_prime.c 28 int ix, err, res; local
47 if ((err = mp_prime_is_divisible (a, &res)) != MP_OKAY) {
52 if (res == MP_YES) {
65 if ((err = mp_prime_miller_rabin (a, &b, &res)) != MP_OKAY) {
69 if (res == MP_NO) {
bn_mp_radix_size.c 21 int res, digs; local
52 if ((res = mp_init_copy (&t, a)) != MP_OKAY) {
53 return res;
61 if ((res = mp_div_d (&t, (mp_digit) radix, &t, &d)) != MP_OKAY) {
63 return res;
bn_mp_read_radix.c 21 int y, res, neg; local
63 if ((res = mp_mul_d (a, (mp_digit) radix, a)) != MP_OKAY) {
64 return res;
66 if ((res = mp_add_d (a, (mp_digit) y, a)) != MP_OKAY) {
67 return res;
bn_mp_toradix.c 21 int res, digs; local
38 if ((res = mp_init_copy (&t, a)) != MP_OKAY) {
39 return res;
51 if ((res = mp_div_d (&t, (mp_digit) radix, &t, &d)) != MP_OKAY) {
53 return res;
bn_mp_toradix_n.c 24 int res, digs; local
41 if ((res = mp_init_copy (&t, a)) != MP_OKAY) {
42 return res;
64 if ((res = mp_div_d (&t, (mp_digit) radix, &t, &d)) != MP_OKAY) {
66 return res;
bn_mp_xor.c 22 int res, ix, px; local
26 if ((res = mp_init_copy (&t, a)) != MP_OKAY) {
27 return res;
32 if ((res = mp_init_copy (&t, b)) != MP_OKAY) {
33 return res;
bn_s_mp_exptmod.c 25 mp_int M[TAB_SIZE], res, mu; local
133 if ((err = mp_init (&res)) != MP_OKAY) {
136 mp_set (&res, 1);
173 if ((err = mp_sqr (&res, &res)) != MP_OKAY) {
176 if ((err = redux (&res, P, &mu)) != MP_OKAY) {
190 if ((err = mp_sqr (&res, &res)) != MP_OKAY) {
193 if ((err = redux (&res, P, &mu)) != MP_OKAY) {
199 if ((err = mp_mul (&res, &M[bitbuf], &res)) != MP_OKAY)
    [all...]
  /external/elfutils/libdw/
dwarf_getsrcfiles.c 67 int res = -1; local
78 res = INTUSE(dwarf_getsrclines) (cudie, &lines, &nlines);
82 res = 0;
84 if (likely (res == 0))
94 return res;

Completed in 875 milliseconds

<<11121314151617181920>>