HomeSort by relevance Sort by last modified time
    Searched refs:Line (Results 151 - 175 of 661) sorted by null

1 2 3 4 5 67 8 91011>>

  /prebuilts/go/darwin-x86/src/cmd/pprof/internal/profile/
profile.go 91 Line []Line
96 // Line corresponds to Profile.Line
97 type Line struct {
99 Line int64
276 for _, ln := range l.Line {
314 if !inlineFrame && len(l.Line) > 1 {
315 l.Line = l.Line[len(l.Line)-1:
    [all...]
filter.go 27 l.Line = l.unmatchedLines(hide)
28 if len(l.Line) == 0 {
61 for _, ln := range loc.Line {
76 func (loc *Location) unmatchedLines(re *regexp.Regexp) []Line {
77 var lines []Line
78 for _, ln := range loc.Line {
  /prebuilts/go/linux-x86/src/cmd/pprof/internal/profile/
profile.go 91 Line []Line
96 // Line corresponds to Profile.Line
97 type Line struct {
99 Line int64
276 for _, ln := range l.Line {
314 if !inlineFrame && len(l.Line) > 1 {
315 l.Line = l.Line[len(l.Line)-1:
    [all...]
filter.go 27 l.Line = l.unmatchedLines(hide)
28 if len(l.Line) == 0 {
61 for _, ln := range loc.Line {
76 func (loc *Location) unmatchedLines(re *regexp.Regexp) []Line {
77 var lines []Line
78 for _, ln := range loc.Line {
  /external/llvm/include/llvm/ProfileData/
CoverageMapping.h 330 /// \brief The line where this segment begins.
331 unsigned Line;
341 CoverageSegment(unsigned Line, unsigned Col, bool IsRegionEntry)
342 : Line(Line), Col(Col), Count(0), HasCount(false),
345 CoverageSegment(unsigned Line, unsigned Col, uint64_t Count,
347 : Line(Line), Col(Col), Count(Count), HasCount(true),
351 return std::tie(L.Line, L.Col, L.Count, L.HasCount, L.IsRegionEntry) ==
352 std::tie(R.Line, R.Col, R.Count, R.HasCount, R.IsRegionEntry)
    [all...]
  /external/google-breakpad/src/common/
stabs_to_module.cc 117 bool StabsToModule::Line(uint64_t address, const char *name, int number) {
124 Module::Line line; local
125 line.address = address;
126 line.size = 0; // We compute this in StabsToModule::Finalize().
127 line.file = current_source_file_;
128 line.number = number;
129 current_function_->lines.push_back(line);
182 Module::Line::CompareByAddress);
183 vector<Module::Line>::iterator last_line = f->lines.end() - 1
    [all...]
dwarf_cu_to_module.h 65 // function, and source line information.
124 // An abstract base class for handlers that handle DWARF line data
139 // Populate MODULE and LINES with source file names and code/line
140 // mappings, given a pointer to some DWARF line number data
144 Module *module, vector<Module::Line> *lines) = 0;
190 // FUNCTION includes code covered by no line number data.
193 // Line number NUMBER in LINE_FILE, of length LENGTH, includes code
195 virtual void UncoveredLine(const Module::Line &line);
224 // Print an unpaired function/line heading, once
    [all...]
  /external/icu/icu4c/source/samples/layout/
paragraph.cpp 94 fLines = LE_NEW_ARRAY(const ParagraphLayout::Line *, fLinesMax);
163 for (le_int32 line = 0; line < fLineCount; line += 1) {
164 delete /*(LineInfo *)*/ fLines[line];
176 void Paragraph::addLine(const ParagraphLayout::Line *line)
179 fLines = (const ParagraphLayout::Line **) LE_GROW_ARRAY(fLines, fLinesMax + fLinesGrow);
183 fLines[fLineCount++] = line;
198 const ParagraphLayout::Line *line local
229 const ParagraphLayout::Line *line = fLines[li]; local
    [all...]
  /external/llvm/lib/IR/
DiagnosticInfo.cpp 35 /// -pass-remarks* command line flags. Passes whose name matches this regexp
60 // Command line flag to enable emitOptimizationRemark()
69 // Command line flag to enable emitOptimizationRemarkMissed()
78 // Command line flag to enable emitOptimizationRemarkAnalysis()
112 DP << " at line " << getLocCookie();
146 unsigned *Line,
151 *Line = L->getLine();
157 unsigned Line = 0;
160 getLocation(&Filename, &Line, &Column);
161 return (Filename + ":" + Twine(Line) + ":" + Twine(Column)).str()
    [all...]
  /prebuilts/go/darwin-x86/src/go/ast/
commentmap.go 132 // - g starts on the same line as n ends
133 // - g starts on the line immediately following n, and there is
134 // at least one empty line after g and before the next node
139 // node possible: For instance, if the comment is a line comment
179 qpos.Line = infinity
197 (pgend.Line == r.pos.Line ||
198 pgend.Line+1 == r.pos.Line && r.end.Line+1 < qpos.Line)
    [all...]
  /prebuilts/go/linux-x86/src/go/ast/
commentmap.go 132 // - g starts on the same line as n ends
133 // - g starts on the line immediately following n, and there is
134 // at least one empty line after g and before the next node
139 // node possible: For instance, if the comment is a line comment
179 qpos.Line = infinity
197 (pgend.Line == r.pos.Line ||
198 pgend.Line+1 == r.pos.Line && r.end.Line+1 < qpos.Line)
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/glutils/
ShapeRenderer.java 42 * shapeRenderer.begin(ShapeType.Line);
44 * shapeRenderer.line(x, y, x2, y2);
62 * shapeRenderer.begin(ShapeType.Line);
82 Point(GL20.GL_POINTS), Line(GL20.GL_LINES), Filled(GL20.GL_TRIANGLES);
199 begin(ShapeType.Line);
224 /** Draws a point using {@link ShapeType#Point}, {@link ShapeType#Line} or {@link ShapeType#Filled}. */
226 if (shapeType == ShapeType.Line) {
228 line(x - size, y - size, z, x + size, y + size, z);
240 /** Draws a line using {@link ShapeType#Line} or {@link ShapeType#Filled}. */
241 public final void line (float x, float y, float z, float x2, float y2, float z2) { method in class:ShapeRenderer
242 line(x, y, z, x2, y2, z2, color, color); method
246 public final void line (Vector3 v0, Vector3 v1) { method in class:ShapeRenderer
247 line(v0.x, v0.y, v0.z, v1.x, v1.y, v1.z, color, color); method
251 public final void line (float x, float y, float x2, float y2) { method in class:ShapeRenderer
252 line(x, y, 0.0f, x2, y2, 0.0f, color, color); method
256 public final void line (Vector2 v0, Vector2 v1) { method in class:ShapeRenderer
257 line(v0.x, v0.y, 0.0f, v1.x, v1.y, 0.0f, color, color); method
261 public final void line (float x, float y, float x2, float y2, Color c1, Color c2) { method in class:ShapeRenderer
262 line(x, y, 0.0f, x2, y2, 0.0f, c1, c2); method
267 public void line (float x, float y, float z, float x2, float y2, float z2, Color c1, Color c2) { method in class:ShapeRenderer
    [all...]
  /prebuilts/go/darwin-x86/src/text/scanner/
scanner_test.go 74 {Comment, "// line comments"},
236 func checkTok(t *testing.T, s *Scanner, line int, got, want rune, text string) {
240 if s.Line != line {
241 t.Errorf("line = %d, want %d for %q", s.Line, line, text)
269 line := 1
272 checkTok(t, s, line, tok, k.tok, k.text)
275 line += countNewlines(k.text) + 1 // each token is on a new lin
    [all...]
  /prebuilts/go/linux-x86/src/text/scanner/
scanner_test.go 74 {Comment, "// line comments"},
236 func checkTok(t *testing.T, s *Scanner, line int, got, want rune, text string) {
240 if s.Line != line {
241 t.Errorf("line = %d, want %d for %q", s.Line, line, text)
269 line := 1
272 checkTok(t, s, line, tok, k.tok, k.text)
275 line += countNewlines(k.text) + 1 // each token is on a new lin
    [all...]
  /external/llvm/lib/ProfileData/
CoverageMapping.cpp 277 void startSegment(unsigned Line, unsigned Col) {
278 DEBUG(dbgs() << "Top level segment at " << Line << ":" << Col << "\n");
279 Segments.emplace_back(Line, Col, /*IsRegionEntry=*/false);
283 void startSegment(unsigned Line, unsigned Col, bool IsRegionEntry,
286 Segments.emplace_back(Line, Col, IsRegionEntry);
289 if (S.Line != Line || S.Col != Col) {
290 Segments.emplace_back(Line, Col, IsRegionEntry);
293 DEBUG(dbgs() << "Segment at " << Line << ":" << Col);
311 unsigned Line = Active->LineEnd, Col = Active->ColumnEnd
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
CommonToken.cs 43 int line; field in class:Antlr.Runtime.CommonToken
95 line = oldToken.Line;
146 public int Line
150 return line;
154 line = value;
250 return "[@" + TokenIndex + "," + start + ":" + stop + "='" + txt + "',<" + type + ">" + channelStr + "," + line + ":" + CharPositionInLine + "]";
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
SlimStringStream.cs 59 /** <summary>line number 1..n within the input</summary> */
60 protected int line = 1; field in class:Antlr.Runtime.SlimStringStream
62 /** <summary>The index of the character relative to the beginning of the line 0..n-1</summary> */
71 * values line, charPositionInLine, and p that can change as you
128 public int Line
132 return line;
136 line = value;
151 public int Line
183 line = 1;
199 System.out.println("newline char found on line: "+line
    [all...]
  /external/clang/include/clang/ASTMatchers/Dynamic/
Diagnostics.h 32 SourceLocation() : Line(), Column() {}
33 unsigned Line;
  /external/clang/unittests/Tooling/
RewriterTestContext.h 87 SourceLocation getLocation(FileID ID, unsigned Line, unsigned Column) {
89 Sources.getFileEntryForID(ID), Line, Column);
  /external/elfutils/tests/
run-readelf-line.sh 20 # Tests readelf --debug-dump=line and --debug-dump=decodedline
25 testrun_compare ${abs_top_builddir}/src/readelf --debug-dump=line testfilefoobarbaz <<EOF
37 Line base: -5
38 Line range: 14
62 Line number statements:
64 [ 3c] advance line by constant 15 to 16
66 [ 3f] special opcode 159: address+10 = 0x80482fa <main+0xa>, line+1 = 17
67 [ 40] special opcode 117: address+7 = 0x8048301 <main+0x11>, line+1 = 18
68 [ 41] advance line by constant -9 to 9
69 [ 43] special opcode 200: address+13 = 0x804830e <main+0x1e>, line+0 =
    [all...]
  /external/icu/icu4c/source/layoutex/
ParagraphLayout.cpp 665 ParagraphLayout::Line *ParagraphLayout::nextLine(float width)
681 // If no glyphs fit on the line, force one to fit.
684 // start of a line unless the paragraph consists of
687 // the previous line...)
1009 ParagraphLayout::Line *ParagraphLayout::computeVisualRuns()
1026 Line *line = new Line(); local
1043 appendRun(line, run, firstChar, lastChar);
1047 return line;
    [all...]
  /external/llvm/bindings/go/llvm/
dibuilder.go 158 Line int
168 C.unsigned(b.Line),
185 Line int
206 C.unsigned(f.Line),
221 Line int
236 C.unsigned(v.Line),
248 Line int
268 C.unsigned(v.Line),
341 Line int
359 C.unsigned(t.Line),
    [all...]
  /external/llvm/include/llvm/Support/
GCOV.h 138 /// readLineTag - If cursor points to a line tag then increment the
366 // line.
401 void addBlockLine(StringRef Filename, uint32_t Line, const GCOVBlock *Block) {
402 if (Line > LineInfo[Filename].LastLine)
403 LineInfo[Filename].LastLine = Line;
404 LineInfo[Filename].Blocks[Line - 1].push_back(Block);
406 void addFunctionLine(StringRef Filename, uint32_t Line,
408 if (Line > LineInfo[Filename].LastLine)
409 LineInfo[Filename].LastLine = Line;
410 LineInfo[Filename].Functions[Line - 1].push_back(Function)
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nv10_state_polygon.c 63 GLboolean smooth = ctx->Line.SmoothFlag &&
68 ctx->Line.Width) * 8);
  /prebuilts/go/darwin-x86/src/net/textproto/
reader_test.go 53 t.Fatalf("Line 1: %s, %v", s, err)
57 t.Fatalf("Line 2: %s, %v", s, err)
69 t.Fatalf("Line 1: %s, %v", s, err)
72 if s != "line 2" || err != nil {
73 t.Fatalf("Line 2: %s, %v", s, err)
77 t.Fatalf("Line 3: %s, %v", s, err)
89 t.Fatalf("Line 1: %d, %s, %v", code, msg, err)
93 t.Fatalf("Line 2: %d, %s, %v", code, msg, err)
97 t.Fatalf("Line 3: %d, %s, %v", code, msg, err)
100 t.Fatalf("Line 3: wrong error %v\n", err
    [all...]

Completed in 558 milliseconds

1 2 3 4 5 67 8 91011>>