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

1 2 3 4

  /external/webkit/WebCore/dom/
DocumentMarker.h 47 unsigned endOffset;
53 return type == o.type && startOffset == o.startOffset && endOffset == o.endOffset;
Range.h 44 static PassRefPtr<Range> create(PassRefPtr<Document>, PassRefPtr<Node> startContainer, int startOffset, PassRefPtr<Node> endContainer, int endOffset);
52 int endOffset() const { return m_end.offset(); }
57 int endOffset(ExceptionCode&) const;
135 Range(PassRefPtr<Document>, PassRefPtr<Node> startContainer, int startOffset, PassRefPtr<Node> endContainer, int endOffset);
  /external/proguard/src/proguard/classfile/visitor/
ExceptionHandlerFilter.java 38 private final int endOffset;
45 * @param endOffset the end of the instruction offset range.
50 int endOffset,
54 this.endOffset = endOffset;
65 handlerPC < endOffset)
ExceptionRangeFilter.java 38 private final int endOffset;
45 * @param endOffset the end offset of the instruction range.
50 int endOffset,
54 this.endOffset = endOffset;
63 if (exceptionInfo.isApplicable(startOffset, endOffset))
  /external/proguard/src/proguard/classfile/attribute/
ExceptionInfo.java 82 public boolean isApplicable(int startOffset, int endOffset)
84 return u2startPC < endOffset &&
CodeAttribute.java 129 public void instructionsAccept(Clazz clazz, Method method, int startOffset, int endOffset, InstructionVisitor instructionVisitor)
133 while (offset < endOffset)
179 public void exceptionsAccept(Clazz clazz, Method method, int startOffset, int endOffset, ExceptionInfoVisitor exceptionInfoVisitor)
184 if (exceptionInfo.isApplicable(startOffset, endOffset))
  /external/webkit/JavaScriptCore/parser/
NodeConstructors.h 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)
270 inline FunctionCallDotNode::FunctionCallDotNode(JSGlobalData* globalData, ExpressionNode* base, const Identifier& ident, ArgumentsNode* args, unsigned divot, unsigned startOffset, unsigned endOffset)
272 , ThrowableSubExpressionData(divot, startOffset, endOffset)
    [all...]
Nodes.h 249 ThrowableExpressionData(unsigned divot, unsigned startOffset, unsigned endOffset)
252 , m_endOffset(endOffset)
256 void setExceptionSourceCode(unsigned divot, unsigned startOffset, unsigned endOffset)
260 m_endOffset = endOffset;
265 uint16_t endOffset() const { return m_endOffset; }
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)
513 EvalFunctionCallNode(JSGlobalData*, ArgumentsNode*, unsigned divot, unsigned startOffset, unsigned endOffset);
    [all...]
SourceCode.h 74 int endOffset() const { return m_endChar; }
  /external/webkit/JavaScriptCore/runtime/
ExceptionHelpers.cpp 77 int endOffset = 0;
79 int line = codeBlock->expressionRangeForBytecodeOffset(exec, bytecodeOffset, divotPoint, startOffset, endOffset);
83 exception->putWithAttributes(exec, Identifier(exec, expressionEndOffsetPropertyName), jsNumber(exec, divotPoint + endOffset), ReadOnly | DontDelete);
115 int endOffset = 0;
117 int line = codeBlock->expressionRangeForBytecodeOffset(exec, bytecodeOffset, divotPoint, startOffset, endOffset);
118 UString errorMessage = createErrorMessage(exec, codeBlock, line, divotPoint, divotPoint + endOffset, value, makeString("not a valid argument for '", op, "'"));
122 exception->putWithAttributes(exec, Identifier(exec, expressionEndOffsetPropertyName), jsNumber(exec, divotPoint + endOffset), ReadOnly | DontDelete);
129 int endOffset = 0;
131 int line = codeBlock->expressionRangeForBytecodeOffset(exec, bytecodeOffset, divotPoint, startOffset, endOffset);
143 exception->putWithAttributes(exec, Identifier(exec, expressionEndOffsetPropertyName), jsNumber(exec, divotPoint + endOffset), ReadOnly | DontDelete)
    [all...]
  /dalvik/dx/src/com/android/dx/cf/direct/
AttributeListParser.java 47 private int endOffset;
77 this.endOffset = -1;
97 return endOffset;
114 if (endOffset < 0) {
162 endOffset = at;
MemberListParser.java 49 private int endOffset;
80 this.endOffset = -1;
91 return endOffset;
107 if (endOffset < 0) {
238 endOffset = at;
  /external/webkit/WebKit/chromium/src/
WebRange.cpp 64 int WebRange::endOffset() const
66 return m_private->endOffset();
  /external/webkit/WebKit/mac/WebView/
WebHTMLRepresentation.h 61 - (NSAttributedString *)attributedStringFrom:(DOMNode *)startNode startOffset:(int)startOffset to:(DOMNode *)endNode endOffset:(int)endOffset;
  /packages/apps/Mms/src/com/android/mms/dom/smil/
SmilPlayer.java 114 double endOffset = end.getResolvedOffset() + offset;
115 if (endOffset > maxOffset) {
116 endOffset = maxOffset;
118 TimelineEntry myEnd = new TimelineEntry(endOffset, par, TimelineEntry.ACTION_END);
120 maxOffset = endOffset;
133 (float) (endOffset - offset) * 1000);
135 timeline.add(new TimelineEntry(endOffset,
172 double endOffset = end.getResolvedOffset() + offset;
173 if (endOffset > maxOffset) {
174 endOffset = maxOffset
    [all...]
  /external/webkit/WebKit/chromium/public/
WebRange.h 66 WEBKIT_API int endOffset() const;
  /external/proguard/src/proguard/optimize/peephole/
UnreachableExceptionRemover.java 114 int endOffset)
120 while (offset < endOffset)
  /dalvik/dx/src/com/android/dx/cf/cst/
ConstantPoolParser.java 58 private int endOffset;
74 this.endOffset = -1;
94 return endOffset;
111 if (endOffset < 0) {
143 int nextOffset = endOffset;
156 observer.parsed(bytes, endOffset, 0, "end constant_pool");
208 endOffset = at;
  /external/webkit/JavaScriptCore/bytecompiler/
BytecodeGenerator.h 208 void emitExpressionInfo(unsigned divot, unsigned startOffset, unsigned endOffset)
215 endOffset = 0;
221 endOffset = 0;
222 } else if (endOffset > ExpressionRangeInfo::MaxOffset) {
226 endOffset = 0;
233 info.endOffset = endOffset;
312 RegisterID* emitCall(RegisterID* dst, RegisterID* func, RegisterID* thisRegister, ArgumentsNode*, unsigned divot, unsigned startOffset, unsigned endOffset);
313 RegisterID* emitCallEval(RegisterID* dst, RegisterID* func, RegisterID* thisRegister, ArgumentsNode*, unsigned divot, unsigned startOffset, unsigned endOffset);
314 RegisterID* emitCallVarargs(RegisterID* dst, RegisterID* func, RegisterID* thisRegister, RegisterID* argCount, unsigned divot, unsigned startOffset, unsigned endOffset);
    [all...]
  /external/webkit/WebCore/editing/
TextIterator.cpp 282 int endOffset = r->endOffset();
292 m_endOffset = endOffset;
304 m_pastEndNode = nextInPreOrderCrossingShadowBoundaries(endContainer, endOffset);
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
BerInputStream.java 591 int endOffset = begOffset + length;
599 for (; (offset < endOffset) && (i < type.length); i++) {
625 for (; (offset < endOffset) && (i < type.length); i++) {
657 if (offset != endOffset) {
711 int endOffset = begOffset + length;
716 while (endOffset > offset) {
725 while (endOffset > offset) {
735 if (offset != endOffset) {
  /external/webkit/WebKitTools/DumpRenderTree/win/
EditingDelegate.cpp 104 int endOffset;
105 if (FAILED(range->endOffset(&endOffset)))
117 _snwprintf(buffer, ARRAYSIZE(buffer), L"range from %ld of %s to %ld of %s", startOffset, dumpPath(startContainer.get()), endOffset, dumpPath(endContainer.get()));
  /frameworks/base/media/libstagefright/
avc_utils.cpp 186 size_t endOffset = offset - 2;
187 while (data[endOffset - 1] == 0x00) {
188 --endOffset;
192 *nalSize = endOffset - startOffset;
  /external/webkit/WebCore/rendering/
SVGCharacterLayoutInfo.h 243 , endOffset(INT_MIN)
248 bool isOpen() const { return (startOffset == endOffset) && (endOffset == INT_MIN); }
249 bool isClosed() const { return startOffset != INT_MIN && endOffset != INT_MIN; }
252 int endOffset;
  /packages/apps/Mms/src/com/android/mms/
SuggestionsProvider.java 115 public Row(int row, String text, int startOffset, int endOffset) {
119 mEndOffset = endOffset;
148 int endOffset = startOffset + length;
149 String candidate = message.substring(startOffset, endOffset);
155 mRows.add(new Row(i, message, startOffset, endOffset));

Completed in 1560 milliseconds

1 2 3 4