Searched refs:lineCount (Results 1 - 24 of 24) sorted by relevance

/macosx-10.9.5/RubyCocoa-80/RubyCocoa/sample/VPRubyPluginEnabler/Script PlugIns/
H A Dcount of words in page.rb15 lineCount = lText.split("\n").size
18 wordCount, lineCount, letterCount)
/macosx-10.9.5/ICU-511.35/icuSources/tools/genrb/
H A Dread.c37 static int32_t lineCount; variable
52 lineCount = 1;
83 *linenumber = lineCount;
103 *linenumber = lineCount;
200 lineCount++;
222 warning(lineCount, "Mixing quoted and unquoted strings");
404 line = lineCount;
422 /* increment the lineCount */
450 lineCount++;
467 lineCount
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/tools/gendict/
H A Dgendict.cpp368 int lineCount = 0;
371 lineCount++;
378 fprintf(stderr, "Error: no word on line %i!\n", lineCount);
390 fprintf(stderr, "Error: value too long on line %i!\n", lineCount);
399 fprintf(stderr, "Error: value syntax error or value too large on line %i!\n", lineCount);
412 status.errorName(), lineCount);
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A DCodeMirrorTextEditor.js103 if (lineNumber >= this._codeMirror.lineCount || column > this._codeMirror.getLine(lineNumber).length || lineNumber < 0 || column < 0)
141 if (lineNumber < 0 || lineNumber >= this._codeMirror.lineCount())
445 var totalLines = this._codeMirror.lineCount();
553 var lineCount = this.linesCount;
554 var lastLine = this._codeMirror.getLine(lineCount - 1);
555 return this._toRange({ line: 0, ch: 0 }, { line: lineCount - 1, ch: lastLine.length });
572 return this._codeMirror.lineCount();
729 if (cursor.ch !== line.length || cursor.line + 1 === codeMirror.lineCount())
/macosx-10.9.5/tcl-102/tcl_ext/incrtcl/iwidgets/generic/
H A Dmessagebox.itk327 set lineCount [lindex [split [$itk_component(text) index end] "."] 0]
329 if { $lineCount > $itk_option(-maxlines) } {
330 set numLines [expr {$lineCount - $itk_option(-maxlines) -1}]
/macosx-10.9.5/WebCore-7537.78.1/bindings/js/
H A DScriptDebugServer.cpp296 int lineCount = 1; local
300 lineCount += 1;
305 script.endLine = script.startLine + lineCount - 1;
306 if (lineCount == 1)
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/cm/
H A Dmatchbrackets.js32 for (var i = cur.line, found, e = forward ? Math.min(i + 100, cm.lineCount()) : Math.max(-1, i - 100); i != e; i+=d) {
H A Dcodemirror.js4492 lineCount: function() {return this.size;},
/macosx-10.9.5/modemccl-25.1/CCLEngine/
H A DCCLEngine.h254 u_int16_t lineCount; // number of lines in the script member in struct:TRScriptVars
H A DCCLEngine.c875 SV.lineCount = 0;
1124 // Lindex is 1-based; lineCount is zero-based
1126 SV.lineCount = Lindex - 1;
1129 SV.lineCount++;
1149 SV.indexTable = malloc(SV.lineCount * sizeof(u_int16_t *));
1156 for( i = 0; ++i <= SV.lineCount; )
1384 if ((SV.scriptLine < 1) || (SV.scriptLine > SV.lineCount))
/macosx-10.9.5/JavaScriptCore-7537.78.1/bytecode/
H A DUnlinkedCodeBlock.h104 unsigned lineCount() const { return m_lineCount; } function in class:JSC::UnlinkedFunctionExecutable
453 void recordParse(CodeFeatures features, bool hasCapturedVariables, unsigned firstLine, unsigned lineCount) argument
458 m_lineCount = lineCount;
464 unsigned lineCount() const { return m_lineCount; } function in class:JSC::UnlinkedCodeBlock
H A DCodeBlock.cpp1674 unsigned lineCount = unlinkedExecutable->lineCount(); local
1681 FunctionExecutable* executable = FunctionExecutable::create(*m_vm, code, unlinkedExecutable, firstLine, firstLine + lineCount, startColumn);
1688 unsigned lineCount = unlinkedExecutable->lineCount(); local
1695 FunctionExecutable* executable = FunctionExecutable::create(*m_vm, code, unlinkedExecutable, firstLine, firstLine + lineCount, startColumn);
/macosx-10.9.5/JavaScriptCore-7537.78.1/runtime/
H A DCodeCache.cpp120 executable->recordParse(unlinkedCode->codeFeatures(), unlinkedCode->hasCapturedVariables(), firstLine, firstLine + unlinkedCode->lineCount(), startColumn);
H A DExecutable.cpp668 return FunctionExecutable::create(exec->vm(), functionSource, unlinkedFunction, firstLine, unlinkedFunction->lineCount(), startColumn);
/macosx-10.9.5/WebCore-7537.78.1/rendering/
H A DEllipsisBox.cpp78 RootInlineBox* lastLine = block->lineAtIndex(block->lineCount() - 1);
H A DRenderDeprecatedFlexibleBox.cpp1002 maxLineCount = max(maxLineCount, toRenderBlock(child)->lineCount());
1017 int lineCount = blockChild->lineCount(); local
1018 if (lineCount <= numVisibleLines)
1034 RootInlineBox* lastLine = blockChild->lineAtIndex(lineCount - 1);
H A DRenderBlock.cpp6959 int RenderBlock::lineCount(const RootInlineBox* stopRootInlineBox, bool* found) const function in class:WebCore::RenderBlock
6977 count += toRenderBlock(obj)->lineCount(stopRootInlineBox, &recursiveFound);
7587 unsigned lineCount = max<unsigned>(renderStyle->hasAutoOrphans() ? 1 : renderStyle->orphans(), renderStyle->hasAutoWidows() ? 1 : renderStyle->widows()); local
7588 if (lineCount > 1) {
7590 for (unsigned i = 1; i < lineCount && line->prevRootBox(); i++)
7652 if (((lineBox == firstRootBox() && totalLogicalHeight < pageLogicalHeightAtNewOffset) || (!style()->hasAutoOrphans() && style()->orphans() >= lineCount(lineBox)))
H A DRenderBlock.h257 int lineCount(const RootInlineBox* = 0, bool* = 0) const;
/macosx-10.9.5/tcl-102/tk/tk/generic/
H A DtkTextDisp.c578 TkTextLine *linePtr, int lineCount, int action);
3192 * If linePtr is NULL then 'lineCount' and 'action' are ignored and all
3210 int lineCount, /* And includes this many following lines. */
3215 TextInvalidateLineMetrics(textPtr, linePtr, lineCount, action);
3219 TextInvalidateLineMetrics(textPtr, linePtr, lineCount, action);
3230 int lineCount, /* And includes this many following lines. */
3238 int counter = lineCount;
3268 lineCount = 0;
3270 dInfoPtr->lastMetricUpdateLine = fromLine + lineCount + 1;
3272 int toLine = fromLine + lineCount
3193 TkTextInvalidateLineMetrics( TkSharedText *sharedTextPtr, TkText *textPtr, TkTextLine *linePtr, int lineCount, int action) argument
3214 TextInvalidateLineMetrics( TkText *textPtr, TkTextLine *linePtr, int lineCount, int action) argument
4666 int lineCount; local
[all...]
H A DtkText.h1112 TkTextLine *linePtr, int lineCount, int action);
/macosx-10.9.5/WebCore-7537.78.1/accessibility/
H A DAccessibilityRenderObject.cpp1800 VisiblePositionRange AccessibilityRenderObject::visiblePositionRangeForLine(unsigned lineCount) const
1802 if (!lineCount || !m_renderer)
1806 // FIXME: this is wrong when lineNumber is lineCount+1, because nextLinePosition takes you to the
1810 while (--lineCount) {
2082 for (unsigned lineCount = lineNumber; lineCount; lineCount -= 1) {
H A DAccessibilityObject.cpp1140 int lineCount = -1; local
1151 ++lineCount;
1154 return lineCount;
/macosx-10.9.5/WebKit-7537.78.2/blackberry/Api/
H A DWebPage.cpp2752 int lineCount = rb->lineCount(); local
2753 for (int i = 0; i < lineCount; i++)
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/ace/
H A Dace.js11562 var lineCount = Math.ceil(minHeight / this.lineHeight) - 1;
11564 var lastRow = firstRow + lineCount;

Completed in 476 milliseconds