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

1 2

  /external/webkit/Source/WebCore/editing/chromium/
SelectionControllerChromium.cpp 42 if (AXObjectCache::accessibilityEnabled() && m_selection.start().isNotNull() && m_selection.end().isNotNull()) {
  /external/webkit/Source/WebCore/editing/gtk/
SelectionControllerGtk.cpp 84 if (!m_selection.start().isNotNull() || !m_selection.end().isNotNull())
  /external/webkit/Source/WebCore/editing/
VisiblePosition.h 61 bool isNotNull() const { return m_deepPosition.isNotNull(); }
82 Element* rootEditableElement() const { return m_deepPosition.isNotNull() ? m_deepPosition.deprecatedNode()->rootEditableElement() : 0; }
IndentOutdentCommand.cpp 162 if (visibleStartOfParagraph.isNotNull() && !isStartOfParagraph(visibleStartOfParagraph))
164 if (visibleEndOfParagraph.isNotNull() && !isEndOfParagraph(visibleEndOfParagraph))
208 if (endAfterSelection.isNotNull() && !endAfterSelection.deepEquivalent().anchorNode()->inDocument())
211 if (endOfNextParagraph.isNotNull() && !endOfNextParagraph.deepEquivalent().anchorNode()->inDocument()) {
visible_units.cpp 465 return a.isNotNull() && startOfLine(a) == startOfLine(b);
470 return p.isNotNull() && p == startOfLine(p);
475 return p.isNotNull() && p == endOfLine(p);
    [all...]
InsertTextCommand.cpp 158 if (placeholder.isNotNull())
166 if (placeholder.isNotNull())
VisibleSelection.cpp 246 if (m_base.isNotNull()) {
251 if (m_extent.isNotNull() && !baseAndExtentEqual)
334 if (next.isNotNull())
505 while (p.isNotNull() && !(lowestEditableAncestor(p.containerNode()) == baseEditableAncestor && !isEditablePosition(p))) {
534 while (p.isNotNull() && !(lowestEditableAncestor(p.containerNode()) == baseEditableAncestor && !isEditablePosition(p))) {
DeleteSelectionCommand.cpp 229 bool skipSmartDelete = pos.trailingWhitespacePosition(VP_DEFAULT_AFFINITY, true).isNotNull();
231 skipSmartDelete = m_downstreamEnd.leadingWhitespacePosition(VP_DEFAULT_AFFINITY, true).isNotNull();
234 bool hasLeadingWhitespaceBeforeAdjustment = m_upstreamStart.leadingWhitespacePosition(m_selectionToDelete.affinity(), true).isNotNull();
249 if (!skipSmartDelete && !hasLeadingWhitespaceBeforeAdjustment && m_downstreamEnd.trailingWhitespacePosition(VP_DEFAULT_AFFINITY, true).isNotNull()) {
389 if (firstEditablePosition.isNotNull())
555 if (m_leadingWhitespace.isNotNull() && !m_leadingWhitespace.isRenderedCharacter() && m_leadingWhitespace.deprecatedNode()->isTextNode()) {
560 if (m_trailingWhitespace.isNotNull() && !m_trailingWhitespace.isRenderedCharacter() && m_trailingWhitespace.deprecatedNode()->isTextNode()) {
    [all...]
ApplyBlockElementCommand.cpp 137 if (endAfterSelection.isNotNull() && !endAfterSelection.deepEquivalent().anchorNode()->inDocument())
141 if (endOfNextParagraph.isNotNull() && !endOfNextParagraph.deepEquivalent().anchorNode()->inDocument()) {
InsertParagraphSeparatorCommand.cpp 82 ASSERT(pos.isNotNull());
312 if (leadingWhitespace.isNotNull() && leadingWhitespace.deprecatedNode()->isTextNode()) {
VisiblePosition.cpp 92 if (prev.isNotNull() && m_affinity == UPSTREAM) {
508 return next.isNotNull() ? next : prev;
515 return next.isNotNull() ? next : prev;
ApplyStyleCommand.cpp 266 while (paragraphStart.isNotNull() && paragraphStart != beyondEnd) {
639 ASSERT(embeddingApplyStart.isNotNull() && embeddingApplyEnd.isNotNull());
    [all...]
CompositeEditCommand.cpp 711 VisiblePosition visibleEnd = next.isNotNull() ? next : visibleParagraphEnd;
    [all...]
ReplaceSelectionCommand.cpp     [all...]
InsertListCommand.cpp 91 while (start.isNotNull() && start != end) {
SelectionController.cpp     [all...]
TextIterator.cpp 867 // The startPos.isNotNull() check is needed because the start could be before the body,
869 // The currPos.isNotNull() check is needed because positions in non-HTML content
873 return startPos.isNotNull() && currPos.isNotNull() && !inSameLine(startPos, currPos);
    [all...]
  /external/webkit/Source/WebCore/editing/mac/
SelectionControllerMac.mm 53 if (AXObjectCache::accessibilityEnabled() && m_selection.start().isNotNull() && m_selection.end().isNotNull())
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
JDKDSAPublicKey.java 76 if (isNotNull(info.getAlgorithmId().getParameters()))
84 private boolean isNotNull(DEREncodable parameters)
  /external/webkit/Source/WebCore/dom/
Position.h 119 bool isNotNull() const { return m_anchorNode; }
Position.cpp 348 if (atFirstEditingPositionForNode() && nextPosition.isNotNull() && !nextPosition.deprecatedNode()->rendererIsEditable())
352 if (atLastEditingPositionForNode() && prevPosition.isNotNull() && !prevPosition.deprecatedNode()->rendererIsEditable())
355 return nextPosition.isNotNull() && !nextPosition.deprecatedNode()->rendererIsEditable()
356 && prevPosition.isNotNull() && !prevPosition.deprecatedNode()->rendererIsEditable();
    [all...]
  /external/webkit/Source/WebCore/accessibility/
AccessibilityObject.cpp 261 while (startPosition.isNull() && prevVisiblePos.isNotNull()) {
297 while (endPosition.isNull() && nextVisiblePos.isNotNull()) {
536 while (endPosition.isNull() && nextVisiblePos.isNotNull()) {
559 while (startPosition.isNull() && prevVisiblePos.isNotNull()) {
668 while (currentVisiblePos.isNotNull() && !(inSameLine(currentVisiblePos, savedVisiblePos))) {
    [all...]
  /external/proguard/src/proguard/evaluation/value/
ReferenceValue.java 428 public final int isNotNull()
  /external/webkit/Source/WebCore/rendering/
RenderTextControl.cpp 260 if (startPosition.isNotNull() && endPosition.isNotNull()) {
  /external/webkit/Source/WebCore/page/
Frame.cpp 827 if (previous.isNotNull()) {
835 if (next.isNotNull()) {
    [all...]

Completed in 301 milliseconds

1 2