Searched defs:line (Results 251 - 275 of 1454) sorted by path

<<11121314151617181920>>

/external/chromium_org/third_party/WebKit/Source/core/rendering/line/
H A DLineLayoutState.h86 void setEndLine(RootInlineBox* line) { m_endLine = line; } argument
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DAppliedTextDecoration.cpp10 AppliedTextDecoration::AppliedTextDecoration(TextDecoration line, TextDecorationStyle style, StyleColor color) argument
11 : m_line(line)
17 AppliedTextDecoration::AppliedTextDecoration(TextDecoration line) argument
18 : m_line(line)
H A DAppliedTextDecoration.h19 TextDecoration line() const { return static_cast<TextDecoration>(m_line); } function in class:blink::AppliedTextDecoration
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DSVGPathData.cpp68 SVGLineElement* line = toSVGLineElement(element); local
71 path.moveTo(FloatPoint(line->x1()->currentValue()->value(lengthContext), line->y1()->currentValue()->value(lengthContext)));
72 path.addLineTo(FloatPoint(line->x2()->currentValue()->value(lengthContext), line->y2()->currentValue()->value(lengthContext)));
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/UglifyJS/
H A Dparse-js.js229 function JS_Parse_Error(message, line, col, pos) {
231 this.line = line;
242 return this.message + " (line: " + this.line + ", col: " + this.col + ", pos: " + this.pos + ")" + "\n\n" + this.stack;
245 function js_error(message, line, col, pos) {
246 throw new JS_Parse_Error(message, line, col, pos);
261 line : 0,
278 ++S.line;
297 S.tokline = S.line;
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A Dexterns.js306 getLine: function(line) { },
310 getLineHandle: function(line) { },
311 getLineNumber: function(line) { },
323 getStateAfter: function(line) { },
338 lineInfo: function(line) { },
357 removeLine: function(line) { },
376 setCursor: function(line, ch, extend) { },
378 setGutterMarker: function(line, gutterID, value) { },
380 setLine: function(line, text) { },
409 CodeMirror.Pos = function(line, c
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/script_formatter_worker/
H A DScriptFormatterWorker.js39 function tokenize(line, callback)
41 var stream = new CodeMirror.StringStream(line);
123 var line = lines[i];
124 tokenizer(line, processToken);
147 currentFunction = { line: i, column: column, name: previousToken + " " + tokenValue };
154 currentFunction = { line: i, column: column, name: tokenValue };
163 currentFunction = { line: i, column: column, name: previousIdentifier };
313 var line = lines[lineNumber];
314 tokenizer(line, processToken);
380 this.line
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
H A DCSSMetadata.js98 if (propertyName === "line-height")
109 "line-height", "list-style-image", "list-style-position", "list-style-type", "list-style", "orphans", "overflow-wrap", "pitch-range",
405 "line-height": { values: [
427 "blink", "line-through", "overline", "underline"
494 "normal", "nowrap", "pre", "pre-line", "pre-wrap"
593 "-webkit-line-break": { values: [
605 "-webkit-text-decoration-line": { values: [
606 "none", "underline", "overline", "line-through", "blink"
808 "line-height": 75,
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/source_frame/
H A DSourceFrame.js107 var element = target.enclosingNodeOrSelfWithClass("text-editor-line-decoration-icon")
108 || target.enclosingNodeOrSelfWithClass("text-editor-line-decoration-wave");
121 var messageBucket = anchor.enclosingNodeOrSelfWithClass("text-editor-line-decoration")._messageBucket;
123 var popoverAnchor = anchor.enclosingNodeOrSelfWithClass("text-editor-line-decoration-icon") ? anchor : this._errorWavePopoverAnchor;
141 for (var line in this._rowMessageBuckets) {
142 var bucket = this._rowMessageBuckets[line];
217 this.addMessageToSource(msg.line - 1, msg);
222 for (var line in this._rowMessageBuckets) {
223 var bubble = this._rowMessageBuckets[line];
232 * @param {number} line
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
H A DTextEditor.js251 line: function(lineNumber) { },
259 * @param {number} line
263 setAttribute: function(line, name, value) { },
266 * @param {number} line
270 getAttribute: function(line, name) { },
273 * @param {number} line
276 removeAttribute: function(line, name) { },
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/javascript/ com/google/javascript/jscomp/ ...
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/jsdoc-validator/
H A Djsdoc-validator.jar ... SourcePosition extends java.lang.Object { public final int line public final int column public void " href="/5.1. ...
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/
H A DValidatorContext.java68 position.line,
70 sourceFile.getLine(position.line),
86 public final int line; field in class:ValidatorContext.SourcePosition
89 public SourcePosition(int line, int column) { argument
90 this.line = line;
/external/chromium_org/third_party/WebKit/Source/platform/clipboard/
H A DClipboardUtilities.cpp53 // be found, return an empty string. This is in line with the HTML5 spec.
55 String& line = items[i]; local
56 line = line.stripWhiteSpace();
57 if (line.isEmpty())
59 if (line[0] == '#')
61 KURL url = KURL(ParsedURLString, line);
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebCommon.cpp38 void failedAssertion(const char* file, int line, const char* function, const char* assertion) argument
40 WTFReportAssertionFailure(file, line, function, assertion);
/external/chromium_org/third_party/WebKit/Source/platform/graphics/cpu/arm/filters/
H A DFEGaussianBlurNEON.h48 int line = y * pixelLine; local
53 float32x4_t sourcePixelAsFloat = loadRGBA8AsFloat(sourcePixel + line + i * pixelStride);
59 int pixelOffset = line + x * pixelStride;
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
H A DFEDisplacementMap.cpp145 int line = y * stride; local
147 int dstIndex = line + x * 4;
/external/chromium_org/third_party/WebKit/Source/platform/mhtml/
H A DMHTMLParser.cpp101 String line; local
104 while (!(line = buffer->nextChunkAsUTF8StringWithLatin1Fallback()).isNull()) {
105 if (line.isEmpty())
106 break; // Empty line means end of key/value section.
107 if (line[0] == '\t') {
109 value.append(line.substring(1));
120 size_t semiColonIndex = line.find(':');
125 key = line.substring(0, semiColonIndex).lower().stripWhiteSpace();
126 value.append(line.substring(semiColonIndex + 1));
192 String line; local
320 String line = m_lineReader.nextChunkAsUTF8StringWithLatin1Fallback(); local
327 String line; local
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DBidiResolverTest.cpp129 const std::string& line, size_t lineNumber);
165 const std::string& line, size_t lineNumber)
198 errorContext << ", line " << lineNumber << " \"" << line << "\""; local
163 runTest(const std::basic_string<UChar>& input, const std::vector<int>& expectedOrder, const std::vector<int>& expectedLevels, bidi_test::ParagraphDirection paragraphDirection, const std::string& line, size_t lineNumber) argument
H A DBidiTestHarness.h147 static std::vector<int> parseLevels(const std::string& line) argument
150 std::vector<std::string> strings = parseStringList(line);
164 static std::basic_string<UChar> parseTestString(const std::string& line) argument
195 std::vector<std::string> charClasses = parseStringList(line);
203 static bool parseParagraphDirectionMask(const std::string& line, int& modeMask) argument
205 modeMask = atoi(line.c_str());
209 static void parseError(const std::string& line, size_t lineNumber) argument
212 printf("Parse error, line %zu : %s\n", lineNumber, line.c_str());
228 std::string line; local
[all...]
H A DSegmentedString.cpp320 void SegmentedString::setCurrentPosition(OrdinalNumber line, OrdinalNumber columnAftreProlog, int prologLength) argument
322 m_currentLine = line.zeroBasedInt();
/external/chromium_org/third_party/WebKit/Source/web/tests/
H A DWebPageNewSerializerTest.cpp60 bool getNextLine(std::string* line) argument
62 line->clear();
68 *line = m_text.substr(m_index);
71 *line = m_text.substr(m_index, endOfLineIndex - m_index);
327 // Read the MHTML data line per line and do some pseudo-parsing to make sure the right encoding is used for the different sections.
331 std::string line; local
332 while (lineReader.getNextLine(&line)) {
333 if (!line.find("Content-Type:")) {
335 if (line
389 std::string line; local
467 std::string line; local
490 std::string line; local
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DAssertions.cpp190 static void printCallSite(const char* file, int line, const char* function) argument
193 _CrtDbgReport(_CRT_WARN, file, line, NULL, "%s\n", function);
196 // using Visual Studio can double-click the file/line number in the Output Window to have the
197 // editor navigate to that line of code. It seems fine for other developers, too.
198 printf_stderr_common("%s(%d) : %s\n", file, line, function);
202 void WTFReportAssertionFailure(const char* file, int line, const char* function, const char* assertion) argument
208 printCallSite(file, line, function);
211 void WTFReportAssertionFailureWithMessage(const char* file, int line, const char* function, const char* assertion, const char* format, ...) argument
218 printCallSite(file, line, function);
221 void WTFReportArgumentAssertionFailure(const char* file, int line, cons argument
347 WTFReportFatalError(const char* file, int line, const char* function, const char* format, ...) argument
357 WTFReportError(const char* file, int line, const char* function, const char* format, ...) argument
378 WTFLogVerbose(const char* file, int line, const char* function, WTFLogChannel* channel, const char* format, ...) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DTextPosition.h63 TextPosition(OrdinalNumber line, OrdinalNumber column) argument
64 : m_line(line)
76 // A value with line value less than a minimum; used as an impossible position.
79 // A value corresponding to a position with given offset within text having the specified line ending offsets.
/external/chromium_org/third_party/WebKit/Tools/Scripts/
H A Dexport-w3c-performance-wg-tests76 for line in in_file:
78 line = line.replace(to_find, replace_with) variable
79 out_file.write(line)

Completed in 530 milliseconds

<<11121314151617181920>>