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

1 2 3 4 5 6 7 891011>>

  /external/libffi/testsuite/libffi.call/
cls_ushort.c 28 unsigned short res; local
45 res = (*((cls_ret_ushort)pcl))(65535);
47 printf("res: %d\n",res);
  /external/ppp/pppd/plugins/radius/
lock.c 19 int res; local
27 res = fcntl(fd, F_SETLK, &fl);
29 if ((res == -1) && (errno == EAGAIN))
32 return res;
  /frameworks/base/core/res/res/values-en-rGB/
strings.xml 2 <resources xmlns:android="http://schemas.android.com/apk/res/android"
  /frameworks/base/core/tests/coretests/res/raw/
install_app1_cert1_cert2 
install_app1_cert3_cert4 
install_app2_cert1_cert2 
  /frameworks/base/tests/appwidgets/AppWidgetProviderTest/res/xml/
appwidget_info.xml 1 <appwidget-provider xmlns:android="http://schemas.android.com/apk/res/android"
  /ndk/samples/san-angeles/res/layout/
main.xml 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  /packages/apps/Contacts/res/anim/
quickcontact.xml 4 xmlns:android="http://schemas.android.com/apk/res/android"
  /packages/apps/Contacts/res/layout/
vcardshare_main.xml 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  /packages/apps/Contacts/tests/res/xml/
iconset.xml 2 xmlns:android="http://schemas.android.com/apk/res/android">
  /packages/apps/DeskClock/res/anim/
dim.xml 1 <alpha xmlns:android="http://schemas.android.com/apk/res/android"
undim.html 1 <alpha xmlns:android="http://schemas.android.com/apk/res/android"
  /packages/experimental/BugReportSender/res/layout/
bugreport_preview.xml 2 xmlns:android="http://schemas.android.com/apk/res/android"
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/templates/
layout.template 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  /sdk/layoutopt/samples/
compound.xml 4 xmlns:android="http://schemas.android.com/apk/res/android"
has_children.xml 4 xmlns:android="http://schemas.android.com/apk/res/android"
scrolling.xml 4 xmlns:android="http://schemas.android.com/apk/res/android"
useless.xml 4 xmlns:android="http://schemas.android.com/apk/res/android"
wrong_dimension.xml 4 xmlns:android="http://schemas.android.com/apk/res/android"
  /sdk/templates/
layout.template 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  /external/dropbear/libtommath/
bn_mp_mul_2d.c 22 int res; local
26 if ((res = mp_copy (a, c)) != MP_OKAY) {
27 return res;
32 if ((res = mp_grow (c, c->used + b / DIGIT_BIT + 1)) != MP_OKAY) {
33 return res;
39 if ((res = mp_lshd (c, b / DIGIT_BIT)) != MP_OKAY) {
40 return res;
  /frameworks/base/awt/javax/imageio/stream/
MemoryCacheImageInputStream.java 70 int res = ramc.getData(streamPos); local
71 if (res >= 0) {
74 return res;
86 int res = ramc.getData(b, off, len, streamPos); local
87 if (res > 0) {
88 streamPos += res;
90 return res;
MemoryCacheImageOutputStream.java 77 int res = ramc.getData(streamPos); local
78 if (res >= 0) {
81 return res;
88 int res = ramc.getData(b, off, len, streamPos); local
89 if (res > 0) {
90 streamPos += res;
92 return res;
  /packages/apps/Camera/src/com/android/camera/
IconListPreference.java 20 import android.content.res.Resources;
21 import android.content.res.TypedArray;
38 Resources res = context.getResources(); local
39 mIconIds = getIconIds(res, a.getResourceId(
41 mLargeIconIds = getIconIds(res, a.getResourceId(
54 private int[] getIconIds(Resources res, int iconsRes) {
56 TypedArray array = res.obtainTypedArray(iconsRes);

Completed in 313 milliseconds

1 2 3 4 5 6 7 891011>>