HomeSort by relevance Sort by last modified time
    Searched refs:lastLine (Results 1 - 25 of 46) sorted by null

1 2

  /external/icu4c/samples/layout/
pflow.h 29 void pf_draw(pf_flow *flow, rs_surface *surface, le_int32 firstLine, le_int32 lastLine);
paragraph.h 44 void draw(RenderingSurface *surface, le_int32 firstLine, le_int32 lastLine);
gnomelayout.cpp 221 gint firstLine = 0, lastLine = context->height / context->paragraph->getLineHeight();
224 context->paragraph->draw(&surface, firstLine, (maxLines < lastLine)? maxLines : lastLine);
cgnomelayout.c 213 gint firstLine = 0, lastLine = context->height / pf_getLineHeight(context->paragraph);
216 pf_draw(context->paragraph, surface, firstLine, (maxLines < lastLine)? maxLines : lastLine);
clayout.c 233 le_int32 firstLine, lastLine;
252 lastLine = min (si.nPos + (le_int32) si.nPage, pf_getLineCount(context->paragraph) - 1);
254 pf_draw(context->paragraph, surface, firstLine, lastLine);
layout.cpp 231 le_int32 firstLine, lastLine;
250 lastLine = min (si.nPos + (le_int32) si.nPage, context->paragraph->getLineCount() - 1);
252 context->paragraph->draw(surface, firstLine, lastLine);
paragraph.cpp 216 void Paragraph::draw(RenderingSurface *surface, le_int32 firstLine, le_int32 lastLine)
223 for (li = firstLine; li <= lastLine; li += 1) {
pflow.c 315 void pf_draw(pf_flow *flow, rs_surface *surface, le_int32 firstLine, le_int32 lastLine)
323 for (li = firstLine; li <= lastLine; li += 1) {
  /external/webkit/Source/JavaScriptCore/parser/
Parser.cpp 64 ParserArenaData<DeclarationStacks::FunctionStack>* funcStack, CodeFeatures features, int lastLine, int numConstants, IdentifierSet& capturedVars)
71 m_lastLine = lastLine;
Parser.h 57 int lastLine, int numConstants, IdentifierSet&);
Nodes.cpp 55 void StatementNode::setLoc(int firstLine, int lastLine)
58 m_lastLine = lastLine;
  /external/webkit/Source/JavaScriptCore/runtime/
Executable.cpp 75 FunctionExecutable::FunctionExecutable(JSGlobalData* globalData, const Identifier& name, const SourceCode& source, bool forceUsesArguments, FunctionParameters* parameters, bool inStrictContext, int firstLine, int lastLine)
84 m_lastLine = lastLine;
87 FunctionExecutable::FunctionExecutable(ExecState* exec, const Identifier& name, const SourceCode& source, bool forceUsesArguments, FunctionParameters* parameters, bool inStrictContext, int firstLine, int lastLine)
96 m_lastLine = lastLine;
110 recordParse(evalNode->features(), evalNode->hasCapturedVariables(), evalNode->lineNo(), evalNode->lastLine());
169 recordParse(programNode->features(), programNode->hasCapturedVariables(), programNode->lineNo(), programNode->lastLine());
243 recordParse(body->features(), body->hasCapturedVariables(), body->lineNo(), body->lastLine());
291 recordParse(body->features(), body->hasCapturedVariables(), body->lineNo(), body->lastLine());
364 return FunctionExecutable::create(&exec->globalData(), functionName, body->source(), body->usesArguments(), body->parameters(), body->isStrictMode(), body->lineNo(), body->lastLine());
Executable.h 183 int lastLine() const { return m_lastLine; }
191 void recordParse(CodeFeatures features, bool hasCapturedVariables, int firstLine, int lastLine)
196 m_lastLine = lastLine;
298 static FunctionExecutable* create(ExecState* exec, const Identifier& name, const SourceCode& source, bool forceUsesArguments, FunctionParameters* parameters, bool isInStrictContext, int firstLine, int lastLine)
300 return new (exec) FunctionExecutable(exec, name, source, forceUsesArguments, parameters, isInStrictContext, firstLine, lastLine);
303 static FunctionExecutable* create(JSGlobalData* globalData, const Identifier& name, const SourceCode& source, bool forceUsesArguments, FunctionParameters* parameters, bool isInStrictContext, int firstLine, int lastLine)
305 return new (globalData) FunctionExecutable(globalData, name, source, forceUsesArguments, parameters, isInStrictContext, firstLine, lastLine);
378 FunctionExecutable(JSGlobalData*, const Identifier& name, const SourceCode&, bool forceUsesArguments, FunctionParameters*, bool, int firstLine, int lastLine);
379 FunctionExecutable(ExecState*, const Identifier& name, const SourceCode&, bool forceUsesArguments, FunctionParameters*, bool, int firstLine, int lastLine);
  /frameworks/native/libs/utils/
BufferedTextOutput.cpp 188 const char* lastLine = txt+1;
190 if (*txt++ == '\n') lastLine = txt;
194 vec.iov_len = lastLine-first;
197 txt = lastLine;
  /external/webkit/Source/JavaScriptCore/bytecompiler/
NodesCodegen.cpp     [all...]
BytecodeGenerator.h 372 void emitDebugHook(DebugHookID, int firstLine, int lastLine);
482 return FunctionExecutable::create(exec, body->ident(), body->source(), body->usesArguments(), body->parameters(), body->isStrictMode(), body->lineNo(), body->lastLine());
487 return FunctionExecutable::create(globalData, body->ident(), body->source(), body->usesArguments(), body->parameters(), body->isStrictMode(), body->lineNo(), body->lastLine());
  /external/webkit/Source/JavaScriptCore/interpreter/
Interpreter.h 112 NEVER_INLINE void debug(CallFrame*, DebugHookID, int firstLine, int lastLine);
  /external/icu4c/tools/gencnval/
gencnval.c 314 char lastLine[MAX_LINE_SIZE];
331 while (T_FileStream_readLine(in, lastLine, MAX_LINE_SIZE) != NULL) {
332 lastLineSize = chomp(lastLine);
333 if (lineSize == 0 || (lastLineSize > 0 && isspace(*lastLine))) {
334 uprv_strcpy(line + lineSize, lastLine);
365 uprv_strcpy(line, lastLine);
    [all...]
  /external/llvm/tools/llvm-objdump/
MachODump.cpp 462 DILineInfo lastLine;
480 if (dli != lastLine && dli.getLine() != 0)
483 lastLine = dli;
578 DILineInfo lastLine;
625 if (dli != lastLine && dli.getLine() != 0)
628 lastLine = dli;
  /frameworks/base/core/java/android/text/
Layout.java 200 int lastLine = TextUtils.unpackRangeEndFromLong(lineRange);
201 if (lastLine < 0) return;
204 firstLine, lastLine);
205 drawText(canvas, firstLine, lastLine);
211 public void drawText(Canvas canvas, int firstLine, int lastLine) {
227 for (int i = firstLine; i <= lastLine; i++) {
359 int cursorOffsetVertical, int firstLine, int lastLine) {
381 for (int i = firstLine; i <= lastLine; i++) {
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderFlexibleBox.cpp     [all...]
RenderBlockLineLayout.cpp 298 RootInlineBox* RenderBlock::constructLine(BidiRunList<BidiRun>& bidiRuns, bool firstLine, bool lastLine)
358 lastLineBox()->determineSpacingForFlowBoxes(lastLine, isLogicallyLastRunWrapped, bidiRuns.logicallyLastRun()->m_object);
    [all...]
InlineFlowBox.h 162 void determineSpacingForFlowBoxes(bool lastLine, bool isLogicallyLastRunWrapped, RenderObject* logicallyLastRunRenderer);
RenderBox.cpp     [all...]
  /frameworks/opt/vcard/java/com/android/vcard/
VCardUtils.java 754 final String lastLine = builder.toString();
755 if (lastLine.length() > 0) {
756 list.add(lastLine);
    [all...]

Completed in 517 milliseconds

1 2