OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:xpp
(Results
1 - 2
of
2
) sorted by null
/development/samples/RSSReader/src/com/example/android/rssreader/
RssReader.java
485
XmlPullParser
xpp
= Xml.newPullParser();
local
486
xpp
.setInput(in, null); // null = default to UTF-8
492
eventType =
xpp
.getEventType();
495
String tag =
xpp
.getName();
499
xpp
.next(); // Skip to next element -- assume text is directly inside the tag
500
title =
xpp
.getText();
502
xpp
.next();
503
link =
xpp
.getText();
505
xpp
.next();
506
description =
xpp
.getText()
[
all
...]
/external/mksh/src/
eval.c
1265
char **
xpp
, /* ptr to dest end */
1271
char *xp = *
xpp
;
1349
*
xpp
= xp;
1350
globit(xs,
xpp
, np, wp, check);
1358
/* xp = *
xpp
; copy_non_glob() may have re-alloc'd xs */
[
all
...]
Completed in 37 milliseconds