Searched defs:reader (Results 1 - 25 of 347) sorted by relevance

1234567891011>>

/external/chromium_org/content/common/gpu/media/
H A Dh264_bit_reader_unittest.cc12 H264BitReader reader; local
16 EXPECT_TRUE(reader.Initialize(rbsp, sizeof(rbsp)));
18 EXPECT_TRUE(reader.ReadBits(1, &dummy));
20 EXPECT_EQ(reader.NumBitsLeft(), 47);
21 EXPECT_TRUE(reader.HasMoreRBSPData());
23 EXPECT_TRUE(reader.ReadBits(8, &dummy));
25 EXPECT_EQ(reader.NumBitsLeft(), 39);
26 EXPECT_TRUE(reader.HasMoreRBSPData());
28 EXPECT_TRUE(reader.ReadBits(31, &dummy));
30 EXPECT_EQ(reader
45 H264BitReader reader; local
60 H264BitReader reader; local
[all...]
/external/chromium_org/chrome/utility/media_galleries/
H A Ditunes_pref_parser_win.cc16 XmlReader reader; local
19 if (!reader.Load(pref_xml_data))
23 if (!SeekToNodeAtCurrentDepth(&reader, "plist"))
25 if (!reader.Read())
28 if (!SeekToNodeAtCurrentDepth(&reader, "dict"))
31 if (!SeekInDict(&reader, "User Preferences"))
34 if (!SeekToNodeAtCurrentDepth(&reader, "dict"))
37 if (!SeekInDict(&reader, "iTunes Library XML Location:1"))
40 if (!SeekToNodeAtCurrentDepth(&reader, "data"))
44 if (!reader
[all...]
/external/chromium_org/native_client_sdk/src/examples/api/var_array_buffer/
H A Dexample.js14 var reader = new FileReader();
15 reader.onload = function(load_event) {
19 reader.readAsArrayBuffer(file);
/external/chromium_org/chrome/common/media_galleries/
H A Ditunes_xml_utils.cc14 bool SkipToNextElement(XmlReader* reader) { argument
15 if (!reader->SkipToElement()) {
18 if (!reader->Read() || !reader->SkipToElement())
24 bool SeekToNodeAtCurrentDepth(XmlReader* reader, const std::string& name) { argument
25 int depth = reader->Depth();
27 if (!SkipToNextElement(reader) || reader->Depth() < depth)
29 DCHECK_EQ(depth, reader->Depth());
30 if (reader
37 SeekInDict(XmlReader* reader, const std::string& key) argument
[all...]
/external/chromium_org/chrome/common/safe_browsing/
H A Dzip_analyzer.cc15 zip::ZipReader reader; local
16 if (!reader.OpenFromPlatformFile(zip_file)) {
22 for (; reader.HasMore(); advanced = reader.AdvanceToNextEntry()) {
27 if (!reader.OpenCurrentEntryInZip()) {
31 const base::FilePath& file = reader.current_entry_info()->file_path();
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dtokiter.h57 // return reader.describePosition() + ':' + (lastpos+1);
63 TextFile* reader; // alias member in class:TokenIterator
/external/icu4c/test/intltest/
H A Dtokiter.h57 // return reader.describePosition() + ':' + (lastpos+1);
63 TextFile* reader; // alias member in class:TokenIterator
/external/proguard/src/proguard/
H A DFileWordReader.java35 private LineNumberReader reader; field in class:FileWordReader
46 this.reader = new LineNumberReader(
60 this.reader = new LineNumberReader(
70 return reader.readLine();
76 return "line " + reader.getLineNumber() + " of file '" + name + "'";
84 if (reader != null)
86 reader.close();
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
H A DIOExtensions.cs45 public static void close( this TextReader reader )
47 reader.Close();
81 public static int read( this TextReader reader, char[] buffer, int index, int count ) argument
83 return reader.Read( buffer, index, count );
87 public static string readLine( this TextReader reader )
89 return reader.ReadLine();
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DIOExtensions.cs43 public static void close( this TextReader reader )
45 reader.Close();
79 public static int read( this TextReader reader, char[] buffer, int index, int count ) argument
81 return reader.Read( buffer, index, count );
85 public static string readLine( this TextReader reader )
87 return reader.ReadLine();
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DXMLReaderManager.java68 * Retrieves the singleton reader manager
76 * XMLReader, if the existing reader is in use. When the caller no
77 * longer needs the reader, it must release it with a call to
81 XMLReader reader;
94 // If the cached reader for this thread is in use, construct a new
95 // one; otherwise, return the cached reader.
96 reader = (XMLReader) m_readers.get();
97 boolean threadHasReader = (reader != null);
98 if (!threadHasReader || m_inUse.get(reader) == Boolean.TRUE) {
103 // TransformerFactory creates a reader vi
154 releaseXMLReader(XMLReader reader) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/pem/
H A DPemReader.java17 public PemReader(Reader reader) argument
19 super(reader);
/external/chromium_org/media/mp4/
H A Dcenc.cc18 bool FrameCENCInfo::Parse(int iv_size, BufferReader* reader) { argument
25 RCHECK(reader->Read1(&iv[i]));
27 if (!reader->HasBytes(1)) return true;
30 RCHECK(reader->Read2(&subsample_count) &&
31 reader->HasBytes(subsample_count * kEntrySize));
37 RCHECK(reader->Read2(&clear_bytes) &&
38 reader->Read4(&cypher_bytes));
/external/chromium_org/net/base/
H A Dnet_log_logger_unittest.cc40 base::JSONReader reader; local
41 scoped_ptr<base::Value> root(reader.ReadToValue(input));
42 ASSERT_TRUE(root) << reader.GetErrorMessage();
72 base::JSONReader reader; local
73 scoped_ptr<base::Value> root(reader.ReadToValue(input));
74 ASSERT_TRUE(root) << reader.GetErrorMessage();
107 base::JSONReader reader; local
108 scoped_ptr<base::Value> root(reader.ReadToValue(input));
109 ASSERT_TRUE(root) << reader.GetErrorMessage();
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DMallocZoneSupport.h41 RemoteMemoryReader(task_t task, memory_reader_t* reader) argument
43 , m_reader(reader)
/external/guava/guava/src/com/google/common/io/
H A DLineReader.java39 private final Reader reader; field in class:LineReader
57 this.reader = (readable instanceof Reader) ? (Reader) readable : null;
76 int read = (reader != null)
77 ? reader.read(buf, 0, buf.length)
/external/guava/guava-gwt/src/com/google/common/base/
H A DPairwiseEquivalence_CustomFieldSerializer.java32 public static void deserialize(SerializationStreamReader reader, argument
35 public static PairwiseEquivalence<?> instantiate(SerializationStreamReader reader) argument
37 return create((Equivalence<?>) reader.readObject());
/external/guava/guava-gwt/src/com/google/common/collect/
H A DByFunctionOrdering_CustomFieldSerializer.java31 public static void deserialize(SerializationStreamReader reader, argument
37 SerializationStreamReader reader) throws SerializationException {
39 (Function<Object, Object>) reader.readObject(),
40 (Ordering<Object>) reader.readObject());
36 instantiate( SerializationStreamReader reader) argument
H A DComparatorOrdering_CustomFieldSerializer.java32 public static void deserialize(SerializationStreamReader reader, argument
38 SerializationStreamReader reader) throws SerializationException {
40 (Comparator<Object>) reader.readObject());
37 instantiate( SerializationStreamReader reader) argument
H A DCompoundOrdering_CustomFieldSerializer.java32 public static void deserialize(SerializationStreamReader reader, argument
38 SerializationStreamReader reader) throws SerializationException {
40 (ImmutableList<Comparator<Object>>) reader.readObject());
37 instantiate( SerializationStreamReader reader) argument
H A DEmptyImmutableListMultimap_CustomFieldSerializer.java30 public static void deserialize(SerializationStreamReader reader, argument
35 SerializationStreamReader reader) {
34 instantiate( SerializationStreamReader reader) argument
H A DEmptyImmutableList_CustomFieldSerializer.java29 public static void deserialize(SerializationStreamReader reader, argument
34 SerializationStreamReader reader) {
33 instantiate( SerializationStreamReader reader) argument
H A DEmptyImmutableMap_CustomFieldSerializer.java30 public static void deserialize(SerializationStreamReader reader, argument
35 SerializationStreamReader reader) {
34 instantiate( SerializationStreamReader reader) argument
H A DEmptyImmutableMultiset_CustomFieldSerializer.java30 public static void deserialize(SerializationStreamReader reader, argument
35 SerializationStreamReader reader) {
34 instantiate( SerializationStreamReader reader) argument
H A DEmptyImmutableSetMultimap_CustomFieldSerializer.java30 public static void deserialize(SerializationStreamReader reader, argument
35 SerializationStreamReader reader) {
34 instantiate( SerializationStreamReader reader) argument

Completed in 442 milliseconds

1234567891011>>