/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/ |
test_stream.py | 33 """Tests for stream module.""" 41 from mod_pywebsocket import stream namespace 45 """A unittest for stream module.""" 49 header = stream.create_header(common.OPCODE_TEXT, 1, 1, 1, 1, 1, 1) 53 header = stream.create_header( 59 stream.create_header, 64 stream.create_header, 69 stream.create_header,
|
/external/chromium_org/base/mac/ |
mac_logging.cc | 27 stream() << ": " << status_; 29 stream() << ": "
|
/external/chromium_org/net/data/websocket/ |
close-code-and-reason_wsh.py | 7 from mod_pywebsocket import stream namespace 25 request.connection.write(stream.create_close_frame(data))
|
/external/chromium_org/skia/ext/ |
SkTypeface_fake.cpp | 14 void SkTypeface::serialize(SkWStream* stream) const { 17 SkTypeface* SkTypeface::Deserialize(SkStream* stream) {
|
/external/chromium_org/third_party/WebKit/Source/core/fileapi/ |
Stream.cpp | 32 #include "core/fileapi/Stream.h" 40 Stream::Stream(const String& mediaType) 46 // Create a new internal URL for a stream and register it with the provided 52 void Stream::addData(const char* data, size_t len) 60 void Stream::finalize() 65 Stream::~Stream()
|
/external/chromium_org/third_party/angle_dx11/src/compiler/ |
MapLongVariableNames.cpp | 14 TStringStream stream; local 15 stream << "webgl_"; 17 stream << "g"; 18 stream << id; 20 stream << "_"; 21 stream << name.substr(0, MAX_SHORTENED_IDENTIFIER_SIZE - stream.str().size()); 22 return stream.str();
|
/external/chromium_org/third_party/libjingle/source/talk/xmpp/ |
xmppengine_unittest.cc | 85 EXPECT_EQ("<stream:stream to=\"my-server\" xml:lang=\"*\" version=\"1.0\" " 86 "xmlns:stream=\"http://etherx.jabber.org/streams\" " 90 "<stream:stream id=\"a5f2d8c9\" version=\"1.0\" " 91 "xmlns:stream=\"http://etherx.jabber.org/streams\" " 96 "<stream:features>" 104 "</stream:features>"; 115 "<stream:stream to=\"my-server\" xml:lang=\"*\" [all...] |
/external/clang/test/Analysis/ |
cxx-method-names.cpp | 9 void fopen(); // stream checker 10 void feof(int, int); // stream checker
|
/external/lzma/CPP/7zip/Archive/7z/ |
7zSpecStream.h | 19 void Init(ISequentialInStream *stream)
21 _stream = stream;
|
/external/lzma/CPP/7zip/Archive/Common/ |
OutStreamWithCRC.h | 23 void SetStream(ISequentialOutStream *stream) { _stream = stream; }
|
/external/lzma/CPP/7zip/Common/ |
LimitedStreams.h | 19 void SetStream(ISequentialInStream *stream) { _stream = stream; }
47 void SetStream(IInStream *stream) { _stream = stream; }
73 CMyComPtr<IInStream> Stream;
79 HRESULT SeekToPhys() { return Stream->Seek(_physPos, STREAM_SEEK_SET, NULL); }
113 void SetStream(ISequentialOutStream *stream) { _stream = stream; }
|
LockedStream.h | 15 void Init(IInStream *stream)
16 { _stream = stream; }
|
/external/lzma/CPP/Common/ |
StdOutStream.h | 16 CStdOutStream (FILE *stream): _streamIsOpen(false), _stream(stream) {};
|
/external/stlport/test/unit/ |
strstream_buffer_read_test.cpp | 30 strstream stream(hello, sizeof(hello), ios_base::in); 32 stream >> cur;
|
/external/zlib/src/contrib/iostream3/ |
TODO | 17 of stream buffer to stream ( i.e. os << is.rdbuf(); )
|
/frameworks/base/core/java/android/webkit/ |
WebResourceResponse.java | 36 * input stream. Callers must implement 38 * stream. 42 * @param data the input stream that provides the resource response's data 71 * to decode the data from the input stream. 89 * Sets the input stream that provides the resource respone's data. Callers 92 * @param data the input stream that provides the resource response's data 99 * Gets the input stream that provides the resource respone's data. 101 * @return the input stream that provides the resource response's data
|
/libcore/luni/src/main/java/javax/xml/transform/stream/ |
StreamSource.java | 20 package javax.xml.transform.stream; 29 * of a stream of XML markup.</p> 44 "http://javax.xml.transform.stream.StreamSource/feature"; 48 * no Stream source is set using 60 * Construct a StreamSource from a byte stream. Normally, 61 * a stream should be used rather than a reader, so 69 * @param inputStream A valid InputStream reference to an XML stream. 76 * Construct a StreamSource from a byte stream. Normally, 77 * a stream should be used rather than a reader, so that 82 * to the input stream, which allows relative URI [all...] |
/ndk/tests/device/test-gnustl-full/unit/ |
strstream_buffer_read_test.cpp | 30 strstream stream(hello, sizeof(hello), ios_base::in); 32 stream >> cur;
|
/ndk/tests/device/test-stlport/unit/ |
strstream_buffer_read_test.cpp | 30 strstream stream(hello, sizeof(hello), ios_base::in); 32 stream >> cur;
|
/external/chromium_org/third_party/skia/src/ports/ |
SkFontHost_fontconfig.cpp | 129 SkTypeface* SkFontHost::CreateTypefaceFromStream(SkStream* stream) { 130 if (!stream) { 133 const size_t length = stream->getLength(); 143 SkTypeface* face = SkNEW_ARGS(FontConfigTypeface, (style, stream)); 148 SkAutoTUnref<SkStream> stream(SkStream::NewFromFile(path)); 149 return stream.get() ? CreateTypefaceFromStream(stream) : NULL; 157 SkStream* stream = this->getLocalStream(); local 158 if (stream) { 162 SkAutoTUnref<SkStream> dupStream(stream->duplicate()) [all...] |
/external/llvm/examples/OCaml-Kaleidoscope/Chapter2/ |
parser.ml | 26 | [< 'Token.Ident id; stream >] -> 28 | [< e=parse_expr; stream >] -> 32 end stream 45 parse_ident id stream 47 | [< >] -> raise (Stream.Error "unknown token when expecting an expression.") 51 and parse_bin_rhs expr_prec lhs stream = 52 match Stream.peek stream with 61 Stream.junk stream; [all...] |
/external/llvm/examples/OCaml-Kaleidoscope/Chapter3/ |
parser.ml | 26 | [< 'Token.Ident id; stream >] -> 28 | [< e=parse_expr; stream >] -> 32 end stream 45 parse_ident id stream 47 | [< >] -> raise (Stream.Error "unknown token when expecting an expression.") 51 and parse_bin_rhs expr_prec lhs stream = 52 match Stream.peek stream with 61 Stream.junk stream; [all...] |
/external/llvm/examples/OCaml-Kaleidoscope/Chapter4/ |
parser.ml | 26 | [< 'Token.Ident id; stream >] -> 28 | [< e=parse_expr; stream >] -> 32 end stream 45 parse_ident id stream 47 | [< >] -> raise (Stream.Error "unknown token when expecting an expression.") 51 and parse_bin_rhs expr_prec lhs stream = 52 match Stream.peek stream with 61 Stream.junk stream; [all...] |
/external/smack/src/org/jivesoftware/smack/packet/ |
StreamError.java | 23 * Represents a stream error packet. Stream errors are unrecoverable errors where the server
24 * will close the unrelying TCP connection after the stream error was sent to the client.
25 * These is the list of stream errors as defined in the XMPP spec:<p>
33 * <tr><td> conflict </td><td> the server is closing the active stream for this entity
34 * because a new stream has been initiated that conflicts with the existing
35 * stream. </td></tr>
37 * the stream for some period of time. </td></tr>
39 * entity in the stream header corresponds to a hostname that is no longer hosted by
42 * initiating entity in the stream header does not correspond to a hostname that is [all...] |
/external/smack/src/org/xbill/DNS/ |
DNSInput.java | 41 * Returns the number of bytes that can be read from this stream before 57 * Marks the following bytes in the stream as active. 104 * Resets the current position of the input stream to the specified index, 120 * Saves the current state of the input stream. Both the current position and 131 * Restores the input stream to its state before the call to {@link #save}. 145 * Reads an unsigned 8 bit value from the stream, as an int. 147 * @throws WireParseException The end of the stream was reached. 156 * Reads an unsigned 16 bit value from the stream, as an int. 158 * @throws WireParseException The end of the stream was reached. 169 * Reads an unsigned 32 bit value from the stream, as a long [all...] |