OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:xrp
(Results
1 - 4
of
4
) sorted by null
/packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
XmlKeyboardLoader.java
303
KeyCommonAttributes(XmlResourceParser
xrp
) {
304
mXrp =
xrp
;
332
XmlResourceParser
xrp
= r.getXml(resourceId);
local
334
KeyCommonAttributes attrDef = new KeyCommonAttributes(
xrp
);
335
KeyCommonAttributes attrKey = new KeyCommonAttributes(
xrp
);
343
mXmlEventType =
xrp
.next();
347
String attribute =
xrp
.getName();
349
Drawable skbBg = getDrawable(
xrp
, XMLATTR_SKB_BG, null);
350
Drawable balloonBg = getDrawable(
xrp
,
352
Drawable popupBg = getDrawable(
xrp
, XMLATTR_POPUP_BG
433
XmlResourceParser
xrp
= mContext.getResources().getXml(resourceId);
local
700
XmlResourceParser
xrp
= attrKey.mXrp;
local
[
all
...]
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
SymbolList.java
121
* @param
xrp
XML resource
126
private String getXmlAttribute(XmlResourceParser
xrp
, String name) {
127
int resId =
xrp
.getAttributeResourceValue(null, name, 0);
129
return
xrp
.getAttributeValue(null, name);
144
XmlResourceParser
xrp
= mWnn.getResources().getXml(id);
local
147
while ((xmlEventType =
xrp
.next()) != XmlResourceParser.END_DOCUMENT) {
149
String attribute =
xrp
.getName();
151
String value = getXmlAttribute(
xrp
, "value");
158
xrp
.close();
/packages/apps/Settings/src/com/android/settings/
ZonePicker.java
224
XmlResourceParser
xrp
= context.getResources().getXml(R.xml.timezones);
local
225
while (
xrp
.next() != XmlResourceParser.START_TAG)
227
xrp
.next();
228
while (
xrp
.getEventType() != XmlResourceParser.END_TAG) {
229
while (
xrp
.getEventType() != XmlResourceParser.START_TAG) {
230
if (
xrp
.getEventType() == XmlResourceParser.END_DOCUMENT) {
233
xrp
.next();
235
if (
xrp
.getName().equals(XMLTAG_TIMEZONE)) {
236
String id =
xrp
.getAttributeValue(0);
237
String displayName =
xrp
.nextText()
[
all
...]
/packages/wallpapers/Basic/src/com/android/wallpaper/polarclock/
PolarClockWallpaper.java
60
public static ClockPalette parseXmlPaletteTag(XmlResourceParser
xrp
) {
61
String kind =
xrp
.getAttributeValue(null, "kind");
63
return CyclingClockPalette.parseXmlPaletteTag(
xrp
);
65
return FixedClockPalette.parseXmlPaletteTag(
xrp
);
114
public static ClockPalette parseXmlPaletteTag(XmlResourceParser
xrp
) {
116
pal.mId =
xrp
.getAttributeValue(null, "id");
118
if ((val =
xrp
.getAttributeValue(null, "background")) != null)
120
if ((val =
xrp
.getAttributeValue(null, "second")) != null)
122
if ((val =
xrp
.getAttributeValue(null, "minute")) != null)
124
if ((val =
xrp
.getAttributeValue(null, "hour")) != null
324
XmlResourceParser
xrp
= getResources().getXml(R.xml.polar_clock_palettes);
local
[
all
...]
Completed in 141 milliseconds