/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
cstdio | 49 int fclose(FILE* stream); 50 int fflush(FILE* stream); 53 FILE * restrict stream); 54 void setbuf(FILE* restrict stream, char* restrict buf); 55 int setvbuf(FILE* restrict stream, char* restrict buf, int mode, size_t size); 56 int fprintf(FILE* restrict stream, const char* restrict format, ...); 57 int fscanf(FILE* restrict stream, const char * restrict format, ...); 63 int vfprintf(FILE* restrict stream, const char* restrict format, va_list arg); 64 int vfscanf(FILE* restrict stream, const char* restrict format, va_list arg); // C99 71 int fgetc(FILE* stream); [all...] |
/external/blktrace/btreplay/ |
btrecord.c | 222 * @stream: Output file information 225 static void write_file_hdr(struct io_stream *stream, struct io_file_hdr *hdr) 231 stream->file_name, 238 fseek(stream->ofp, 0, SEEK_SET); 239 if (fwrite(hdr, sizeof(*hdr), 1, stream->ofp) != 1) { 240 fatal(stream->file_name, ERR_SYSCALL, "Hdr write failed\n"); 247 * @io_stream: IO stream being added to 251 static inline void io_bunch_create(struct io_stream *stream, __u64 start_time) 258 cur->hdr.time_stamp = stream->start_time = start_time; 260 stream->cur = cur 682 struct io_stream *stream = malloc(sizeof(*stream)); local 765 struct io_stream *stream; local [all...] |
/external/chromium/net/base/ |
file_stream_unittest.cc | 41 FileStream stream; local 42 int rv = stream.Open(temp_file_path(), 85 FileStream stream; local 87 EXPECT_FALSE(stream.IsOpen()); 90 int64 new_offset = stream.Seek(FROM_BEGIN, 5); 94 int64 avail = stream.Available(); 99 int rv = stream.Read(buf, arraysize(buf), NULL); 108 FileStream stream; local 111 int rv = stream.Open(temp_file_path(), flags); 114 int64 total_bytes_avail = stream.Available() 138 FileStream stream; local 173 FileStream stream; local 203 FileStream stream; local 238 FileStream stream; local 273 FileStream stream; local 296 FileStream stream; local 317 FileStream stream; local 349 FileStream stream; local 381 FileStream stream; local 410 FileStream stream; local 445 FileStream stream; local 484 FileStream stream; local 532 FileStream stream; local 587 FileStream stream; local 737 FileStream stream; local 839 FileStream stream; local [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/ |
xml.js | 50 function inText(stream, state) { 53 return parser(stream, state); 56 var ch = stream.next(); 58 if (stream.eat("!")) { 59 if (stream.eat("[")) { 60 if (stream.match("CDATA[")) return chain(inBlock("atom", "]]>")); 62 } else if (stream.match("--")) { 64 } else if (stream.match("DOCTYPE", true, true)) { 65 stream.eatWhile(/[\w\._\-]/); 70 } else if (stream.eat("?")) [all...] |
htmlmixed.js | 15 function html(stream, state) { 17 var style = htmlMode.token(stream, state.htmlState); 18 if (tagName == "script" && /\btag\b/.test(style) && stream.current() == ">") { 20 var scriptType = stream.string.slice(Math.max(0, stream.pos - 100), stream.pos).match(/\btype\s*=\s*("[^"]+"|'[^']+'|\S+)[^<]*$/i); 34 } else if (tagName == "style" && /\btag\b/.test(style) && stream.current() == ">") { 41 function maybeBackup(stream, pat, style) { 42 var cur = stream.current(); 44 if (close > -1) stream.backUp(cur.length - close) [all...] |
/external/antlr/antlr-3.4/runtime/Python/unittests/ |
testtree.py | 20 """Build new stream; let's us override to test other streams.""" 27 stream = self.newStream(t) 29 found = self.toNodesOnlyString(stream) 33 found = str(stream) 76 stream = self.newStream(t) 78 found = self.toNodesOnlyString(stream) 82 found = str(stream) 99 stream = CommonTreeNodeStream(root) 101 found = self.toNodesOnlyString(stream) 105 found = str(stream) [all...] |
/dalvik/vm/compiler/codegen/x86/libenc/ |
enc_wrapper.h | 177 int imm, char* stream); 178 ENCODER_DECLARE_EXPORT unsigned encoder_get_inst_size(char * stream); 179 ENCODER_DECLARE_EXPORT char* encoder_update_imm(int imm, char * stream); 181 int disp, int base_reg, bool isBasePhysical, char* stream); 183 int reg, bool isPhysical, LowOpndRegType type, char* stream); 186 int reg2, bool isPhysical2, LowOpndRegType type, char* stream); 189 int reg, bool isPhysical, LowOpndRegType type, char* stream); 192 int reg, bool isPhysical, LowOpndRegType type, char* stream); 196 LowOpndRegType type, char* stream); 199 int reg, bool isPhysical, LowOpndRegType type, char * stream); [all...] |
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/ |
ANTLRFileStream.as | 20 var stream:FileStream = new FileStream(); 23 stream.open(file, FileMode.READ); 24 data = stream.readMultiByte(file.size, encoding); 28 stream.close();
|
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/ |
Stream.pm | 1 package ANTLR::Runtime::Stream;
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ |
ASN1Primitive.java | 14 * Create a base ASN.1 object from a byte stream. 16 * @param data the byte stream to parse. 17 * @return the base ASN.1 object represented by the byte stream. 31 throw new IOException("cannot recognise object in stream");
|
/external/chromium_org/content/browser/streams/ |
stream_handle_impl.h | 15 class Stream; 19 StreamHandleImpl(const base::WeakPtr<Stream>& stream, 30 base::WeakPtr<Stream> stream_;
|
/external/chromium_org/content/test/plugin/ |
plugin_get_javascript_url2_test.h | 24 virtual NPError NewStream(NPMIMEType type, NPStream* stream, 26 virtual int32 WriteReady(NPStream *stream) OVERRIDE; 27 virtual int32 Write(NPStream *stream, int32 offset, int32 len, 29 virtual NPError DestroyStream(NPStream *stream, NPError reason) OVERRIDE;
|
/external/chromium_org/third_party/angle_dx11/tests/preprocessor_tests/ |
PreprocessorTest.cpp | 16 std::stringstream stream; local 22 stream << "\n"; 24 stream << token; 27 std::string actual = stream.str();
|
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/ |
webrtcpassthroughrender_unittest.cc | 76 const int stream_id3 = 9012; // A stream that doesn't exist. 77 webrtc::VideoRenderCallback* stream = NULL; local 78 // Add a new stream 79 stream = AddIncomingRenderStream(stream_id1); 80 EXPECT_TRUE(stream != NULL); 82 // Tried to add a already existed stream should return null 83 stream =AddIncomingRenderStream(stream_id1); 84 EXPECT_TRUE(stream == NULL); 85 stream = AddIncomingRenderStream(stream_id2); 86 EXPECT_TRUE(stream != NULL) [all...] |
/external/chromium_org/third_party/skia/include/xml/ |
SkBML_XMLParser.h | 20 /** Read the byte XML stream and write the decompressed XML. 23 /** Read the byte XML stream and write the decompressed XML into a writable stream. 26 /** Read the byte XML stream and write the decompressed XML into an XML parser.
|
/external/chromium_org/third_party/skia/src/images/ |
SkJpegUtility.h | 34 /* Our source struct for directing jpeg to our stream object. 37 skjpeg_source_mgr(SkStream* stream, SkImageDecoder* decoder); 52 /* Our destination struct for directing decompressed pixels to our stream 56 skjpeg_destination_mgr(SkWStream* stream);
|
/external/clang/test/CodeGen/ |
2002-06-25-FWriteInterfaceFailure.c | 5 int fprintf(FILE * restrict stream, const char * restrict format, ...);
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/ |
parser.ml | 28 | [< 'Token.Ident id; stream >] -> 30 | [< e=parse_expr; stream >] -> 34 end stream 47 parse_ident id stream 60 stream >] -> 66 stream >] -> 71 end stream 77 raise (Stream.Error "expected 'in' after for") 78 end stream 80 raise (Stream.Error "expected '=' after for" [all...] |
/external/lzma/CS/7zip/Common/ |
InBuffer.cs | 11 System.IO.Stream m_Stream;
21 public void Init(System.IO.Stream stream)
23 m_Stream = stream;
|
OutBuffer.cs | 10 System.IO.Stream m_Stream;
19 public void SetStream(System.IO.Stream stream) { m_Stream = stream; }
|
/external/openssh/contrib/cygwin/ |
sshd-inetd | 3 @COMMENT@ ssh stream tcp nowait root /usr/sbin/sshd sshd -i
|
/external/skia/include/xml/ |
SkBML_XMLParser.h | 20 /** Read the byte XML stream and write the decompressed XML. 23 /** Read the byte XML stream and write the decompressed XML into a writable stream. 26 /** Read the byte XML stream and write the decompressed XML into an XML parser.
|
/external/skia/src/images/ |
SkJpegUtility.h | 34 /* Our source struct for directing jpeg to our stream object. 37 skjpeg_source_mgr(SkStream* stream, SkImageDecoder* decoder); 52 /* Our destination struct for directing decompressed pixels to our stream 56 skjpeg_destination_mgr(SkWStream* stream);
|
SkStreamHelpers.h | 15 * Copy the provided stream to memory allocated by storage. 18 * enough to hold the entire stream. Upon successful return, 21 * @param stream SkStream to be copied into storage. 25 size_t CopyStreamToStorage(SkAutoMalloc* storage, SkStream* stream);
|
/libcore/luni/src/main/java/java/io/ |
ObjectOutput.java | 28 * Closes the target stream. Implementations of this method should free any 29 * resources used by the stream. 32 * if an error occurs while closing the target stream. 37 * Flushes the target stream. Implementations of this method should ensure 38 * that any pending writes are written out to the target stream. 41 * if an error occurs while flushing the target stream. 47 * stream. Blocks until all bytes are written. 52 * if an error occurs while writing to the target stream. 58 * position {@code offset} to the target stream. Blocks until all bytes are 67 * stream [all...] |