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

<<11121314151617181920>>

  /bionic/libc/netbsd/resolv/
res_compat.c 83 __res_put_old_state(void *res)
85 (void)memcpy(&_res, res, sizeof(_res));
  /cts/tests/tests/provider/src/android/provider/cts/
ContactsContract_CommonDataKinds_EventTest.java 33 int res = Event.getTypeResource(type); local
34 assertTrue(res != 0);
ContactsContract_CommonDataKinds_PhoneTest.java 19 import android.content.res.Resources;
59 int res = Phone.getTypeLabelResource(type); local
60 assertTrue(res != 0);
62 String label = mResources.getString(res);
67 int res = Phone.getTypeLabelResource(Phone.TYPE_CUSTOM); local
68 assertTrue(res != 0);
ContactsContract_CommonDataKinds_RelationTest.java 19 import android.content.res.Resources;
53 int res = Relation.getTypeLabelResource(type); local
54 assertTrue(res != 0);
56 String label = mResources.getString(res);
61 int res = Relation.getTypeLabelResource(Relation.TYPE_CUSTOM); local
62 assertTrue(res != 0);
  /device/sample/apps/client/src/com/example/android/platform_library/client/
Client.java 35 int res = pl.getInt(false); local
39 tv.setText("Got from lib: " + res);
  /external/apache-xml/src/main/java/org/apache/xalan/res/
XSLMessages.java 21 package org.apache.xalan.res;
25 import org.apache.xpath.res.XPATHMessages;
  /external/eigen/test/eigen2/
gsl_helper.h 96 void convert(const MatrixType& m, gsl_matrix* &res)
98 // if (res)
99 // gsl_matrix_free(res);
100 res = gsl_matrix_alloc(m.rows(), m.cols());
103 gsl_matrix_set(res, i, j, m(i,j));
107 void convert(const gsl_matrix* m, MatrixType& res)
109 res.resize(int(m->size1), int(m->size2));
110 for (int i=0 ; i<res.rows() ; ++i)
111 for (int j=0 ; j<res.cols(); ++j)
112 res(i,j) = gsl_matrix_get(m,i,j)
    [all...]
  /external/emma/
Android.mk 16 LOCAL_JAVA_RESOURCE_DIRS := core/res pregenerated/res
32 LOCAL_JAVA_RESOURCE_DIRS := core/res pregenerated/res
  /external/iproute2/lib/
rt_names.c 155 static unsigned long res; local
160 *id = res;
171 res = i;
172 *id = res;
177 res = strtoul(arg, &end, 0);
178 if (!end || end == arg || *end || res > 255)
180 *id = res;
222 static unsigned long res; local
227 *id = res;
238 res = i
286 static unsigned long res; local
357 static unsigned long res; local
423 static unsigned long res; local
    [all...]
  /external/iproute2/tc/
p_tcp.c 29 int res = -1; local
30 return res;
p_udp.c 29 int res = -1; local
30 return res;
  /external/wpa_supplicant_8/src/drivers/
driver_common.c 13 void wpa_scan_results_free(struct wpa_scan_results *res)
17 if (res == NULL)
20 for (i = 0; i < res->num; i++)
21 os_free(res->res[i]);
22 os_free(res->res);
23 os_free(res);
  /frameworks/av/services/camera/libcameraservice/camera3/
Camera3Stream.cpp 156 status_t res; local
157 res = configureQueueLocked();
158 if (res != OK) {
160 __FUNCTION__, mId, strerror(-res), res);
162 return res;
165 res = registerBuffersLocked(hal3Device);
166 if (res != OK) {
168 __FUNCTION__, strerror(-res), res);
182 status_t res = getBufferLocked(buffer); local
195 status_t res = returnBufferLocked(buffer, timestamp); local
207 status_t res = getInputBufferLocked(buffer); local
219 status_t res = returnInputBufferLocked(buffer); local
262 status_t res = disconnectLocked(); local
274 status_t res; local
    [all...]
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/time/
CircleView.java 20 import android.content.res.Resources;
50 Resources res = context.getResources(); local
51 mWhite = res.getColor(R.color.white);
52 mBlack = res.getColor(R.color.numbers_text_color);
64 Resources res = context.getResources(); local
68 res.getString(R.string.circle_radius_multiplier_24HourMode));
71 res.getString(R.string.circle_radius_multiplier));
73 Float.parseFloat(res.getString(R.string.ampm_circle_radius_multiplier));
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
Vibrance.java 26 public void createTest(android.content.res.Resources res) {
  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
Vibrance.java 26 public void createTest(android.content.res.Resources res) {
  /external/libvpx/libvpx/vpx/src/
vpx_encoder.c 29 vpx_codec_err_t res; local
32 res = VPX_CODEC_ABI_MISMATCH;
34 res = VPX_CODEC_INVALID_PARAM;
36 res = VPX_CODEC_ABI_MISMATCH;
38 res = VPX_CODEC_INCAPABLE;
40 res = VPX_CODEC_INCAPABLE;
43 res = VPX_CODEC_INCAPABLE;
46 res = VPX_CODEC_INCAPABLE;
54 res = ctx->iface->init(ctx, NULL);
56 if (res)
77 vpx_codec_err_t res = 0; local
173 vpx_codec_err_t res; local
224 vpx_codec_err_t res = 0; local
398 vpx_codec_err_t res; local
    [all...]
  /cts/tests/tests/nativemedia/sl/src/
SLObjectCreationTest.cpp 46 bool IsOk(SLresult res) {
47 if (SL_RESULT_SUCCESS != res) {
48 const char *str = slesutResultToString(res);
51 fprintf(stderr, "IsOk failure: %s (0x%x), exiting\n", str, res);
61 SLresult res; member in class:SLObjectCreationTest
83 res = SL_RESULT_UNKNOWN_ERROR;
89 res = slCreateEngine(&engineObj, 0, NULL, 0, NULL, NULL);
90 ASSERT_TRUE(IsOk(res));
91 res = (*engineObj)->Realize(engineObj, SL_BOOLEAN_FALSE);
92 ASSERT_TRUE(IsOk(res));
    [all...]
  /external/apache-harmony/x-net/src/test/impl/java.injected/javax/net/ssl/
DefaultSSLServerSocketFactoryTest.java 78 String[] res = f.getDefaultCipherSuites(); local
79 if (res == null || res.length != 0) {
86 String[] res = f.getSupportedCipherSuites(); local
87 if (res == null || res.length != 0) {
DefaultSSLSocketFactoryTest.java 97 String[] res = f.getDefaultCipherSuites(); local
98 if (res == null || res.length != 0) {
105 String[] res = f.getSupportedCipherSuites(); local
106 if (res == null || res.length != 0) {
  /external/elfutils/libebl/
eblcorenotetypename.c 66 const char *res = ebl->core_note_type_name (type, buf, len); local
68 if (res == NULL)
94 res = knowntypes[type];
98 #define KNOWNSTYPE(name) case NT_##name: res = #name; break
109 res = buf;
113 return res;
  /external/libxslt/libxslt/
imports.h 27 #define XSLT_GET_IMPORT_PTR(res, style, name) { \
29 res = NULL; \
31 if (st->name != NULL) { res = st->name; break; } \
40 #define XSLT_GET_IMPORT_INT(res, style, name) { \
42 res = -1; \
44 if (st->name != -1) { res = st->name; break; } \
  /external/speex/libspeex/
cb_search_arm4.h 56 spx_word16_t *res;
57 res = resp+j;
85 spx_word16_t *res;
86 res = resp+j;
122 *res = resj0;
123 res += subvect_size;
124 *res = resj1;
125 res += subvect_size;
126 *res = resj2;
127 res += subvect_size
    [all...]
  /external/webkit/Tools/iExploder/iexploder-1.3.2/htdocs/
webserver.rb 48 def do_GET(req, res)
57 res['Content-Type'] = 'text/html'
58 res.body = ie.buildPage()
63 def do_GET(req, res)
64 res['Content-Type'] = 'text/html'
65 res.body = File.open("index.html").readlines.join("\n")
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/tsp/
TSTInfo.java 103 StringBuilder res = new StringBuilder(); local
104 res.append("-- TSTInfo:");
105 res.append("\nversion: ");
106 res.append(version);
107 res.append("\npolicy: ");
108 res.append(policy);
109 res.append("\nmessageImprint: ");
110 res.append(messageImprint);
111 res.append("\nserialNumber: ");
112 res.append(serialNumber)
    [all...]

Completed in 856 milliseconds

<<11121314151617181920>>