HomeSort by relevance Sort by last modified time
    Searched defs:line (Results 201 - 225 of 1421) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/chromium_org/net/disk_cache/
trace.cc 114 char line[kEntrySize + 2]; local
117 vsprintf_s(line, format, ap);
119 vsnprintf(line, kEntrySize, format, ap);
123 line[kEntrySize] = '\0';
124 LOG(INFO) << line;
134 memcpy(s_trace_buffer->buffer[s_trace_buffer->current], line, kEntrySize);
152 char line[kEntrySize + 2]; local
159 memcpy(line, s_trace_buffer->buffer[current], kEntrySize);
160 line[kEntrySize] = '\0';
161 size_t length = strlen(line);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8ScriptRunner.cpp 71 v8::Handle<v8::Integer> line = v8::Integer::New(scriptStartPosition.m_line.zeroBasedInt(), isolate); local
74 v8::ScriptOrigin origin(name, line, column, isSharedCrossOrigin);
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
ContentSearchUtils.cpp 70 String line = text.substring(start, lineEnd - start); local
71 if (line.endsWith('\r'))
72 line = line.left(line.length() - 1);
75 if (regex->match(line, 0, &matchLength) != -1)
76 result.append(pair<int, String>(lineNumber, line));
JavaScriptCallFrame.cpp 74 int JavaScriptCallFrame::line() const function in class:WebCore::JavaScriptCallFrame
78 v8::Handle<v8::Value> result = m_callFrame.newLocal(m_isolate)->Get(v8::String::NewSymbol("line"));
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGPathData.cpp 66 SVGLineElement* line = static_cast<SVGLineElement*>(element); local
69 path.moveTo(FloatPoint(line->x1CurrentValue().value(lengthContext), line->y1CurrentValue().value(lengthContext)));
70 path.addLineTo(FloatPoint(line->x2CurrentValue().value(lengthContext), line->y2CurrentValue().value(lengthContext)));
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
ScriptFormatterWorker.js 84 var line = lines[i];
86 scriptTokenizer.line = line;
90 var tokenValue = line.substring(column, newColumn);
95 currentFunction = { line: i, column: column, name: tokenValue };
104 currentFunction = { line: i, column: column, name: previousIdentifier };
137 } while (column < line.length);
180 this.line = content;
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
sampstat 32 usage = "usage: %prog [options] [FILES]\n Compute the mean and 95% confidence interval of a sample set.\n Standard input or files must contain two or more decimal numbers, one per line."
73 for line in fileinput.input(files):
74 match = re.search(decimalNumberPattern, line)
90 line = " %.2f %s" % (item, options.unit) variable
91 print line
92 length = len(line) if len(line) > length else length
  /external/chromium_org/third_party/freetype/src/base/
ftlcdfil.c 44 FT_Byte* line = bitmap->buffer; local
47 for ( ; height > 0; height--, line += bitmap->pitch )
53 val1 = line[0];
60 val1 = line[1];
71 val = line[xx];
80 line[xx - 2] = (FT_Byte)pix;
89 line[xx - 2] = (FT_Byte)pix;
93 line[xx - 1] = (FT_Byte)pix;
187 FT_Byte* line = bitmap->buffer; local
190 for ( ; height > 0; height--, line += pitch
    [all...]
  /external/chromium_org/third_party/icu/source/tools/gennorm2/
gennorm2.cpp 81 /* preset then read command line options */
89 "error in command line argument \"%s\"\n",
189 char line[300]; local
191 while(NULL!=fgets(line, (int)sizeof(line), f)) {
192 char *comment=(char *)strchr(line, '#');
196 u_rtrim(line);
197 if(line[0]==0) {
200 if(line[0]=='*') {
205 u_parseCodePointRangeAnyTerminator(line, &startCP, &endCP, &delimiter, errorCode)
    [all...]
  /external/chromium_org/third_party/icu/source/tools/toolutil/
uparse.c 77 char line[300]; local
101 while(T_FileStream_readLine(file, line, sizeof(line))!=NULL) {
103 length=(int32_t)(u_rtrim(line)-line);
106 * detect a line with # @missing:
107 * start parsing after that, or else from the beginning of the line
110 start=(char *)getMissingLimit(line);
111 if(start==line) {
117 /* skip this line if it is empty or a comment *
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
jsep.h 48 // The sdp line that causes the error.
49 std::string line; member in struct:webrtc::SdpParseError
61 // identification" as defined in [RFC 3388] for m-line this candidate is
64 // This indeicates the index (starting at zero) of m-line in the SDP this
85 // This class represents a collection of candidates for a specific m-line.
87 // candidates for a certain m-line.
111 // RFC 4566 for the SDP o= line.
122 // Returns a collection of all candidates that belong to a certain m-line
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
draw_pipe_unfilled.c 29 * \brief Drawing stage for handling glPolygonMode(line/point).
68 static void line( struct draw_stage *stage, function
75 stage->next->line( stage->next, &tmp );
102 if ((header->flags & DRAW_PIPE_EDGE_FLAG_2) && v2->edgeflag) line( stage, v2, v0 );
103 if ((header->flags & DRAW_PIPE_EDGE_FLAG_0) && v0->edgeflag) line( stage, v0, v1 );
104 if ((header->flags & DRAW_PIPE_EDGE_FLAG_1) && v1->edgeflag) line( stage, v1, v2 );
210 unfilled->stage.line = draw_pipe_passthrough_line;
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/indices/
u_unfilled_gen.py 101 def line( intype, outtype, ptr, v0, v1 ): function
107 # and only emitting each line at most once.
110 line( intype, outtype, ptr, v0, v1 )
111 line( intype, outtype, ptr + '+2', v1, v2 )
112 line( intype, outtype, ptr + '+4', v2, v0 )
115 line( intype, outtype, ptr, v0, v1 )
116 line( intype, outtype, ptr + '+2', v1, v2 )
117 line( intype, outtype, ptr + '+4', v2, v3 )
118 line( intype, outtype, ptr + '+6', v3, v0 )
171 line( intype, outtype, 'out+j', 'i', '(i+1)%(nr/2)'
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_aalinetemp.h 27 * Antialiased line template.
32 * Function to render each fragment in the AA line.
37 NAME(plot)(struct gl_context *ctx, struct LineInfo *line, int ix, int iy)
42 const GLfloat coverage = compute_coveragef(line, ix, iy);
43 const GLuint i = line->span.end;
50 line->span.end++;
51 line->span.array->coverage[i] = coverage;
52 line->span.array->x[i] = ix;
53 line->span.array->y[i] = iy;
60 line->span.array->z[i] = (GLuint) solve_plane(fx, fy, line->zPlane)
106 NAME(line)(struct gl_context *ctx, const SWvertex *v0, const SWvertex *v1) function
114 struct LineInfo line; local
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkUtilsArm.cpp 135 // Now, find a line that starts with "Features", i.e. look for
140 char* line = (char*) memmem(buffer, buffer_end - buffer, local
142 if (line == NULL) { // Weird, no Features line, bad kernel?
143 SkDebugf("Could not find a line starting with 'Features'"
148 line += features_len; // Skip the "\nFeatures\t" prefix
150 // Find the end of the current line
151 char* line_end = (char*) memchr(line, '\n', buffer_end - line);
160 const char* flag = (const char*) memmem(line, line_end - line
    [all...]
  /external/chromium_org/third_party/skia/src/pathops/
SkIntersections.cpp 45 int SkIntersections::cubicRay(const SkPoint pts[4], const SkDLine& line) {
48 return intersectRay(cubic, line);
122 int SkIntersections::quadRay(const SkPoint pts[3], const SkDLine& line) {
125 return intersectRay(quad, line);
172 SkDLine line; local
173 line.set(a);
174 return vertical(line, top, bottom, x, flipped);
  /external/chromium_org/third_party/tcmalloc/chromium/src/windows/
addr2line-pdb.c 80 fprintf(stderr, "(Then list the hex addresses on stdin, one per line)\n");
135 IMAGEHLP_LINE64 line; local
146 line.SizeOfStruct = sizeof(IMAGEHLP_LINE64);
147 if (SymGetLineFromAddr64(process, (DWORD64)addr, &dummy, &line)) {
148 printf("%s:%d\n", line.FileName, (int)line.LineNumber);
  /external/chromium_org/third_party/tcmalloc/vendor/src/windows/
addr2line-pdb.c 54 fprintf(stderr, "(Then list the hex addresses on stdin, one per line)\n");
142 IMAGEHLP_LINE64 line; local
153 line.SizeOfStruct = sizeof(IMAGEHLP_LINE64);
154 if (SymGetLineFromAddr64(process, (DWORD64)addr, &dummy, &line)) {
155 printf("%s:%d\n", line.FileName, (int)line.LineNumber);
  /external/chromium_org/tools/perf/utils/results_viewer/src/
main.js 71 //Starts from the first non-header line.
203 var line = []; variable
205 line.push(dataset[i][0]);
208 line.push(isNumeric(elementValue) ? parseFloat(elementValue) :
211 lines.push(line);
212 line = [];
227 * Approximate number of pixels that will be used per line
  /external/chromium_org/tools/traceline/traceline/
sym_resolver.h 141 IMAGEHLP_LINE64 line; local
143 proc_, static_cast<DWORD64>(ptr), &disp, &line)) {
145 name.append(line.FileName);
147 _itoa_s(line.LineNumber, buf, sizeof(buf), 10);
  /external/chromium_org/v8/test/mjsunit/
debug-sourceinfo.js 29 // For this test to work this file MUST have CR LF line endings.
68 // This is the last line of entire file (note: starting at 0).
70 // This is the last column of last line (note: starting at 0 and +2, due
74 // This magic number is the length or the first line comment (actually number
82 // The position of the first line of d(), i.e. "x = 1 ;".
84 // The line # of the first line of d() (note: starting at 0).
102 // Test that when running through source positions the position, line and
105 var line; variable
111 if (line == location.line) {
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_suppressions.cc 94 const char *line = str; local
95 while (line) {
96 while (line[0] == ' ' || line[0] == '\t')
97 line++;
98 const char *end = internal_strchr(line, '\n');
100 end = line + internal_strlen(line);
101 if (line != end && line[0] != '#')
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
SourcePosition.java 24 * line number and original bytecode address.
41 * {@code >= -1;} the line number, or {@code -1} if that
44 private final int line; field in class:SourcePosition
53 * @param line {@code >= -1;} original line number or {@code -1} if
56 public SourcePosition(CstString sourceFile, int address, int line) {
61 if (line < -1) {
62 throw new IllegalArgumentException("line < -1");
67 this.line = line;
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/util/
HexParser.java 32 * corresponding to the text. The format is simple: Each line may
36 * is encountered, it and the rest of the line are ignored as a
57 String line; local
59 line = src.substring(at, poundAt);
61 line = src.substring(at, nlAt);
65 int colonAt = line.indexOf(':');
69 int quoteAt = line.indexOf('\"');
74 String atStr = line.substring(0, colonAt).trim();
75 line = line.substring(colonAt + 1)
    [all...]
  /external/doclava/src/com/google/doclava/
Doclava2.java 53 String line = buf.readLine(); local
56 while (line != null) {
57 String[] names = line.split(" ");
63 line = buf.readLine();

Completed in 1615 milliseconds

1 2 3 4 5 6 7 891011>>