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

1 2 3 4 5 6 7 891011>>

  /external/chromium/base/debug/
stack_trace_win.cc 52 // to the ostream os. The format for each line of the backtrace is:
85 // Attempt to retrieve line number information.
87 IMAGEHLP_LINE64 line = {}; local
88 line.SizeOfStruct = sizeof(IMAGEHLP_LINE64);
90 &line_displacement, &line);
92 // Output the backtrace line.
102 (*os) << " (" << line.FileName << ":" << line.LineNumber << ")";
114 // get line numbers.
  /external/chromium/net/disk_cache/
trace.cc 119 char line[kEntrySize + 2]; local
126 memcpy(line, s_trace_buffer->buffer[current], kEntrySize);
127 line[kEntrySize] = '\0';
128 size_t length = strlen(line);
130 line[length] = '\n';
131 line[length + 1] = '\0';
132 DebugOutput(line);
  /external/chromium_org/base/android/java/src/org/chromium/base/
SysUtils.java 60 String line; local
62 line = reader.readLine();
63 if (line == null) {
67 Matcher m = pattern.matcher(line);
  /external/chromium_org/base/
environment.cc 104 // placed into the given string, and the total length of the line, including
153 const wchar_t* line = &env[cur_env]; local
154 size_t line_length = ParseEnvLine(line, &key);
159 result.append(line, line_length);
188 std::vector<size_t> result_indices; // Line indices into value_storage.
  /external/chromium_org/chrome/browser/ui/webui/
version_handler.cc 97 std::string line = active_groups[i].trial_name + ":" + local
99 base::ReplaceChars(line, "-", kNonBreakingHyphenUTF8String, &line);
100 variations.push_back(line);
  /external/chromium_org/chrome/tools/convert_dict/
dic_reader.cc 22 void SplitDicLine(const std::string& line, std::vector<std::string>* output) {
23 // We split the line on a slash not preceded by a backslash. A slash at the
24 // beginning of the line is not a separator either.
25 size_t slash_index = line.size();
26 for (size_t i = 0; i < line.size(); i++) {
27 if (line[i] == '/' && i > 0 && line[i - 1] != '\\') {
37 std::string word = line.substr(0, slash_index);
42 if (slash_index < line.size() - 1)
43 output->push_back(line.substr(slash_index + 1))
59 std::string line = ReadLine(file); local
    [all...]
  /external/chromium_org/content/browser/accessibility/
accessibility_tree_formatter_gtk.cc 43 base::string16 line; local
47 WriteAttribute(true, base::StringPrintf("[%s]", role_value.c_str()), &line);
52 &line);
59 &line);
68 WriteAttribute(true, state_value, &line);
75 &line);
77 return indent + line + ASCIIToUTF16("\n");
  /external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
fake_resource_manager.h 27 int line);
51 int line);
78 int line() const { return line_; } function in class:FakeResourceTracker
  /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 71 String line = text.substring(start, lineEnd - start); local
72 if (line.endsWith('\r'))
73 line = line.left(line.length() - 1);
76 if (regex->match(line, 0, &matchLength) != -1)
77 result.append(pair<int, String>(lineNumber, line));
JavaScriptCallFrame.cpp 75 int JavaScriptCallFrame::line() const function in class:WebCore::JavaScriptCallFrame
79 v8::Handle<v8::Value> result = m_callFrame.newLocal(m_isolate)->Get(v8AtomicString(m_isolate, "line"));
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGPathData.cpp 63 SVGLineElement* line = toSVGLineElement(element); local
66 path.moveTo(FloatPoint(line->x1CurrentValue().value(lengthContext), line->y1CurrentValue().value(lengthContext)));
67 path.addLineTo(FloatPoint(line->x2CurrentValue().value(lengthContext), line->y2CurrentValue().value(lengthContext)));
  /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 46 FT_Byte* line = bitmap->buffer; local
49 for ( ; height > 0; height--, line += bitmap->pitch )
55 val1 = line[0];
62 val1 = line[1];
73 val = line[xx];
82 line[xx - 2] = (FT_Byte)pix;
91 line[xx - 2] = (FT_Byte)pix;
95 line[xx - 1] = (FT_Byte)pix;
189 FT_Byte* line = bitmap->buffer; local
192 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/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

Completed in 523 milliseconds

1 2 3 4 5 6 7 891011>>