Searched refs:isNotNull (Results 1 - 25 of 48) sorted by relevance

12

/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/check/
H A DAssert.java154 public static void isNotNull(Object object) { method in class:Assert
155 isNotNull(object, ""); //$NON-NLS-1$
168 public static void isNotNull(Object object, String message) { method in class:Assert
188 public static void isNotNull(Object object, String errorFormat, Object... args) { method in class:Assert
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/reflect/
H A DReflectionUtils.java55 Assert.isNotNull(type);
162 Assert.isNotNull(method);
179 Assert.isNotNull(name);
180 Assert.isNotNull(parameterTypes);
203 Assert.isNotNull(clazz);
204 Assert.isNotNull(signature);
220 Assert.isNotNull(object);
221 Assert.isNotNull(arguments);
227 Assert.isNotNull(method, "Can not find method " + signature + " in " + refClass);
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DVisiblePosition.h64 bool isNotNull() const { return m_deepPosition.isNotNull(); } function in class:WebCore::FINAL
88 Element* rootEditableElement() const { return m_deepPosition.isNotNull() ? m_deepPosition.deprecatedNode()->rootEditableElement() : 0; }
H A DPlainTextRange.h49 bool isNotNull() const { return m_start != kNotFound; } function in class:WebCore::PlainTextRange
H A DCaret.h86 bool hasCaret() const { return m_position.isNotNull(); }
H A DIndentOutdentCommand.cpp172 if (visibleStartOfParagraph.isNotNull() && !isStartOfParagraph(visibleStartOfParagraph))
174 if (visibleEndOfParagraph.isNotNull() && !isEndOfParagraph(visibleEndOfParagraph))
224 if (endAfterSelection.isNotNull() && !endAfterSelection.deepEquivalent().inDocument())
227 if (endOfNextParagraph.isNotNull() && !endOfNextParagraph.deepEquivalent().inDocument()) {
H A DPlainTextRange.cpp72 ASSERT(isNotNull());
117 if (runEnd.isNotNull())
H A DApplyBlockElementCommand.cpp103 if (start.isNotNull() && end.isNotNull())
150 if (endAfterSelection.isNotNull() && !endAfterSelection.deepEquivalent().inDocument())
154 if (endOfNextParagraph.isNotNull() && !endOfNextParagraph.deepEquivalent().inDocument())
H A DDeleteSelectionCommand.cpp221 bool skipSmartDelete = pos.trailingWhitespacePosition(VP_DEFAULT_AFFINITY, true).isNotNull();
223 skipSmartDelete = m_downstreamEnd.leadingWhitespacePosition(VP_DEFAULT_AFFINITY, true).isNotNull();
226 bool hasLeadingWhitespaceBeforeAdjustment = m_upstreamStart.leadingWhitespacePosition(m_selectionToDelete.affinity(), true).isNotNull();
241 if (!skipSmartDelete && !hasLeadingWhitespaceBeforeAdjustment && m_downstreamEnd.trailingWhitespacePosition(VP_DEFAULT_AFFINITY, true).isNotNull()) {
376 if (firstEditablePosition.isNotNull())
384 if (previous.isNotNull() && !isEndOfBlock(previous))
389 if (next.isNotNull() && !isStartOfBlock(next))
571 if (m_leadingWhitespace.isNotNull() && !m_leadingWhitespace.isRenderedCharacter() && m_leadingWhitespace.deprecatedNode()->isTextNode()) {
576 if (m_trailingWhitespace.isNotNull() && !m_trailingWhitespace.isRenderedCharacter() && m_trailingWhitespace.deprecatedNode()->isTextNode()) {
H A DInsertTextCommand.cpp187 if (placeholder.isNotNull())
195 if (placeholder.isNotNull())
H A DVisibleUnits.cpp834 return a.isNotNull() && logicalStartOfLine(a) == logicalStartOfLine(b);
888 return a.isNotNull() && startOfLine(a) == startOfLine(b);
893 return p.isNotNull() && p == startOfLine(p);
898 return p.isNotNull() && p == endOfLine(p);
943 if (position.isNotNull()) {
1001 if (position.isNotNull()) {
1249 return a.isNotNull() && startOfParagraph(a, boundaryCrossingRule) == startOfParagraph(b, boundaryCrossingRule);
1254 return pos.isNotNull() && pos == startOfParagraph(pos, boundaryCrossingRule);
1259 return pos.isNotNull() && pos == endOfParagraph(pos, boundaryCrossingRule);
1313 return pos.isNotNull()
[all...]
H A DFrameSelection.cpp195 VisiblePosition base = m_originalBase.isNotNull() ? m_originalBase : newSelection.visibleBase();
206 } else if (m_originalBase.isNotNull()) {
343 if (start.isNotNull() && end.isNotNull()) {
491 if (startPosition.isNotNull())
493 if (endPosition.isNotNull())
590 if (positionAfterSpacingAndFollowingWord.isNotNull() && positionAfterSpacingAndFollowingWord != positionAfterCurrentWord)
1157 x = visiblePosition.isNotNull() ? visiblePosition.lineDirectionPointForBlockDirectionNavigation() : 0;
1445 if (m_selection.start().isNotNull() && m_selection.end().isNotNull()) {
[all...]
H A DInsertListCommand.cpp91 while (start.isNotNull() && start != end) {
145 while (startOfCurrentParagraph.isNotNull() && !inSameParagraph(startOfCurrentParagraph, startOfLastParagraph, CanCrossEditingBoundary)) {
165 ASSERT(endOfSelection.isNotNull());
H A DInsertParagraphSeparatorCommand.cpp82 ASSERT(pos.isNotNull());
348 if (leadingWhitespace.isNotNull() && leadingWhitespace.deprecatedNode()->isTextNode()) {
413 if (positionAfterSplit.isNotNull()) {
H A DVisibleSelection.cpp318 if (m_base.isNotNull()) {
323 if (m_extent.isNotNull() && !baseAndExtentEqual)
406 if (next.isNotNull())
637 while (p.isNotNull() && !(lowestEditableAncestor(p.containerNode()) == baseEditableAncestor && !isEditablePosition(p))) {
666 while (p.isNotNull() && !(lowestEditableAncestor(p.containerNode()) == baseEditableAncestor && !isEditablePosition(p))) {
H A DRenderedPosition.cpp41 ASSERT(position.isNotNull());
H A DApplyStyleCommand.cpp268 while (paragraphStart.isNotNull() && paragraphStart != beyondEnd) {
665 ASSERT(embeddingApplyStart.isNotNull() && embeddingApplyEnd.isNotNull());
843 if (runs[i].positionForStyleComputation.isNotNull())
1100 ASSERT(start.isNotNull());
1101 ASSERT(end.isNotNull());
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dsa/
H A DBCDSAPublicKey.java76 if (isNotNull(info.getAlgorithm().getParameters()))
84 private boolean isNotNull(ASN1Encodable parameters) method in class:BCDSAPublicKey
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DJDKDSAPublicKey.java77 if (isNotNull(info.getAlgorithm().getParameters()))
85 private boolean isNotNull(ASN1Encodable parameters) method in class:JDKDSAPublicKey
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/editor/structure/
H A DPageSiteComposite.java86 Assert.isNotNull(page);
/external/mockito/src/org/mockito/
H A DMatchers.java661 * alias to {@link Matchers#isNotNull()}
675 * alias to {@link Matchers#isNotNull(Class)}
695 public static Object isNotNull() { method in class:Matchers
710 public static <T> T isNotNull(Class<T> clazz) { method in class:Matchers
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DPosition.h145 bool isNotNull() const { return m_anchorNode; } function in class:WebCore::Position
H A DPosition.cpp412 if (atFirstEditingPositionForNode() && nextPosition.isNotNull() && !nextPosition.deprecatedNode()->rendererIsEditable())
416 if (atLastEditingPositionForNode() && prevPosition.isNotNull() && !prevPosition.deprecatedNode()->rendererIsEditable())
419 return nextPosition.isNotNull() && !nextPosition.deprecatedNode()->rendererIsEditable()
420 && prevPosition.isNotNull() && !prevPosition.deprecatedNode()->rendererIsEditable();
1061 if (!isEndOfParagraph(v) && v.next(CannotCrossEditingBoundary).isNotNull())
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/
H A DDB_Results.java85 Assert.isNotNull(dbName);
106 Assert.isNotNull(dbLocation);
125 Assert.isNotNull(baselinePrefix);
156 Assert.isNotNull(version);
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLTextFormControlElement.cpp301 if (startPosition.isNotNull() && endPosition.isNotNull()) {

Completed in 399 milliseconds

12