/external/chromium_org/net/spdy/ |
hpack_decoder.cc | 46 HpackInputStream input_stream(max_string_literal_size_, 49 while (input_stream.HasMoreData()) { 50 if (!DecodeNextOpcode(&input_stream)) { 98 bool HpackDecoder::DecodeNextOpcode(HpackInputStream* input_stream) { 100 if (input_stream->MatchPrefixAndConsume(kIndexedOpcode)) { 101 return DecodeNextIndexedHeader(input_stream); 104 if (input_stream->MatchPrefixAndConsume(kLiteralIncrementalIndexOpcode)) { 105 return DecodeNextLiteralHeader(input_stream, true); 108 if (input_stream->MatchPrefixAndConsume(kLiteralNoIndexOpcode)) { 109 return DecodeNextLiteralHeader(input_stream, false) [all...] |
hpack_input_stream_test.cc | 52 HpackInputStream input_stream(kLiteralBound, str); 53 input_stream.SetBitOffsetForTest(8 - N); 55 EXPECT_TRUE(input_stream.DecodeNextUint32(&I)); 64 HpackInputStream input_stream(kLiteralBound, str); 65 input_stream.SetBitOffsetForTest(8 - N); 67 EXPECT_FALSE(input_stream.DecodeNextUint32(&I)); 489 HpackInputStream input_stream(kLiteralBound, "\x0estring literal"); 491 EXPECT_TRUE(input_stream.HasMoreData()); 493 EXPECT_TRUE(input_stream.DecodeNextIdentityString(&string_piece)); 495 EXPECT_FALSE(input_stream.HasMoreData()) [all...] |
hpack_huffman_table_test.cc | 285 HpackInputStream input_stream(kuint32max, buffer_in); 286 EXPECT_TRUE(table_.DecodeString(&input_stream, input.size(), &buffer_out)); 350 HpackInputStream input_stream(kuint32max, input); 351 EXPECT_TRUE(table_.DecodeString(&input_stream, capacity, &buffer)); 360 HpackInputStream input_stream(kuint32max, input); 361 EXPECT_FALSE(table_.DecodeString(&input_stream, capacity, &buffer)); 369 HpackInputStream input_stream(kuint32max, input); 370 EXPECT_FALSE(table_.DecodeString(&input_stream, capacity, &buffer)); 382 HpackInputStream input_stream(kuint32max, input); 383 EXPECT_FALSE(table_.DecodeString(&input_stream, capacity, &buffer)) [all...] |
hpack_decoder.h | 112 bool DecodeNextOpcode(HpackInputStream* input_stream); 113 bool DecodeNextHeaderTableSizeUpdate(HpackInputStream* input_stream); 114 bool DecodeNextIndexedHeader(HpackInputStream* input_stream); 115 bool DecodeNextLiteralHeader(HpackInputStream* input_stream, 117 bool DecodeNextName(HpackInputStream* input_stream, 119 bool DecodeNextStringLiteral(HpackInputStream* input_stream,
|
hpack_decoder_test.cc | 175 HpackInputStream input_stream(kLiteralBound, StringPiece("\x00\x04name", 6)); 178 EXPECT_TRUE(decoder_peer_.DecodeNextName(&input_stream, &string_piece)); 180 EXPECT_FALSE(input_stream.HasMoreData()); 185 HpackInputStream input_stream(kLiteralBound, input); 188 EXPECT_TRUE(decoder_peer_.DecodeNextName(&input_stream, &string_piece)); 190 EXPECT_FALSE(input_stream.HasMoreData()); 195 HpackInputStream input_stream(kLiteralBound, "\x01"); 198 EXPECT_TRUE(decoder_peer_.DecodeNextName(&input_stream, &string_piece)); 200 EXPECT_FALSE(input_stream.HasMoreData()); 206 HpackInputStream input_stream(kLiteralBound, "\x3e") [all...] |
/external/chromium_org/third_party/sfntly/cpp/src/sample/subtly/ |
utils.cc | 46 FileInputStream input_stream; local 47 input_stream.Open(font_path); 48 factory->LoadFonts(&input_stream, fonts); 49 input_stream.Close(); 55 FileInputStream input_stream; local 56 input_stream.Open(font_path); 57 factory->LoadFontsForBuilding(&input_stream, builders); 58 input_stream.Close();
|
/external/sfntly/cpp/src/sample/subtly/ |
utils.cc | 46 FileInputStream input_stream; local 47 input_stream.Open(font_path); 48 factory->LoadFonts(&input_stream, fonts); 49 input_stream.Close(); 55 FileInputStream input_stream; local 56 input_stream.Open(font_path); 57 factory->LoadFontsForBuilding(&input_stream, builders); 58 input_stream.Close();
|
/external/chromium_org/android_webview/native/ |
input_stream_unittest.cc | 52 scoped_ptr<InputStream> input_stream( 56 EXPECT_TRUE(input_stream->Read(buffer.get(), bytes_requested, bytes_read)); 68 scoped_ptr<InputStream> input_stream(new InputStreamImpl(empty_jstream)); 73 EXPECT_TRUE(input_stream->Read(buffer.get(), bytes_requested, &bytes_read)); 128 scoped_ptr<InputStream> input_stream(new InputStreamImpl(throw_jstream)); 131 EXPECT_FALSE(input_stream->Skip(10, &bytes_skipped)); 134 EXPECT_FALSE(input_stream->BytesAvailable(&bytes_available)); 140 EXPECT_FALSE(input_stream->Read(buffer.get(), bytes_requested, &bytes_read)); 144 input_stream.reset(NULL);
|
input_stream_impl.h | 8 #include "android_webview/browser/input_stream.h" 24 const InputStream* input_stream);
|
input_stream_impl.cc | 39 const InputStream* input_stream) { 40 return static_cast<const InputStreamImpl*>(input_stream);
|
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/parser/ |
AddressListParserTokenManager.java | 52 try { curChar = input_stream.readChar(); } 208 try { curChar = input_stream.readChar(); } 228 try { curChar = input_stream.readChar(); } 332 try { curChar = input_stream.readChar(); } 352 try { curChar = input_stream.readChar(); } 466 try { curChar = input_stream.readChar(); } 486 try { curChar = input_stream.readChar(); } 587 try { curChar = input_stream.readChar(); } 607 try { curChar = input_stream.readChar(); } 709 try { curChar = input_stream.readChar(); 742 protected SimpleCharStream input_stream; field in class:AddressListParserTokenManager [all...] |
/external/chromium_org/media/audio/ |
virtual_audio_output_stream_unittest.cc | 79 MockVirtualAudioInputStream* const input_stream = local 84 base::Unretained(input_stream))); 88 input_stream, 91 EXPECT_CALL(*input_stream, AddOutputStream(output_stream, _)) 93 EXPECT_CALL(*input_stream, RemoveOutputStream(output_stream, _)) 115 base::Unretained(input_stream)));
|
/external/chromium_org/third_party/skia/tools/ |
misc_utils.py | 17 def search_within_stream(input_stream, pattern, default=None): 31 input_stream: file-like object to be read 39 for line in input_stream:
|
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/contenttype/parser/ |
ContentTypeParserTokenManager.java | 53 try { curChar = input_stream.readChar(); } 222 try { curChar = input_stream.readChar(); } 242 try { curChar = input_stream.readChar(); } 343 try { curChar = input_stream.readChar(); } 363 try { curChar = input_stream.readChar(); } 477 try { curChar = input_stream.readChar(); } 497 try { curChar = input_stream.readChar(); } 598 try { curChar = input_stream.readChar(); } 628 protected SimpleCharStream input_stream; field in class:ContentTypeParserTokenManager 638 input_stream = stream [all...] |
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/datetime/parser/ |
DateTimeParserTokenManager.java | 72 try { curChar = input_stream.readChar(); } 126 try { curChar = input_stream.readChar(); } 168 try { curChar = input_stream.readChar(); } 386 try { curChar = input_stream.readChar(); } 406 try { curChar = input_stream.readChar(); } 510 try { curChar = input_stream.readChar(); } 530 try { curChar = input_stream.readChar(); } 631 try { curChar = input_stream.readChar(); } 667 protected SimpleCharStream input_stream; field in class:DateTimeParserTokenManager 677 input_stream = stream [all...] |
/external/chromium_org/android_webview/browser/net/ |
android_stream_reader_url_request_job.cc | 9 #include "android_webview/browser/input_stream.h" 59 scoped_ptr<InputStream> input_stream, 61 : input_stream_(input_stream.Pass()), 67 android_webview::InputStream* input_stream() { function in class:InputStreamReaderWrapper 118 scoped_ptr<InputStream> input_stream = delegate->OpenInputStream(env, url); local 122 base::Passed(input_stream.Pass()))); 164 scoped_ptr<android_webview::InputStream> input_stream) { 169 if (!input_stream) { 183 CreateStreamReader(input_stream.get())); 188 input_stream.Pass(), input_stream_reader.Pass()) [all...] |
/external/chromium_org/google_apis/gcm/base/ |
socket_stream_unittest.cc | 50 SocketInputStream* input_stream() { return socket_input_stream_.get(); } function in class:gcm::__anon12991::GCMSocketStreamTest 163 while (input_stream()->UnreadByteCount() < msg_size) { 165 if (input_stream()->Refresh(run_loop.QuitClosure(), 166 msg_size - input_stream()->UnreadByteCount()) == 170 if (input_stream()->GetState() == SocketInputStream::CLOSED) 282 input_stream()->RebuildBuffer(); 295 ASSERT_EQ(SocketInputStream::CLOSED, input_stream()->GetState()); 296 ASSERT_EQ(result, input_stream()->last_error()); 304 ASSERT_EQ(SocketInputStream::CLOSED, input_stream()->GetState()); 305 ASSERT_EQ(net::ERR_CONNECTION_CLOSED, input_stream()->last_error()) [all...] |
/development/scripts/ |
compare-installed-size.py | 44 input_stream = open(install_file, 'r') 45 for line in input_stream: 77 input_stream.close()
|
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/port/ |
file_input_stream.h | 22 #include "sfntly/port/input_stream.h"
|
memory_input_stream.h | 22 #include "sfntly/port/input_stream.h"
|
/external/sfntly/cpp/src/sfntly/port/ |
file_input_stream.h | 22 #include "sfntly/port/input_stream.h"
|
memory_input_stream.h | 22 #include "sfntly/port/input_stream.h"
|
/external/chromium_org/android_webview/browser/ |
aw_web_resource_response.cc | 7 #include "android_webview/browser/input_stream.h"
|
/external/protobuf/src/google/protobuf/ |
text_format_unittest.cc | 343 io::ArrayInputStream input_stream(proto_debug_string_.data(), 345 TextFormat::Parse(&input_stream, &proto_); 350 io::ArrayInputStream input_stream(proto_debug_string_.data(), 352 TextFormat::Parse(&input_stream, &proto_); 362 io::ArrayInputStream input_stream(parse_string.data(), 364 TextFormat::Parse(&input_stream, &proto_); 400 io::ArrayInputStream input_stream(parse_string.data(), 403 TextFormat::Parse(&input_stream, &proto_); 415 io::ArrayInputStream input_stream(parse_string.data(), 418 TextFormat::Parse(&input_stream, &proto_) [all...] |
/external/skia/tools/ |
misc_utils.py | 160 def search_within_stream(input_stream, pattern, default=None): 174 input_stream: file-like object to be read 182 for line in input_stream:
|