HomeSort by relevance Sort by last modified time
    Searched refs:Stream (Results 1 - 25 of 152) sorted by null

1 2 3 4 5 6 7

  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
Antlr.Runtime.Tests.pas 47 Stream: IANTLRStringStream;
49 Stream := TANTLRStringStream.Create('One'#13#10'Two');
50 CheckEquals(0, Stream.Index);
51 CheckEquals(0, Stream.CharPositionInLine);
52 CheckEquals(1, Stream.Line);
54 Stream.Consume; // O
55 CheckEquals(1, Stream.Index);
56 CheckEquals(1, Stream.CharPositionInLine);
57 CheckEquals(1, Stream.Line);
59 Stream.Consume; //
    [all...]
  /ndk/tests/device/test-stlport_shared-exception/jni/
ctor2.cpp 22 struct Stream : public virtual VBase, public StreamBase
24 Stream() {}
25 virtual ~Stream() {}
28 struct DerivedStream : public Stream
  /ndk/tests/device/test-stlport_static-exception/jni/
ctor2.cpp 22 struct Stream : public virtual VBase, public StreamBase
24 Stream() {}
25 virtual ~Stream() {}
28 struct DerivedStream : public Stream
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
ANTLRInputStream.cs 35 using Stream = System.IO.Stream;
45 public ANTLRInputStream(Stream input)
49 public ANTLRInputStream(Stream input, int size)
53 public ANTLRInputStream(Stream input, Encoding encoding)
57 public ANTLRInputStream(Stream input, int size, Encoding encoding)
61 public ANTLRInputStream(Stream input, int size, int readBufferSize, Encoding encoding)
65 private static StreamReader GetStreamReader(Stream input, Encoding encoding) {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
ANTLRInputStream.cs 36 using Stream = System.IO.Stream;
47 public ANTLRInputStream( Stream input )
52 public ANTLRInputStream( Stream input, int size )
57 public ANTLRInputStream( Stream input, Encoding encoding )
62 public ANTLRInputStream( Stream input, int size, Encoding encoding )
67 public ANTLRInputStream( Stream input, int size, int readBufferSize, Encoding encoding )
72 private static StreamReader GetStreamReader(Stream input, Encoding encoding)
  /external/arduino/hardware/arduino/cores/arduino/
Stream.h 2 Stream.h - base class for character-based streams.
26 class Stream : public Print
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/streamquality/
StreamingVideoActivity.java 39 * Simple storage class for stream information.
41 static class Stream implements Serializable {
43 * Human-readable name for the stream.
53 * URI of the stream
57 public Stream(String name, String code, String uri) {
67 } else if (o == null || !(o instanceof Stream)) {
70 Stream stream = (Stream) o; local
71 return name.equals(stream.name
    [all...]
  /external/clang/test/Sema/
parentheses.cpp 20 class Stream {
23 Stream &operator<<(int);
24 Stream &operator<<(const char*);
25 Stream &operator>>(int);
26 Stream &operator>>(const char*);
29 void f(Stream& s, bool b) {
56 Stream() << b + c;
57 Stream() >> b + c; // expected-warning {{operator '>>' has lower precedence than '+'; '+' will be evaluated first}} \
  /external/llvm/unittests/Support/
YAMLParserTest.cpp 35 yaml::Stream Stream(Input, SM);
37 EXPECT_FALSE(Stream.validate()) << Message << ": " << Input;
38 EXPECT_TRUE(Stream.failed()) << Message << ": " << Input;
44 yaml::Stream Stream(Input, SM);
45 EXPECT_TRUE(Stream.validate()) << Message << ": " << Input;
149 yaml::Stream Stream(StringInArray, SM);
151 = dyn_cast<yaml::SequenceNode>(Stream.begin()->getRoot())
    [all...]
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
Stream.pm 1 package ANTLR::Runtime::Stream;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRMismatchedTreeNodeException.h 38 + (id) newANTLRMismatchedTreeNodeException:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
39 - (id) initWithTokenType:(NSInteger) expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
ANTLRMismatchedTokenException.h 44 + (id) newANTLRMismatchedTokenException:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
46 Stream:(id<ANTLRIntStream>)anInput
48 + (id) newANTLRMismatchedTokenExceptionChar:(unichar)expectedCharacter Stream:(id<ANTLRIntStream>)anInput;
52 - (id) initWithTokenType:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
54 Stream:(id<ANTLRIntStream>)anInput
56 - (id) initWithCharacter:(unichar)expectedCharacter Stream:(id<ANTLRIntStream>)anInput;
ANTLRMissingTokenException.h 42 Stream:(id<ANTLRIntStream>)anInput
45 - (id) init:(NSInteger)expected Stream:(id<ANTLRIntStream>)anInput With:(id<ANTLRToken>)insertedToken;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRMismatchedTreeNodeException.h 38 + (id) newANTLRMismatchedTreeNodeException:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
39 - (id) initWithTokenType:(NSInteger) expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
ANTLRMismatchedTokenException.h 44 + (id) newANTLRMismatchedTokenException:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
46 Stream:(id<ANTLRIntStream>)anInput
48 + (id) newANTLRMismatchedTokenExceptionChar:(unichar)expectedCharacter Stream:(id<ANTLRIntStream>)anInput;
52 - (id) initWithTokenType:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
54 Stream:(id<ANTLRIntStream>)anInput
56 - (id) initWithCharacter:(unichar)expectedCharacter Stream:(id<ANTLRIntStream>)anInput;
ANTLRMissingTokenException.h 42 Stream:(id<ANTLRIntStream>)anInput
45 - (id) init:(NSInteger)expected Stream:(id<ANTLRIntStream>)anInput With:(id<ANTLRToken>)insertedToken;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRMismatchedTreeNodeException.h 38 + (id) newANTLRMismatchedTreeNodeException:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
39 - (id) initWithTokenType:(NSInteger) expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
ANTLRMismatchedTokenException.h 44 + (id) newANTLRMismatchedTokenException:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
46 Stream:(id<ANTLRIntStream>)anInput
48 + (id) newANTLRMismatchedTokenExceptionChar:(unichar)expectedCharacter Stream:(id<ANTLRIntStream>)anInput;
52 - (id) initWithTokenType:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
54 Stream:(id<ANTLRIntStream>)anInput
56 - (id) initWithCharacter:(unichar)expectedCharacter Stream:(id<ANTLRIntStream>)anInput;
ANTLRMissingTokenException.h 42 Stream:(id<ANTLRIntStream>)anInput
45 - (id) init:(NSInteger)expected Stream:(id<ANTLRIntStream>)anInput With:(id<ANTLRToken>)insertedToken;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRMismatchedTreeNodeException.h 38 + (id) newException:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
39 - (id) initWithTokenType:(NSInteger) expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
ANTLRMismatchedTokenException.h 44 + (id) newException:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
46 Stream:(id<ANTLRIntStream>)anInput
48 + (id) newExceptionChar:(unichar)expectedCharacter Stream:(id<ANTLRIntStream>)anInput;
52 - (id) initWithTokenType:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
54 Stream:(id<ANTLRIntStream>)anInput
56 - (id) initWithCharacter:(unichar)expectedCharacter Stream:(id<ANTLRIntStream>)anInput;
ANTLRMissingTokenException.h 42 Stream:(id<ANTLRIntStream>)anInput
45 - (id) init:(NSInteger)expected Stream:(id<ANTLRIntStream>)anInput With:(id<ANTLRToken>)insertedToken;
  /external/clang/lib/Frontend/
SerializedDiagnosticPrinter.cpp 195 : DiagOpts(diags), Stream(Buffer), OS(os), EmittedAnyDiagBlocks(false) { }
204 llvm::BitstreamWriter Stream;
255 llvm::BitstreamWriter &Stream,
259 Stream.EmitRecord(llvm::bitc::BLOCKINFO_CODE_SETBID, Record);
270 Stream.EmitRecord(llvm::bitc::BLOCKINFO_CODE_BLOCKNAME, Record);
275 llvm::BitstreamWriter &Stream,
283 Stream.EmitRecord(llvm::bitc::BLOCKINFO_CODE_SETRECORDNAME, Record);
335 State->Stream.EmitRecordWithBlob(State->Abbrevs.get(RECORD_FILENAME), Record,
346 State->Stream.EmitRecordWithAbbrev(State->Abbrevs.get(RECORD_SOURCE_RANGE),
353 State->Stream.Emit((unsigned)'D', 8)
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
toplevel.ml 6 let rec main_loop stream =
7 match Stream.peek stream with
12 Stream.junk stream;
13 main_loop stream
19 ignore(Parser.parse_definition stream);
22 ignore(Parser.parse_extern stream);
26 ignore(Parser.parse_toplevel stream);
28 with Stream.Error s -
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
toplevel.ml 8 let rec main_loop stream =
9 match Stream.peek stream with
14 Stream.junk stream;
15 main_loop stream
21 let e = Parser.parse_definition stream in
25 let e = Parser.parse_extern stream in
30 let e = Parser.parse_toplevel stream in
33 with Stream.Error s | Codegen.Error s -
    [all...]

Completed in 1437 milliseconds

1 2 3 4 5 6 7