Searched defs:line (Results 251 - 275 of 882) sorted by relevance

<<11121314151617181920>>

/external/webkit/Source/WebCore/platform/chromium/
H A DChromiumDataObject.cpp40 // Per RFC 2483, the line separator for "text/..." MIME types is CR-LF.
195 // will get an empty string. This is in line with the HTML5 spec (see
198 String& line = uriList[i]; local
199 line = line.stripWhiteSpace();
200 if (line.isEmpty()) {
203 if (line[0] == '#')
205 KURL url = KURL(ParsedURLString, line);
H A DChromiumDataObjectLegacy.cpp40 // Per RFC 2483, the line separator for "text/..." MIME types is CR-LF.
193 // will get an empty string. This is in line with the HTML5 spec (see
196 String& line = uriList[i]; local
197 line = line.stripWhiteSpace();
198 if (line.isEmpty())
200 if (line[0] == '#')
202 KURL url = KURL(ParsedURLString, line);
/external/webkit/Source/WebCore/platform/graphics/android/rendering/
H A DGLExtras.cpp100 SkIRect line; local
104 line.fLeft = r.fLeft - borderWidth;
105 line.fRight = r.fRight + borderWidth;
106 line.fTop = r.fTop - borderWidth;
107 line.fBottom = r.fBottom + borderWidth;
108 if (clip.intersects(line)) {
109 clip.op(line, SkRegion::kReverseDifference_Op);
112 line = clip.getBounds();
113 if (SkIRect::Intersects(startRect, line)) {
117 line
[all...]
/external/webkit/Source/WebCore/platform/gtk/
H A DDataObjectGtk.cpp76 // will get an empty string. This is in line with the HTML5 spec (see
81 String& line = uriList[i]; local
82 line = line.stripWhiteSpace();
83 if (line.isEmpty())
85 if (line[0] == '#')
88 KURL url = KURL(KURL(), line);
96 GOwnPtr<gchar> filename(g_filename_from_uri(line.utf8().data(), 0, &error.outPtr()));
/external/webkit/Tools/CygwinDownloader/
H A Dcygwin-downloader.py88 for line in downloaded_packages_file.readlines():
89 if line[0] == "@":
90 current_package = line[2:-1]
92 elif line[:10] == "category: ":
94 line = "category: Base\n" variable
95 if "Base" in set(line[10:-1].split()):
97 elif line[:10] == "requires: ":
98 packages[current_package]["requires"] = line[10:].split()
100 elif line[:9] == "install: " and not len(packages[current_package]["path"]):
101 end_of_path = line
[all...]
/external/webkit/Tools/WebKitAPITest/
H A DTestsController.cpp79 void TestsController::testFailed(const char* file, int line, const char* message) argument
86 printf("FAIL: %s\n\t%s (%s:%d)\n", m_tests.first()->name(), message, file, line);
/external/clang/utils/
H A Dclang-completion-mode.el5 ;; This minor mode uses Clang's command line interface for code
41 ;; line, Clang's code-completion is enabled.
77 ;;; Compute the current line in the buffer
78 (defun current-line ()
103 (defun is-completion-line (line)
104 (or (string-match "OVERLOAD:" line)
105 (string-match (concat "COMPLETION: " clang-completion-substring) line)))
114 (completion-lines (filter 'is-completion-line all-lines)))
141 (number-to-string (+ 1 (current-line)))
[all...]
/external/aac/libAACenc/src/
H A Dgrp_data.cpp119 INT line; /* counts through lines */ local
138 for (line = sfbOffset[sfb+1]-1; line >= sfbOffset[sfb]; line--)
140 if ( mdctSpectrum[wnd*granuleLength_short+line] != FL2FXCONST_SPC(0.0) ) break; /* this band is not completely zero */
142 if (line >= sfbOffset[sfb]) break; /* this band was not completely zero */
258 for (line = width; line > 0; line--)
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
H A DAbstractTest.java66 public void setHeader(String rule, String lexicalRule, String treeRule, int numOfTest, int line) { argument
73 buf.append(lexicalRule + ", line"+line+")" + " - ");
75 else buf.append(rule + ", line"+line+")" + " - ");
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/runner/
H A DTestSuiteAdapter.java72 public static ITestCaseInput createStringInput(String line) { argument
73 if(line == null) throw new IllegalArgumentException("null");
75 return new TestCaseInputString(trimChars(line, 1));
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3input.h98 /** The line number we are traversing in the input file. This gets incremented
101 ANTLR3_UINT32 line; member in struct:ANTLR3_INPUT_STREAM_struct
103 /** Pointer into the input buffer where the current line
108 /** The offset within the current line of the current character
172 /** Pointer to function to return the current line number in the input stream
176 /** Pointer to function to return the current line buffer in the input stream
182 * is no way at the moment to position the input stream at a particular line
187 /** Pointer to function to return the current offset in the current input stream line
191 /** Pointer to function to set the current line number in the input stream
193 void (*setLine) (struct ANTLR3_INPUT_STREAM_struct * input, ANTLR3_UINT32 line);
255 ANTLR3_UINT32 line; member in struct:ANTLR3_LEX_STATE_struct
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DANTLRStringStream.cs56 /** <summary>line number 1..n within the input</summary> */
57 int line = 1; field in class:Antlr.Runtime.ANTLRStringStream
59 /** <summary>The index of the character relative to the beginning of the line 0..n-1</summary> */
67 * values line, charPositionInLine, and p that can change as you
124 return line;
127 line = value;
147 line = 1;
158 System.out.println("newline char found on line: "+line+
161 line
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
H A DTraceDebugEventListener.cs59 public override void Location(int line, int pos) { argument
60 Console.Out.WriteLine("location " + line + ":" + pos);
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DANTLRStringStream.cs58 /** <summary>line number 1..n within the input</summary> */
59 int line = 1; field in class:Antlr.Runtime.ANTLRStringStream
61 /** <summary>The index of the character relative to the beginning of the line 0..n-1</summary> */
69 * values line, charPositionInLine, and p that can change as you
135 return line;
139 line = value;
163 line = 1;
177 System.out.println("newline char found on line: "+line+
180 line
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
H A DSlimStringStream.cs59 /** <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
132 return line;
136 line = value;
183 line = 1;
199 System.out.println("newline char found on line: "+line+
202 line
[all...]
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DANTLRStringStream.java47 /** line number 1..n within the input */
48 protected int line = 1; field in class:ANTLRStringStream
50 /** The index of the character relative to the beginning of the line 0..n-1 */
57 * values line, charPositionInLine, and p that can change as you
92 line = 1;
103 System.out.println("newline char found on line: "+line+
106 line++;
165 state.line = line;
217 setLine(int line) argument
[all...]
H A DCommonToken.java34 protected int line; field in class:CommonToken
75 line = oldToken.getLine();
90 public void setLine(int line) { argument
91 this.line = line;
120 return line;
189 return "[@"+getTokenIndex()+","+start+":"+stop+"='"+txt+"',<"+type+">"+channelStr+","+line+":"+getCharPositionInLine()+"]";
H A DToken.java69 /** The line number on which this token was matched; line=1..n */
71 public void setLine(int line); argument
73 /** The index of the first character relative to the beginning of the line 0..n-1 */
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
H A DTraceDebugEventListener.java45 public void location(int line, int pos) {System.out.println("location "+line+":"+pos);} argument
/external/bison/src/
H A Dlocation.c60 int line = cur->line; local
72 line += line < INT_MAX;
87 cur->line = line;
92 if (line == INT_MAX && loc->start.line != INT_MAX)
93 warn_at (*loc, _("line number overflow"));
108 if (0 <= loc.start.line)
147 size_t line; member in struct:caret_info
[all...]
/external/bluetooth/bluedroid/btif/src/
H A Dbtif_sock_util.c69 #define asrt(s) if(!(s)) BTIF_TRACE_ERROR3("## %s assert %s failed at line:%d ##",__FUNCTION__, #s, __LINE__)
188 char *line; local
195 line = line_buff;
196 *line++ = ' ';
197 *line++ = ' ';
198 *line++ = ' ';
199 *line++ = ' ';
200 *line++ = ' ';
201 *line++ = ' ';
204 byte2hex((const char*)&j, &line);
[all...]
/external/chromium/app/sql/
H A Dconnection.h27 // - In the most common mode, you will use the source file and line number to
42 // Creates a uniquely named statement with the given file ane line number.
44 StatementID(const char* file, int line) argument
45 : number_(line),
227 // ID associated with the current line of code. This gives uniqueness without
/external/chromium/base/debug/
H A Dstack_trace_win.cc52 // 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.
H A Dtrace_event.cc56 int line) {
59 Trace(name, type, id, WideToUTF8(extra), file, line);
67 int line) {
89 line,
51 Trace(const std::string& name, EventType type, const void* id, const std::wstring& extra, const char* file, int line) argument
62 Trace(const std::string& name, EventType type, const void* id, const std::string& extra, const char* file, int line) argument
/external/chromium/base/
H A Dstring_split.cc64 const std::string& line,
71 size_t end_key_pos = line.find_first_of(key_value_delimiter);
73 DVLOG(1) << "cannot parse key from line: " << line;
76 key->assign(line, 0, end_key_pos);
79 std::string remains(line, end_key_pos, line.size() - end_key_pos);
82 DVLOG(1) << "cannot parse value from line: " << line;
94 const std::string& line,
93 SplitStringIntoKeyValuePairs( const std::string& line, char key_value_delimiter, char key_value_pair_delimiter, std::vector<std::pair<std::string, std::string> >* kv_pairs) argument
[all...]

Completed in 9207 milliseconds

<<11121314151617181920>>