HomeSort by relevance Sort by last modified time
    Searched full:markertype (Results 1 - 17 of 17) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/dom/
DocumentMarker.h 41 enum MarkerType {
52 bool contains(MarkerType type) const { return m_mask & type; }
72 DocumentMarker(MarkerType, unsigned startOffset, unsigned endOffset);
73 DocumentMarker(MarkerType, unsigned startOffset, unsigned endOffset, const String& description);
74 DocumentMarker(MarkerType, unsigned startOffset, unsigned endOffset, const String& description, uint32_t hash);
76 DocumentMarker(MarkerType, unsigned startOffset, unsigned endOffset, PassRefPtr<DocumentMarkerDetails>);
78 MarkerType type() const { return m_type; }
107 MarkerType m_type;
DocumentMarkerController.h 51 void addMarker(Range*, DocumentMarker::MarkerType);
52 void addMarker(Range*, DocumentMarker::MarkerType, const String& description);
53 void addMarker(Range*, DocumentMarker::MarkerType, const String& description, uint32_t hash);
54 void addMarkerToNode(Node*, unsigned startOffset, unsigned length, DocumentMarker::MarkerType);
55 void addMarkerToNode(Node*, unsigned startOffset, unsigned length, DocumentMarker::MarkerType, PassRefPtr<DocumentMarkerDetails>);
76 DocumentMarker* markerContainingPoint(const LayoutPoint&, DocumentMarker::MarkerType);
81 Vector<IntRect> renderedRectsForMarkers(DocumentMarker::MarkerType);
DocumentMarker.cpp 108 DocumentMarker::DocumentMarker(MarkerType type, unsigned startOffset, unsigned endOffset)
116 DocumentMarker::DocumentMarker(MarkerType type, unsigned startOffset, unsigned endOffset, const String& description)
125 DocumentMarker::DocumentMarker(MarkerType type, unsigned startOffset, unsigned endOffset, const String& description, uint32_t hash)
143 DocumentMarker::DocumentMarker(MarkerType type, unsigned startOffset, unsigned endOffset, PassRefPtr<DocumentMarkerDetails> details)
DocumentMarkerController.cpp 63 void DocumentMarkerController::addMarker(Range* range, DocumentMarker::MarkerType type, const String& description, uint32_t hash)
72 void DocumentMarkerController::addMarker(Range* range, DocumentMarker::MarkerType type, const String& description)
81 void DocumentMarkerController::addMarker(Range* range, DocumentMarker::MarkerType type)
91 void DocumentMarkerController::addMarkerToNode(Node* node, unsigned startOffset, unsigned length, DocumentMarker::MarkerType type)
96 void DocumentMarkerController::addMarkerToNode(Node* node, unsigned startOffset, unsigned length, DocumentMarker::MarkerType type, PassRefPtr<DocumentMarkerDetails> details)
307 DocumentMarker* DocumentMarkerController::markerContainingPoint(const LayoutPoint& point, DocumentMarker::MarkerType markerType)
309 if (!possiblyHasMarkers(markerType))
323 if (marker.type() != markerType)
403 Vector<IntRect> DocumentMarkerController::renderedRectsForMarkers(DocumentMarker::MarkerType markerType
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
BaseClasspathContainerInitializer.java 43 * @param markerType the marker type to be used.
47 final String markerType, boolean outputToConsole) {
55 BaseProjectHelper.markProject(project, markerType,
67 markerType,
90 project.deleteMarkers(markerType, true,
101 project.deleteMarkers(markerType, true,
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
plugin.xml 26 markerType="org.eclipse.jdt.debug.javaLineBreakpointMarker"
32 markerType="org.eclipse.jdt.debug.javaClassPrepareBreakpointMarker"
38 markerType="org.eclipse.jdt.debug.javaPatternBreakpointMarker"
44 markerType="org.eclipse.jdt.debug.javaTargetPatternBreakpointMarker"
50 markerType="org.eclipse.jdt.debug.javaExceptionBreakpointMarker"
56 markerType="org.eclipse.jdt.debug.javaWatchpointMarker"
62 markerType="org.eclipse.jdt.debug.javaMethodBreakpointMarker"
68 markerType="org.eclipse.jdt.debug.javaMethodEntryBreakpointMarker"
74 markerType="org.eclipse.jdt.debug.javaStratumLineBreakpointMarker"
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGMarkerData.h 67 SVGMarkerType markerType = markerData->m_elementIndex == 1 ? StartMarker : MidMarker;
68 markerData->m_positions.append(MarkerPosition(markerType, markerData->m_origin, markerData->currentAngle(markerType)));
  /external/chromium_org/third_party/WebKit/Source/core/testing/
Internals.idl 96 [RaisesException] unsigned long markerCountForNode(Node node, DOMString markerType);
97 [RaisesException] Range markerRangeForNode(Node node, DOMString markerType, unsigned long index);
98 [RaisesException] DOMString markerDescriptionForNode(Node node, DOMString markerType, unsigned long index);
Internals.h 145 PassRefPtr<Range> markerRangeForNode(Node*, const String& markerType, unsigned index, ExceptionState&);
146 String markerDescriptionForNode(Node*, const String& markerType, unsigned index, ExceptionState&);
303 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, ExceptionState&);
Internals.cpp 152 static bool markerTypesFrom(const String& markerType, DocumentMarker::MarkerTypes& result)
154 if (markerType.isEmpty() || equalIgnoringCase(markerType, "all"))
156 else if (equalIgnoringCase(markerType, "Spelling"))
158 else if (equalIgnoringCase(markerType, "Grammar"))
160 else if (equalIgnoringCase(markerType, "TextMatch"))
828 unsigned Internals::markerCountForNode(Node* node, const String& markerType, ExceptionState& es)
836 if (!markerTypesFrom(markerType, markerTypes)) {
844 DocumentMarker* Internals::markerAt(Node* node, const String& markerType, unsigned index, ExceptionState& es)
852 if (!markerTypesFrom(markerType, markerTypes))
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/builders/
BaseBuilder.java 360 protected void stopOnMarker(IProject project, String markerType, int depth,
364 IMarker[] markers = project.findMarkers(markerType, false /*includeSubtypes*/, depth);
  /external/chromium_org/third_party/WebKit/Source/core/editing/
Editor.h 292 bool selectionStartHasMarkerFor(DocumentMarker::MarkerType, int from, int length) const;
Editor.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
InlineTextBox.cpp     [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/
plugin.xml 106 markerType="com.android.ide.eclipse.adt.lintProblem"
109 markerType="com.android.ide.eclipse.common.aaptProblem"
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/
AdtUtils.java 584 * @param markerType the marker type
592 @NonNull String markerType,
598 IMarker[] markers = file.findMarkers(markerType, true, IResource.DEPTH_ZERO);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
GraphicalEditorPart.java     [all...]

Completed in 2720 milliseconds