HomeSort by relevance Sort by last modified time
    Searched refs:Line (Results 126 - 150 of 170) sorted by null

1 2 3 4 56 7

  /external/v8/test/mjsunit/
debug-liveedit-patch-positions-replace.js 55 // Line long enough to change rinfo encoding.
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
BaseTree.cs 129 public virtual int Line {
BufferedTreeNodeStream.cs 113 // cannot contain any line/column info
233 } while (token != null && token.Line <= 0);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
BaseTree.cs 155 public virtual int Line
BufferedTreeNodeStream.cs 122 // cannot contain any line/column info
266 } while (token != null && token.Line <= 0);
  /external/clang/tools/scan-build/
scan-build 281 # AddStatLine - Decode and insert a statistics line into the database.
285 my $Line = shift;
289 print $Line . "\n";
295 if ($Line !~ $Regex) {
606 <tr><th>Command Line:</th><td>${CmdArgs}</td></tr>
681 <td class="Q">Line</td>
    [all...]
  /external/libvorbis/doc/
06-floor0.tex 8 Vorbis floor type zero uses Line Spectral Pair (LSP, also alternately
9 known as Line Spectral Frequency or LSF) representation to encode a
  /external/llvm/include/llvm/MC/
MCStreamer.h 167 /// AddBlankLine - Emit a blank line to a .s file to pretty it up.
532 virtual void EmitDwarfLocDirective(unsigned FileNo, unsigned Line,
  /external/qemu/distrib/sdl-1.2.15/src/video/fbcon/
riva_mmio.h 278 * 2D line.
402 RivaLine *Line;
  /external/llvm/lib/IR/
DIBuilder.cpp 145 // nullptr is encoded in DIBasicType format. Line number, filename,
152 ConstantInt::get(Type::getInt32Ty(VMContext), 0), // Line
168 // Basic types are encoded in DIBasicType format. Line number, filename,
175 ConstantInt::get(Type::getInt32Ty(VMContext), 0), // Line
194 ConstantInt::get(Type::getInt32Ty(VMContext), 0), // Line
214 ConstantInt::get(Type::getInt32Ty(VMContext), 0), // Line
231 ConstantInt::get(Type::getInt32Ty(VMContext), 0), // Line
252 ConstantInt::get(Type::getInt32Ty(VMContext), 0), // Line
292 ConstantInt::get(Type::getInt32Ty(VMContext), 0), // Line
313 ConstantInt::get(Type::getInt32Ty(VMContext), 0), // Line
    [all...]
  /external/mdnsresponder/mDNSPosix/
Responder.c 199 #pragma mark ***** Command Line Arguments
230 fprintf(stderr, " MUST be the last command-line argument;\n");
246 // Parses our command line arguments into the global variables
260 // Parse command line options using getopt.
327 // Check for any left over command line arguments.
483 // These first characters indicate a blank line.
532 // a comment line. Remove the leading '\' here before
541 // service name since the next blank line indicates the end
660 // Parse our command line arguments. This won't come back if there's an error.
  /external/skia/src/svg/
SkSVGParser.cpp 369 CASE_NEW(Line);
417 {"line", SkSVGType_Line},
  /external/clang/include/clang/Basic/
SourceManager.h 23 /// #line 17
27 /// The expansion location is the line in the source code where the macro
30 /// and the presumed location is where the line directive states that
31 /// the line is 17, or any other line.
114 /// \brief A bump pointer allocated array of offsets for each source line.
249 /// characteristic of the file and whether it has \#line info, all
282 /// \brief Return true if this FileID has \#line directives in it.
286 /// line table entries associated with it.
628 /// \brief Holds information for \#line directives
    [all...]
  /external/libvpx/libvpx/vp8/common/arm/armv6/
sixtappredict8x4_v6.asm 24 ;Line width is 20 that is 9 short data plus 2 to make it 4bytes aligned. In second pass, load data from stack,
114 add r0, r0, r1 ; move to next input line
214 add r0, r0, r1 ; move to next input line
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.pas 68 /// Advances the read position of the stream. Updates line and column state
83 /// The Lexer tracks line/col info as well as input index so its markers are
153 /// as line number. For seeking backwards, you will be presumably
215 /// The current line in the character stream (ANTLR tracks the
216 /// line information automatically. To support rewinding character
217 /// streams, we are able to [re-]set the line.
219 property Line: Integer read GetLine write SetLine;
223 /// line (0..N-1). To support rewinding character streams, we are
248 /// <summary>The line number on which this token was matched; line=1..N</summary
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
BaseRecognizer.cs 334 /** <summary>What is the error header, normally line/character position information?</summary> */
336 return "line " + e.Line + ":" + (e.CharPositionInLine + 1);
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
RemoteDebugEventSocketListener.cs 71 int line; field in class:Antlr.Runtime.Debug.RemoteDebugEventSocketListener.ProxyToken
78 int line, int charPos, string text) {
82 this.line = line;
106 public int Line {
108 return line;
111 line = value;
173 return "[" + Text + "/<" + type + ">" + channelStr + "," + line + ":" + CharPositionInLine + ",@" + index + "]";
180 int line = 0; field in class:Antlr.Runtime.Debug.RemoteDebugEventSocketListener.ProxyTree
185 public ProxyTree(int ID, int type, int line, int charPos, int tokenIndex, string text)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
BaseRecognizer.cs 389 /** <summary>What is the error header, normally line/character position information?</summary> */
396 return string.Format("{0}line {1}:{2}", prefix, e.Line, e.CharPositionInLine + 1);
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
RemoteDebugEventSocketListener.cs 75 int line; field in class:Antlr.Runtime.Debug.RemoteDebugEventSocketListener.ProxyToken
83 int line, int charPos, string text )
88 this.line = line;
118 public int Line
122 return line;
126 line = value;
208 return "[" + Text + "/<" + type + ">" + channelStr + "," + line + ":" + CharPositionInLine + ",@" + index + "]";
216 int line = 0; field in class:Antlr.Runtime.Debug.RemoteDebugEventSocketListener.ProxyTree
221 public ProxyTree( int ID, int type, int line, int charPos, int tokenIndex, string text
    [all...]
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/example/
echo_client.py 303 self._logger.debug('Client\'s opening handshake Request-Line: %r',
367 self._logger.debug('Start reading Status-Line')
379 'Wrong status line format: %r' % status_line)
387 self._logger.debug('Received valid Status-Line')
388 self._logger.debug('Start reading headers until we see an empty line')
398 self._logger.debug('Received an empty line')
508 # 4.1 5. send request line.
542 # RETURN U+000A LINE FEED character pair (CRLF).
546 # 4.1 25. send a UTF-8-encoded U+000D CARRIAGE RETURN U+000A LINE FEED
573 raise ClientHandshakeError('Wrong status line: %r' % field
    [all...]
  /external/skia/legacy/src/xml/
SkJSDisplayable.cpp 146 JS_INIT(Sk, Line)
  /external/skia/src/xml/
SkJSDisplayable.cpp 146 JS_INIT(Sk, Line)
  /external/valgrind/main/exp-bbv/tests/arm-linux/
ll.S 158 @ Middle-Line
  /external/blktrace/btreplay/doc/
btreplay.tex 40 This document presents the command line overview for
73 specify the \texttt{-a queue} command line option to \texttt{blktrace}.
242 \newpage\section{\label{sec:command-line}Command Line Options}
243 \subsection{\texttt{btrecord} Command Line Options}
288 The \texttt{-h} option displays the command line options and
382 \newpage\subsection{\texttt{btreplay} Command Line Options}
426 The \texttt{-h} option displays the command line options and
468 just two pieces of data per line:
492 supplied on the command line
    [all...]
  /external/llvm/lib/Analysis/
DependenceAnalysis.cpp 215 // Leave this out of line, so it will serve as a virtual method anchor
302 // If constraint is a line AX + BY = C, returns A.
305 assert((Kind == Line || Kind == Distance) &&
306 "Kind should be Line (or Distance)");
311 // If constraint is a line AX + BY = C, returns B.
314 assert((Kind == Line || Kind == Distance) &&
315 "Kind should be Line (or Distance)");
320 // If constraint is a line AX + BY = C, returns C.
323 assert((Kind == Line || Kind == Distance) &&
324 "Kind should be Line (or Distance)")
    [all...]

Completed in 1340 milliseconds

1 2 3 4 56 7