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

/macosx-10.10.1/bmalloc-7600.1.17/bmalloc/
H A DChunk.h58 static const size_t lineCount = chunkSize / lineSize; member in class:bmalloc::Chunk
61 Line m_lines[lineCount];
/macosx-10.10.1/JavaScriptCore-7600.1.17/runtime/
H A DCodeCache.cpp86 unsigned lineCount = unlinkedCodeBlock->lineCount(); local
88 bool endColumnIsOnStartLine = !lineCount;
90 executable->recordParse(unlinkedCodeBlock->codeFeatures(), unlinkedCodeBlock->hasCapturedVariables(), firstLine, firstLine + lineCount, startColumn, endColumn);
100 unsigned lineCount = rootNode->lastLine() - rootNode->lineNo(); local
102 bool endColumnIsOnStartLine = !lineCount;
108 unlinkedCodeBlock->recordParse(rootNode->features(), rootNode->hasCapturedVariables(), rootNode->lineNo() - source.firstLine(), lineCount, unlinkedEndColumn);
H A DExecutable.cpp589 unsigned lineCount = unlinkedExecutable->lineCount(); local
597 bool endColumnIsOnStartLine = !lineCount;
606 return FunctionExecutable::create(exec->vm(), bodySource, unlinkedExecutable, firstLine, firstLine + lineCount, startColumn, endColumnExcludingBraces, false);
/macosx-10.10.1/ICU-531.30/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.10.1/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DCSSStyleDeclarationTextEditor.js231 var lineCount = this._codeMirror.lineCount();
232 for (var i = 0; i < lineCount; ++i)
252 var lineCount = this._codeMirror.lineCount();
253 for (var i = 0; i < lineCount; ++i) {
256 if (i !== lineCount - 1)
351 var lineCount = this._codeMirror.lineCount();
352 for (var i = 0; i < lineCount;
[all...]
H A DCodeMirrorAdditions.js476 var end = range instanceof WebInspector.TextRange ? range.endLine + 1 : this.lineCount();
542 var end = range instanceof WebInspector.TextRange ? range.endLine + 1 : this.lineCount();
H A DTextEditor.js586 get lineCount()
588 return this._codeMirror.lineCount();
1243 const end = {line: this._codeMirror.lineCount() - 1};
H A DSourceCodeTextEditor.js209 return !isNaN(lineNumber) && lineNumber > 0 && lineNumber <= this.lineCount;
/macosx-10.10.1/ICU-531.30/icuSources/tools/gendict/
H A Dgendict.cpp367 int lineCount = 0;
373 lineCount++;
380 fprintf(stderr, "Error: no word on line %i!\n", lineCount);
392 fprintf(stderr, "Error: value too long on line %i!\n", lineCount);
401 fprintf(stderr, "Error: value syntax error or value too large on line %i!\n", lineCount);
420 status.errorName(), lineCount);
424 if (verbose) { printf("Processed %d lines, added %d words, minlen %d, maxlen %d\n", lineCount, wordCount, minlen, maxlen); }
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/External/CodeMirror/
H A Dplaceholder.js56 return (cm.lineCount() === 1) && (cm.getLine(0) === "");
H A Dsearchcursor.js141 var maxLine = this.doc.lineCount();
H A Dcodemirror.js6232 lineCount: function() {return this.size;},
/macosx-10.10.1/JavaScriptCore-7600.1.17/inspector/
H A DScriptDebugServer.cpp214 int lineCount = 1; local
218 lineCount += 1;
223 script.endLine = script.startLine + lineCount - 1;
224 if (lineCount == 1)
/macosx-10.10.1/tcl-105/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.10.1/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.10.1/pyobjc-45/pyobjc/pyobjc-core-2.5.1/Doc/sphinx_build/html/_static/
H A Dwebsupport.js35 var lineCount = 0;
37 lineCount += Math.ceil(this.length / columns) || 1;
39 var height = lineHeight * (lineCount + 1);
/macosx-10.10.1/JavaScriptCore-7600.1.17/bytecode/
H A DUnlinkedCodeBlock.h122 unsigned lineCount() const { return m_lineCount; } function in class:JSC::UnlinkedFunctionExecutable
467 void recordParse(CodeFeatures features, bool hasCapturedVariables, unsigned firstLine, unsigned lineCount, unsigned endColumn) argument
472 m_lineCount = lineCount;
480 unsigned lineCount() const { return m_lineCount; } function in class:JSC::UnlinkedCodeBlock
H A DCodeBlock.cpp1533 unsigned lineCount = unlinkedExecutable->lineCount(); local
1537 bool endColumnIsOnStartLine = !lineCount;
1542 FunctionExecutable* executable = FunctionExecutable::create(*m_vm, code, unlinkedExecutable, firstLine, firstLine + lineCount, startColumn, endColumn);
1549 unsigned lineCount = unlinkedExecutable->lineCount(); local
1553 bool endColumnIsOnStartLine = !lineCount;
1558 FunctionExecutable* executable = FunctionExecutable::create(*m_vm, code, unlinkedExecutable, firstLine, firstLine + lineCount, startColumn, endColumn);
/macosx-10.10.1/tcl-105/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.10.1/WebInspectorUI-7600.1.17/Tools/PrettyPrinting/
H A Dcodemirror.js6232 lineCount: function() {return this.size;},

Completed in 237 milliseconds