HomeSort by relevance Sort by last modified time
    Searched refs:TextPosition (Results 1 - 18 of 18) sorted by null

  /external/webkit/Source/JavaScriptGlue/ForwardingHeaders/wtf/text/
TextPosition.h 1 #include <JavaScriptCore/TextPosition.h>
  /external/webkit/Source/WebCore/ForwardingHeaders/wtf/text/
TextPosition.h 3 #include <JavaScriptCore/TextPosition.h>
  /external/webkit/Source/JavaScriptCore/wtf/text/
TextPosition.h 35 * TextPosition structure specifies coordinates within an text resource. It is used mostly
47 * 2 corresponding types of TextPosition structure. While only one type ought to be enough,
60 class TextPosition {
62 TextPosition(NUMBER line, NUMBER column)
67 TextPosition() {}
69 bool operator==(const TextPosition& other) { return m_line == other.m_line && m_column == other.m_column; }
70 bool operator!=(const TextPosition& other) { return !((*this) == other); }
73 static TextPosition<NUMBER> minimumPosition() { return TextPosition<NUMBER>(NUMBER::base(), NUMBER::base()); }
76 static TextPosition<NUMBER> belowRangePosition() { return TextPosition<NUMBER>(NUMBER::belowBase(), NUMBER::belowBase( (…)
    [all...]
  /external/webkit/Source/WebCore/rendering/svg/
SVGTextLayoutAttributesBuilder.h 49 struct TextPosition {
50 TextPosition(SVGTextPositioningElement* newElement = 0, unsigned newStart = 0, unsigned newLength = 0)
65 void fillAttributesAtPosition(const TextPosition&);
68 Vector<TextPosition> m_textPositions;
SVGTextLayoutAttributesBuilder.cpp 113 for (unsigned textPosition = 0; textPosition < textLength; ++textPosition) {
114 const UChar& currentCharacter = characters[textPosition];
139 m_textPositions.append(TextPosition(element, atCharacter));
147 TextPosition& position = m_textPositions[atPosition];
164 TextPosition wholeTextPosition(outermostTextElement, 0, textLength);
200 for (unsigned textPosition = 0; textPosition < textLength; textPosition += metricsLength)
    [all...]
  /external/webkit/Source/WebCore/dom/
ScriptableDocumentParser.h 30 #include <wtf/text/TextPosition.h>
48 virtual TextPosition0 textPosition() const = 0;
PendingScript.h 31 #include <wtf/text/TextPosition.h>
ScriptElement.h 26 #include <wtf/text/TextPosition.h>
  /external/webkit/Source/WebCore/bindings/js/
ScriptSourceCode.h 38 #include <wtf/text/TextPosition.h>
JavaScriptCallFrame.h 36 #include <wtf/text/TextPosition.h>
42 static PassRefPtr<JavaScriptCallFrame> create(const JSC::DebuggerCallFrame& debuggerCallFrame, PassRefPtr<JavaScriptCallFrame> caller, intptr_t sourceID, const TextPosition0& textPosition)
44 return adoptRef(new JavaScriptCallFrame(debuggerCallFrame, caller, sourceID, textPosition));
62 void update(const JSC::DebuggerCallFrame& debuggerCallFrame, intptr_t sourceID, const TextPosition0& textPosition)
65 m_textPosition = textPosition;
ScriptDebugServer.h 45 #include <wtf/text/TextPosition.h>
  /external/webkit/Source/WebCore/bindings/v8/
ScriptSourceCode.h 38 #include <wtf/text/TextPosition.h>
V8LazyEventListener.h 37 #include <wtf/text/TextPosition.h>
WorkerContextExecutionProxy.h 39 #include <wtf/text/TextPosition.h>
  /external/webkit/Source/JavaScriptCore/parser/
SourceProvider.h 37 #include <wtf/text/TextPosition.h>
  /external/webkit/Source/WebCore/html/parser/
HTMLScriptRunner.h 31 #include <wtf/text/TextPosition.h>
HTMLTreeBuilder.h 36 #include <wtf/text/TextPosition.h>
  /external/webkit/Source/WebCore/platform/text/
SegmentedString.h 25 #include <wtf/text/TextPosition.h>

Completed in 1007 milliseconds