Home
last modified time | relevance | path

Searched refs:res (Results 1 – 25 of 85) sorted by relevance

1234

/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/
Dnavigation1-expected-navigate4.txt3 data/res/values-en-rGB/strings.xml
5 data/res/values/strings.xml
7 data/res/values-ar/strings.xml
9 data/res/values-bg/strings.xml
11 data/res/values-ca/strings.xml
13 data/res/values-cs/strings.xml
15 data/res/values-da/strings.xml
17 data/res/values-de/strings.xml
19 data/res/values-el/strings.xml
21 data/res/values-es/strings.xml
[all …]
Dnewstyles6-expected-extract5.diff5 + <resources xmlns:android="http://schemas.android.com/apk/res/android">
Dnewstyles5-expected-extract4.diff5 + <resources xmlns:android="http://schemas.android.com/apk/res/android">
Dnewstyles-expected-extract1.diff5 + <resources xmlns:android="http://schemas.android.com/apk/res/android">
Dnewstyles4-expected-extract1d.diff5 + <resources xmlns:android="http://schemas.android.com/apk/res/android">
Dnewstyles4-expected-extract3.diff5 + <resources xmlns:android="http://schemas.android.com/apk/res/android">
Dnewstyles2-expected-extract1b.diff5 + <resources xmlns:android="http://schemas.android.com/apk/res/android">
Dnewstyles3-expected-extract1c.diff5 + <resources xmlns:android="http://schemas.android.com/apk/res/android">
Dnewstyles8-expected-extract7.diff5 + <resources xmlns:android="http://schemas.android.com/apk/res/android">
/sdk/emulator/opengl/shared/OpenglCodecCommon/
DSocketStream.cpp95 size_t res = size; in writeFully() local
98 while (res > 0) { in writeFully()
99 ssize_t stat = ::send(m_sock, (const char *)buffer + (size - res), res, 0); in writeFully()
107 res -= stat; in writeFully()
120 size_t res = len; in readFully() local
121 while (res > 0) { in readFully()
122 ssize_t stat = ::recv(m_sock, (char *)(buf) + len - res, res, 0); in readFully()
124 res -= stat; in readFully()
157 int res = 0; in recv() local
159 res = ::recv(m_sock, (char *)buf, len, 0); in recv()
[all …]
DWin32PipeStream.cpp179 size_t res = size; in commitBuffer() local
182 while (res > 0) { in commitBuffer()
184 if (! ::WriteFile(m_pipe, (const char *)m_buf + (size - res), res, &written, NULL)) { in commitBuffer()
189 res -= written; in commitBuffer()
205 size_t res = len; in readFully() local
206 while (res > 0) { in readFully()
208 … if (! ::ReadFile(m_pipe, (char *)buf + (len - res), res, &readcount, NULL) || readcount == 0) { in readFully()
212 res -= readcount; in readFully()
/sdk/apps/NotificationStudio/src/com/android/notificationstudio/editor/
DBitmapEditor.java19 import android.content.res.Resources;
32 protected int getIconSize(Resources res) { in getIconSize() argument
33 return res.getDimensionPixelSize(R.dimen.editor_icon_size_large); in getIconSize()
DIconEditor.java19 import android.content.res.Resources;
103 protected int getIconSize(Resources res) { in getIconSize() argument
104 return res.getDimensionPixelSize(R.dimen.editor_icon_size_small); in getIconSize()
/sdk/templates/other/CustomView/root/res/layout/
Dsample.xml.ftl2 xmlns:android="http://schemas.android.com/apk/res/android"
4 xmlns:app="http://schemas.android.com/apk/res/${packageName}"
6 xmlns:app="http://schemas.android.com/apk/res-auto"
/sdk/templates/activities/MasterDetailFlow/root/res/layout/
Dactivity_content_twopane.xml.ftl1 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
15 master/detail flow. See res/values-large/refs.xml and
16 res/values-sw600dp/refs.xml for an example of layout aliases
/sdk/templates/projects/NewAndroidApplication/root/res/values/
Dstyles.xml.ftl5 by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
10 res/values-vXX/styles.xml, while customizations related to
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/resources/platform/
DAttrsXmlParser.java166 Node res = doc.getFirstChild(); in preload() local
167 while (res != null && in preload()
168 res.getNodeType() != Node.ELEMENT_NODE && in preload()
169 !res.getNodeName().equals("resources")) { //$NON-NLS-1$ in preload()
170 res = res.getNextSibling(); in preload()
173 if (res == null) { in preload()
179 parseResources(res); in preload()
278 private void parseResources(Node res) { in parseResources() argument
283 for (Node node = res.getFirstChild(); node != null; node = node.getNextSibling()) { in parseResources()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/io/
DIFolderWrapper.java171 for (IResource res : members) { in list()
172 if (filter.accept(this, res.getName())) { in list()
173 list.add(res.getName()); in list()
/sdk/templates/other/Notification/root/src/app_package/
DNotificationHelper.java.ftl9 import android.content.res.Resources;
51 final Resources res = context.getResources();
61 final Bitmap picture = BitmapFactory.decodeResource(res, R.drawable.example_picture);
71 final String title = res.getString(
73 final String text = res.getString(
160 res.getString(R.string.action_share),
170 res.getString(R.string.action_reply),
/sdk/templates/other/Notification/root/
DAndroidManifest.xml.ftl1 <manifest xmlns:android="http://schemas.android.com/apk/res/android" >
/sdk/templates/other/Service/root/
DAndroidManifest.xml.ftl1 <manifest xmlns:android="http://schemas.android.com/apk/res/android" >
/sdk/templates/other/BroadcastReceiver/root/
DAndroidManifest.xml.ftl1 <manifest xmlns:android="http://schemas.android.com/apk/res/android" >
/sdk/templates/other/ContentProvider/root/
DAndroidManifest.xml.ftl1 <manifest xmlns:android="http://schemas.android.com/apk/res/android" >
/sdk/templates/activities/BlankActivity/root/res/menu/
Dmain.xml.ftl1 <menu xmlns:android="http://schemas.android.com/apk/res/android">
/sdk/emulator/opengl/host/libs/Translator/GLcommon/
DTextureUtils.cpp67 int res = etc1_decode_image((const etc1_byte*)data, pOut, width, height, 3, bpr); in doCompressedTexImage2D() local
68 SET_ERROR_IF(res!=0, GL_INVALID_VALUE); in doCompressedTexImage2D()

1234