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

1 2

  /external/webkit/WebCore/editing/gtk/
SelectionControllerGtk.cpp 33 if (AXObjectCache::accessibilityEnabled() && m_selection.start().isNotNull() && m_selection.end().isNotNull()) {
  /external/webkit/WebCore/editing/mac/
SelectionControllerMac.mm 40 if (AXObjectCache::accessibilityEnabled() && m_selection.start().isNotNull() && m_selection.end().isNotNull())
  /external/webkit/WebCore/editing/
VisiblePosition.h 63 bool isNotNull() const { return m_deepPosition.isNotNull(); }
85 Element* rootEditableElement() const { return m_deepPosition.isNotNull() ? m_deepPosition.node()->rootEditableElement() : 0; }
IndentOutdentCommand.cpp 165 if (endAfterSelection.isNotNull() && !endAfterSelection.deepEquivalent().node()->inDocument())
169 if (endOfNextParagraph.isNotNull() && !endOfNextParagraph.deepEquivalent().node()->inDocument()) {
220 if (visibleStartOfParagraph.isNotNull() && !isStartOfParagraph(visibleStartOfParagraph))
222 if (visibleEndOfParagraph.isNotNull() && !isEndOfParagraph(visibleEndOfParagraph))
265 if (endAfterSelection.isNotNull() && !endAfterSelection.deepEquivalent().node()->inDocument())
268 if (endOfNextParagraph.isNotNull() && !endOfNextParagraph.deepEquivalent().node()->inDocument()) {
DeleteSelectionCommand.cpp 219 bool skipSmartDelete = pos.trailingWhitespacePosition(VP_DEFAULT_AFFINITY, true).isNotNull();
221 skipSmartDelete = m_downstreamEnd.leadingWhitespacePosition(VP_DEFAULT_AFFINITY, true).isNotNull();
224 bool hasLeadingWhitespaceBeforeAdjustment = m_upstreamStart.leadingWhitespacePosition(m_selectionToDelete.affinity(), true).isNotNull();
237 if (!skipSmartDelete && !hasLeadingWhitespaceBeforeAdjustment && m_downstreamEnd.trailingWhitespacePosition(VP_DEFAULT_AFFINITY, true).isNotNull()) {
522 if (m_leadingWhitespace.isNotNull() && !m_leadingWhitespace.isRenderedCharacter() && m_leadingWhitespace.node()->isTextNode()) {
527 if (m_trailingWhitespace.isNotNull() && !m_trailingWhitespace.isRenderedCharacter() && m_trailingWhitespace.node()->isTextNode()) {
    [all...]
visible_units.cpp 429 if (visPos.isNotNull()) {
516 return a.isNotNull() && startOfLine(a) == startOfLine(b);
521 return p.isNotNull() && p == startOfLine(p);
526 return p.isNotNull() && p == endOfLine(p);
    [all...]
FormatBlockCommand.cpp 58 while (nextParagraph.isNotNull() && nextParagraph != startOfLastParagraph) {
InsertTextCommand.cpp 162 if (placeholder.isNotNull())
168 if (placeholder.isNotNull())
VisibleSelection.cpp 250 if (m_base.isNotNull()) {
255 if (m_extent.isNotNull() && !baseAndExtentEqual)
338 if (next.isNotNull())
511 while (p.isNotNull() && !(lowestEditableAncestor(p.node()) == baseEditableAncestor && !isEditablePosition(p))) {
540 while (p.isNotNull() && !(lowestEditableAncestor(p.node()) == baseEditableAncestor && !isEditablePosition(p))) {
VisiblePosition.cpp 93 if (prev.isNotNull() && m_affinity == UPSTREAM) {
484 return next.isNotNull() ? next : prev;
491 return next.isNotNull() ? next : prev;
InsertParagraphSeparatorCommand.cpp 316 if (leadingWhitespace.isNotNull() && leadingWhitespace.node()->isTextNode()) {
SelectionController.cpp 779 x = visiblePosition.isNotNull() ? visiblePosition.xOffsetForVerticalNavigation() : 0;
831 if (pos.isNotNull()) {
    [all...]
ReplaceSelectionCommand.cpp     [all...]
CompositeEditCommand.cpp 659 VisiblePosition visibleEnd = next.isNotNull() ? next : visibleParagraphEnd;
    [all...]
TextIterator.cpp 783 // The startPos.isNotNull() check is needed because the start could be before the body,
785 // The currPos.isNotNull() check is needed because positions in non-HTML content
789 return startPos.isNotNull() && currPos.isNotNull() && !inSameLine(startPos, currPos);
    [all...]
ApplyStyleCommand.cpp 609 while (paragraphStart.isNotNull() && paragraphStart != beyondEnd) {
    [all...]
TypingCommand.cpp 305 if (previous.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/WebCore/dom/
Position.h 119 bool isNotNull() const { return m_anchorNode; }
Position.cpp 320 if (atFirstEditingPositionForNode() && nextPosition.isNotNull() && !nextPosition.node()->isContentEditable())
324 if (atLastEditingPositionForNode() && prevPosition.isNotNull() && !prevPosition.node()->isContentEditable())
327 return nextPosition.isNotNull() && !nextPosition.node()->isContentEditable()
328 && prevPosition.isNotNull() && !prevPosition.node()->isContentEditable();
    [all...]
  /external/webkit/WebCore/accessibility/
AccessibilityObject.cpp 255 while (startPosition.isNull() && prevVisiblePos.isNotNull()) {
291 while (endPosition.isNull() && nextVisiblePos.isNotNull()) {
537 while (endPosition.isNull() && nextVisiblePos.isNotNull()) {
560 while (startPosition.isNull() && prevVisiblePos.isNotNull()) {
669 while (currentVisiblePos.isNotNull() && !(inSameLine(currentVisiblePos, savedVisiblePos))) {
    [all...]
  /external/proguard/src/proguard/evaluation/value/
ReferenceValue.java 428 public final int isNotNull()
  /external/webkit/WebCore/rendering/
RenderTextControl.cpp 262 if (startPosition.isNotNull() && endPosition.isNotNull()) {
  /prebuilt/common/eclipse/
org.eclipse.equinox.common_3.4.0.v20080421-2006.jar 
  /external/webkit/WebCore/page/
EventHandler.cpp 236 if (pos.isNotNull()) {
264 if (pos.isNotNull() && pos.deepEquivalent().node()->isDescendantOf(URLElement))
306 if (pos.isNotNull()) {
    [all...]

Completed in 1726 milliseconds

1 2