Home
last modified time | relevance | path

Searched refs:Reader (Results 1 – 25 of 42) sorted by relevance

12

/packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
Dreadertest.cpp41 TEST(Reader, ParseTrue) { in TEST() argument
44 Reader reader; in TEST()
49 TEST(Reader, ParseFalse) { in TEST() argument
52 Reader reader; in TEST()
102 TEST(Reader, ParseNumber_Integer) { in TEST() argument
107 Reader reader; \ in TEST()
182 Reader reader; \ in TestParseDouble()
308 Reader reader; // Reusing reader to prevent heap allocation in TestParseDouble()
350 Reader reader; in TestParseDouble()
371 TEST(Reader, ParseNumber_NormalPrecisionDouble) { in TEST() argument
[all …]
Dprettywritertest.cpp45 Reader reader; in TEST()
55 Reader reader; in TEST()
131 Reader reader; in TEST()
145 Reader reader; in TEST()
Dnamespacetest.cpp45 typedef RAPIDJSON_NAMESPACE::Reader Reader; in TEST() typedef
54 Reader reader; in TEST()
Ddocumenttest.cpp146 Reader reader; in TEST()
185 Reader reader; in TEST()
428 typedef GenericReader<Encoding, Encoding, Allocator> Reader;
429 Reader reader(&a.GetAllocator());
525 typedef GenericReader<Encoding, Encoding, Allocator> Reader;
526 Reader reader(&a.GetAllocator());
Dwritertest.cpp29 Reader reader; in TEST()
42 Reader reader; \
128 Reader reader; in TEST()
173 Reader reader; in TEST()
/packages/apps/Test/connectivity/sl4n/rapidjson/doc/
Dsax.md5 In RapidJSON, `Reader` (typedef of `GenericReader<...>`) is the SAX-style parser for JSON, and `Wri…
9 # Reader {#Reader}
11 `Reader` parses a JSON from a stream. While it reads characters from the stream, it analyze the cha…
27 While a `Reader` parses this JSON, it publishes the following events to the handler sequentially:
88 Reader reader;
94 Note that, RapidJSON uses template to statically bind the `Reader` type and the handler type, inste…
98 …to implement a handler, which consumes the events (function calls) from `Reader`. The handler must…
118 `Null()` is called when the `Reader` encounters a JSON null value.
120 `Bool(bool)` is called when the `Reader` encounters a JSON true or false value.
122 When the `Reader` encounters a JSON number, it chooses a suitable C++ type mapping. And then it cal…
[all …]
/packages/apps/UnifiedEmail/src/org/apache/commons/io/
DIOUtils.java30 import java.io.Reader;
139 public static void closeQuietly(Reader input) { in closeQuietly()
234 public static byte[] toByteArray(Reader input) throws IOException { in toByteArray()
257 public static byte[] toByteArray(Reader input, String encoding) in toByteArray()
338 public static char[] toCharArray(Reader input) throws IOException { in toCharArray()
398 public static String toString(Reader input) throws IOException { in toString()
502 public static List<String> readLines(Reader input) throws IOException { in readLines()
542 public static LineIterator lineIterator(Reader reader) { in lineIterator()
578 Reader reader = null; in lineIterator()
1106 public static int copy(Reader input, Writer output) throws IOException { in copy()
[all …]
DCopyUtils.java25 import java.io.Reader;
219 Reader input, in copy()
284 Reader input, in copy()
DLineIterator.java21 import java.io.Reader;
68 public LineIterator(final Reader reader) throws IllegalArgumentException { in LineIterator()
/packages/apps/Test/connectivity/sl4n/rapidjson/test/perftest/
Drapidjsontest.cpp70 Reader reader; in TEST_F()
80 Reader reader; in TEST_F()
89 Reader reader; in TEST_F()
98 Reader reader; in TEST_F()
107 Reader reader; in TEST_F()
117 Reader reader; in TEST_F()
126 Reader reader; in TEST_F()
354 Reader reader; in TEST_F()
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/parser/
DSimpleCharStream.java40 protected java.io.Reader inputStream;
257 public SimpleCharStream(java.io.Reader dstream, int startline, in SimpleCharStream()
270 public SimpleCharStream(java.io.Reader dstream, int startline, in SimpleCharStream()
276 public SimpleCharStream(java.io.Reader dstream) in SimpleCharStream()
280 public void ReInit(java.io.Reader dstream, int startline, in ReInit()
299 public void ReInit(java.io.Reader dstream, int startline, in ReInit()
305 public void ReInit(java.io.Reader dstream) in ReInit()
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/contenttype/parser/
DSimpleCharStream.java40 protected java.io.Reader inputStream;
257 public SimpleCharStream(java.io.Reader dstream, int startline, in SimpleCharStream()
270 public SimpleCharStream(java.io.Reader dstream, int startline, in SimpleCharStream()
276 public SimpleCharStream(java.io.Reader dstream) in SimpleCharStream()
280 public void ReInit(java.io.Reader dstream, int startline, in ReInit()
299 public void ReInit(java.io.Reader dstream, int startline, in ReInit()
305 public void ReInit(java.io.Reader dstream) in ReInit()
DContentTypeParser.java153 public ContentTypeParser(java.io.Reader stream) { in ContentTypeParser()
162 public void ReInit(java.io.Reader stream) { in ReInit()
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/datetime/parser/
DSimpleCharStream.java40 protected java.io.Reader inputStream;
257 public SimpleCharStream(java.io.Reader dstream, int startline, in SimpleCharStream()
270 public SimpleCharStream(java.io.Reader dstream, int startline, in SimpleCharStream()
276 public SimpleCharStream(java.io.Reader dstream) in SimpleCharStream()
280 public void ReInit(java.io.Reader dstream, int startline, in ReInit()
299 public void ReInit(java.io.Reader dstream, int startline, in ReInit()
305 public void ReInit(java.io.Reader dstream) in ReInit()
/packages/services/Telephony/src/com/android/phone/vvm/
DVisualVoicemailSmsFilterConfig.java82 Reader reader = new Reader(context, packageName, subId); in getVisualVoicemailSmsFilterSettings()
150 private static class Reader { class in VisualVoicemailSmsFilterConfig
155 public Reader(Context context, String packageName, int subId) { in Reader() method in VisualVoicemailSmsFilterConfig.Reader
/packages/apps/Test/connectivity/sl4n/rapidjson/doc/diagram/
Darchitecture.dot21 Reader -> Writer [style=invis]
46 Reader -> Handler [label="calls"]
48 Document -> Reader [label="uses"]
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/message/
DTextBody.java23 import java.io.Reader;
41 Reader getReader() throws IOException; in getReader()
DMemoryTextBody.java28 import java.io.Reader;
73 public Reader getReader() throws UnsupportedEncodingException, IOException { in getReader()
DTempFileTextBody.java26 import java.io.Reader;
72 public Reader getReader() throws UnsupportedEncodingException, IOException { in getReader()
/packages/apps/UnifiedEmail/src/org/apache/commons/io/input/
DProxyReader.java21 import java.io.Reader;
42 public ProxyReader(Reader proxy) { in ProxyReader()
DCharSequenceReader.java19 import java.io.Reader;
31 public class CharSequenceReader extends Reader implements Serializable {
DNullReader.java21 import java.io.Reader;
63 public class NullReader extends Reader {
/packages/services/Car/service/src/com/android/car/
DJsonReaderImpl.java27 import java.io.Reader;
51 try (Reader reader = new BufferedReader(new InputStreamReader(is, JSON_FILE_ENCODING))) { in jsonFileToString()
/packages/providers/DownloadProvider/src/com/android/providers/downloads/
DDownloadInfo.java56 public static class Reader { class in DownloadInfo
60 public Reader(ContentResolver resolver, Cursor cursor) { in Reader() method in DownloadInfo.Reader
207 final DownloadInfo.Reader reader = new DownloadInfo.Reader(resolver, cursor); in queryDownloadInfo()
DDownloadReceiver.java136 final DownloadInfo.Reader reader = new DownloadInfo.Reader(resolver, cursor); in handleBootCompleted()

12