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

1 2 3 4 5 6

  /external/webkit/WebCore/dom/
DocumentMarker.h 46 unsigned startOffset;
53 return type == o.type && startOffset == o.startOffset && endOffset == o.endOffset;
  /external/proguard/src/proguard/classfile/visitor/
ExceptionHandlerFilter.java 37 private final int startOffset;
44 * @param startOffset the start of the instruction offset range.
49 public ExceptionHandlerFilter(int startOffset,
53 this.startOffset = startOffset;
64 if (handlerPC >= startOffset &&
ExceptionRangeFilter.java 37 private final int startOffset;
44 * @param startOffset the start offset of the instruction range.
49 public ExceptionRangeFilter(int startOffset,
53 this.startOffset = startOffset;
63 if (exceptionInfo.isApplicable(startOffset, endOffset))
  /external/proguard/src/proguard/classfile/attribute/
ExceptionInfo.java 82 public boolean isApplicable(int startOffset, int endOffset)
85 u2endPC > startOffset;
  /external/webkit/JavaScriptCore/runtime/
ExceptionHelpers.cpp 76 int startOffset = 0;
79 int line = codeBlock->expressionRangeForBytecodeOffset(exec, bytecodeOffset, divotPoint, startOffset, endOffset);
81 exception->putWithAttributes(exec, Identifier(exec, expressionBeginOffsetPropertyName), jsNumber(exec, divotPoint - startOffset), ReadOnly | DontDelete);
114 int startOffset = 0;
117 int line = codeBlock->expressionRangeForBytecodeOffset(exec, bytecodeOffset, divotPoint, startOffset, endOffset);
120 exception->putWithAttributes(exec, Identifier(exec, expressionBeginOffsetPropertyName), jsNumber(exec, divotPoint - startOffset), ReadOnly | DontDelete);
128 int startOffset = 0;
131 int line = codeBlock->expressionRangeForBytecodeOffset(exec, bytecodeOffset, divotPoint, startOffset, endOffset);
134 int startPoint = divotPoint - (startOffset ? startOffset - 4 : 0); // -4 for "new
    [all...]
RegExp.cpp 113 int RegExp::match(const UString& s, int startOffset, Vector<int, 32>* ovector)
115 if (startOffset < 0)
116 startOffset = 0;
120 if (startOffset > s.size() || s.isNull())
145 int result = Yarr::executeRegex(m_regExpJITCode, s.data(), startOffset, s.size(), offsetVector, offsetVectorSize);
147 int result = Yarr::interpretRegex(m_regExpBytecode.get(), s.data(), startOffset, s.size(), offsetVector);
184 int RegExp::match(const UString& s, int startOffset, Vector<int, 32>* ovector)
186 if (startOffset < 0)
187 startOffset = 0;
191 if (startOffset > s.size() || s.isNull()
    [all...]
RegExpConstructor.h 71 void performMatch(RegExp*, const UString&, int startOffset, int& position, int& length, int** ovector = 0);
112 inline void RegExpConstructor::performMatch(RegExp* r, const UString& s, int startOffset, int& position, int& length, int** ovector)
114 position = r->match(s, startOffset, &d->tempOvector());
  /external/chromium/third_party/icu/source/test/perf/ubrkperf/
ubrkperf.cpp 90 UniCharCount startOffset = 0, breakOffset = 0, numUniChars = textSize;
91 startOffset = 0;
94 while (startOffset < numUniChars)
97 startOffset, &breakOffset);
98 //require_action(status == noErr, EXIT, printf( "**UCFindTextBreak failed: startOffset %d, status %d\n", (int)startOffset, (int)status));
99 //require_action((breakOffset <= numUniChars),EXIT, printf("**UCFindTextBreak breakOffset too big: startOffset %d, breakOffset %d\n", (int)startOffset, (int)breakOffset));
106 startOffset = breakOffset;
110 startOffset = 0
    [all...]
  /external/icu4c/test/perf/ubrkperf/
ubrkperf.cpp 90 UniCharCount startOffset = 0, breakOffset = 0, numUniChars = textSize;
91 startOffset = 0;
94 while (startOffset < numUniChars)
97 startOffset, &breakOffset);
98 //require_action(status == noErr, EXIT, printf( "**UCFindTextBreak failed: startOffset %d, status %d\n", (int)startOffset, (int)status));
99 //require_action((breakOffset <= numUniChars),EXIT, printf("**UCFindTextBreak breakOffset too big: startOffset %d, breakOffset %d\n", (int)startOffset, (int)breakOffset));
106 startOffset = breakOffset;
110 startOffset = 0
    [all...]
  /external/webkit/JavaScriptCore/parser/
NodeConstructors.h 97 inline ResolveNode::ResolveNode(JSGlobalData* globalData, const Identifier& ident, int startOffset)
100 , m_startOffset(startOffset)
238 inline EvalFunctionCallNode::EvalFunctionCallNode(JSGlobalData* globalData, ArgumentsNode* args, unsigned divot, unsigned startOffset, unsigned endOffset)
240 , ThrowableExpressionData(divot, startOffset, endOffset)
245 inline FunctionCallValueNode::FunctionCallValueNode(JSGlobalData* globalData, ExpressionNode* expr, ArgumentsNode* args, unsigned divot, unsigned startOffset, unsigned endOffset)
247 , ThrowableExpressionData(divot, startOffset, endOffset)
253 inline FunctionCallResolveNode::FunctionCallResolveNode(JSGlobalData* globalData, const Identifier& ident, ArgumentsNode* args, unsigned divot, unsigned startOffset, unsigned endOffset)
255 , ThrowableExpressionData(divot, startOffset, endOffset)
261 inline FunctionCallBracketNode::FunctionCallBracketNode(JSGlobalData* globalData, ExpressionNode* base, ExpressionNode* subscript, ArgumentsNode* args, unsigned divot, unsigned startOffset, unsigned endOffset)
263 , ThrowableSubExpressionData(divot, startOffset, endOffset
    [all...]
Nodes.h 249 ThrowableExpressionData(unsigned divot, unsigned startOffset, unsigned endOffset)
251 , m_startOffset(startOffset)
256 void setExceptionSourceCode(unsigned divot, unsigned startOffset, unsigned endOffset)
259 m_startOffset = startOffset;
264 uint16_t startOffset() const { return m_startOffset; }
286 ThrowableSubExpressionData(unsigned divot, unsigned startOffset, unsigned endOffset)
287 : ThrowableExpressionData(divot, startOffset, endOffset)
315 ThrowablePrefixedSubExpressionData(unsigned divot, unsigned startOffset, unsigned endOffset)
316 : ThrowableExpressionData(divot, startOffset, endOffset)
357 ResolveNode(JSGlobalData*, const Identifier&, int startOffset);
    [all...]
  /external/webkit/WebCore/rendering/
RenderSVGTextPath.cpp 66 float RenderSVGTextPath::startOffset() const
68 return static_cast<SVGTextPathElement*>(node())->startOffset().valueAsPercentage();
RenderSVGTextPath.h 37 float startOffset() const;
RenderTextFragment.cpp 30 RenderTextFragment::RenderTextFragment(Node* node, StringImpl* str, int startOffset, int length)
31 : RenderText(node, str ? str->substring(startOffset, length) : 0)
32 , m_start(startOffset)
RenderTextFragment.h 36 RenderTextFragment(Node*, StringImpl*, int startOffset, int length);
SVGCharacterLayoutInfo.h 165 float startOffset;
242 : startOffset(INT_MIN)
248 bool isOpen() const { return (startOffset == endOffset) && (endOffset == INT_MIN); }
249 bool isClosed() const { return startOffset != INT_MIN && endOffset != INT_MIN; }
251 int startOffset;
294 virtual void operator()(SVGInlineTextBox* textBox, int startOffset, const AffineTransform& chunkCtm,
313 int startOffset,
352 virtual void operator()(SVGInlineTextBox* textBox, int startOffset, const AffineTransform& chunkCtm,
355 (*m_object.*m_walkerCallback)(textBox, startOffset, chunkCtm, start, end);
  /external/webkit/WebCore/svg/
SVGTextPathElement.idl 40 readonly attribute SVGAnimatedLength startOffset;
  /external/webkit/JavaScriptCore/pcre/
pcre.h 63 const UChar* subject, int subjectLength, int startOffset,
  /cts/tests/tests/view/src/android/view/inputmethod/cts/
ExtractedTextTest.java 48 extractedText.startOffset = 1;
58 assertEquals(extractedText.startOffset, target.startOffset);
  /frameworks/base/core/java/android/view/inputmethod/
ExtractedText.java 35 public int startOffset;
56 * <var>startOffset</var>+<var>selectionStart</var>.
63 * <var>startOffset</var>+<var>selectionEnd</var>.
91 dest.writeInt(startOffset);
106 res.startOffset = source.readInt();
  /external/webkit/WebKit/chromium/src/
WebRange.cpp 59 int WebRange::startOffset() const
61 return m_private->startOffset();
  /external/webkit/WebKit/mac/WebView/
WebHTMLRepresentation.h 61 - (NSAttributedString *)attributedStringFrom:(DOMNode *)startNode startOffset:(int)startOffset to:(DOMNode *)endNode endOffset:(int)endOffset;
  /dalvik/vm/
LinearAlloc.c 268 int startOffset, nextOffset;
289 startOffset = pHdr->curOffset;
290 assert(((startOffset + HEADER_EXTRA) & (BLOCK_ALIGN-1)) == 0);
304 nextOffset = ((startOffset + HEADER_EXTRA*2 + size + (BLOCK_ALIGN-1))
306 LOGVV("--- old=%d size=%d new=%d\n", startOffset, size, nextOffset);
326 size = nextOffset - (startOffset + HEADER_EXTRA);
335 * Note that "startOffset" is not the last *allocated* byte, but rather
342 lastGoodOff = (startOffset-1) & ~(SYSTEM_PAGE_SIZE-1);
343 firstWriteOff = startOffset & ~(SYSTEM_PAGE_SIZE-1);
372 start, end, size, pHdr->mapAddr + startOffset + HEADER_EXTRA)
    [all...]
  /external/proguard/src/proguard/optimize/evaluation/
PartialEvaluator.java 284 public boolean isTraced(int startOffset, int endOffset)
286 for (int index = startOffset; index < endOffset; index++)
500 int startOffset)
504 startOffset));
513 int startOffset)
517 startOffset));
530 int startOffset,
538 startOffset);
543 startOffset,
557 int startOffset)
    [all...]
  /dalvik/vm/compiler/
Frontend.c 417 unsigned int curOffset = currRun->frag.startOffset;
538 curBB->startOffset = curOffset;
542 curBB->startOffset = curOffset;
607 curOffset = currRun->frag.startOffset;
609 curBB->startOffset = curOffset;
655 if (targetOffset == searchBB->startOffset) {
658 if (fallThroughOffset == searchBB->startOffset) {
689 fallThroughOffset == startBB->startOffset &&
702 exitBB->startOffset = targetOffset;
713 backwardCell->startOffset = startBB->startOffset
    [all...]

Completed in 1198 milliseconds

1 2 3 4 5 6