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

1 2 3

  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
ITokenSource.cs 68 string SourceName {
IIntStream.cs 156 string SourceName {
UnbufferedTokenStream.cs 72 public string SourceName {
74 return TokenSource.SourceName;
Parser.cs 99 public override string SourceName {
101 return input.SourceName;
ANTLRFileStream.cs 85 override public string SourceName
BufferedTokenStream.cs 114 public virtual string SourceName {
116 return _tokenSource.SourceName;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
ITokenSource.cs 68 string SourceName
IIntStream.cs 156 string SourceName
ANTLRFileStream.cs 80 public override string SourceName
Parser.cs 111 public override string SourceName
115 return input.SourceName;
UnbufferedTokenStream.cs 79 public string SourceName
83 return TokenSource.SourceName;
  /external/llvm/tools/llvm-cov/
SourceCoverageViewHTML.h 74 SourceCoverageViewHTML(StringRef SourceName, const MemoryBuffer &File,
77 : SourceCoverageView(SourceName, File, Options, std::move(CoverageInfo)) {
SourceCoverageViewText.h 74 SourceCoverageViewText(StringRef SourceName, const MemoryBuffer &File,
77 : SourceCoverageView(SourceName, File, Options, std::move(CoverageInfo)) {
SourceCoverageView.h 157 StringRef SourceName;
251 SourceCoverageView(StringRef SourceName, const MemoryBuffer &File,
254 : SourceName(SourceName), File(File), Options(Options),
259 create(StringRef SourceName, const MemoryBuffer &File,
265 StringRef getSourceName() const { return SourceName; }
SourceCoverageView.cpp 110 SourceCoverageView::create(StringRef SourceName, const MemoryBuffer &File,
115 return llvm::make_unique<SourceCoverageViewText>(SourceName, File, Options,
118 return llvm::make_unique<SourceCoverageViewHTML>(SourceName, File, Options,
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DebugTokenStream.cs 159 public virtual string SourceName {
161 return TokenSource.SourceName;
DebugTreeNodeStream.cs 169 public virtual string SourceName {
171 return TokenStream.SourceName;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DebugTokenStream.cs 189 public virtual string SourceName
193 return TokenSource.SourceName;
DebugTreeNodeStream.cs 198 public virtual string SourceName
202 return TokenStream.SourceName;
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldMachO.cpp 254 StringRef SourceName = SymbolNames[SourceNum];
260 Relocations[SourceName].push_back(RelocationEntry(TargetName,
265 << " from '" << SourceName << "(Word1: "
385 StringRef SourceName = SymbolNames[SourceNum];
391 Relocations[SourceName].push_back(RelocationEntry(TargetName,
396 << " from '" << SourceName << "(Word1: "
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
CommonTreeNodeStream.cs 79 public virtual string SourceName {
84 return TokenStream.SourceName;
TreeParser.cs 84 public override string SourceName {
86 return input.SourceName;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
CommonTreeNodeStream.cs 83 public virtual string SourceName
90 return TokenStream.SourceName;
TreeParser.cs 90 public override string SourceName
94 return input.SourceName;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
SlimStringStream.cs 94 public SlimStringStream( string input, string sourceName )
95 : this( input.ToCharArray(), input.Length, sourceName )
105 public SlimStringStream( char[] data, int numberOfActualCharsInArray, string sourceName )
111 this.name = sourceName;
326 public string SourceName

Completed in 182 milliseconds

1 2 3