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

1 2 3

  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/check/
Assert.java 154 public static void isNotNull(Object object) {
155 isNotNull(object, ""); //$NON-NLS-1$
168 public static void isNotNull(Object object, String message) {
188 public static void isNotNull(Object object, String errorFormat, Object... args) {
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/reflect/
ReflectionUtils.java 55 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/
VisiblePosition.h 64 bool isNotNull() const { return m_deepPosition.isNotNull(); }
88 Element* rootEditableElement() const { return m_deepPosition.isNotNull() ? m_deepPosition.deprecatedNode()->rootEditableElement() : 0; }
PlainTextRange.h 49 bool isNotNull() const { return m_start != kNotFound; }
Caret.h 86 bool hasCaret() const { return m_position.isNotNull(); }
IndentOutdentCommand.cpp 172 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()) {
PlainTextRange.cpp 72 ASSERT(isNotNull());
117 if (runEnd.isNotNull())
ApplyBlockElementCommand.cpp 103 if (start.isNotNull() && end.isNotNull())
150 if (endAfterSelection.isNotNull() && !endAfterSelection.deepEquivalent().inDocument())
154 if (endOfNextParagraph.isNotNull() && !endOfNextParagraph.deepEquivalent().inDocument())
DeleteSelectionCommand.cpp 221 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()) {
    [all...]
InsertTextCommand.cpp 187 if (placeholder.isNotNull())
195 if (placeholder.isNotNull())
VisibleUnits.cpp     [all...]
FrameSelection.cpp 195 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)
    [all...]
InsertListCommand.cpp 91 while (start.isNotNull() && start != end) {
145 while (startOfCurrentParagraph.isNotNull() && !inSameParagraph(startOfCurrentParagraph, startOfLastParagraph, CanCrossEditingBoundary)) {
165 ASSERT(endOfSelection.isNotNull());
InsertParagraphSeparatorCommand.cpp 82 ASSERT(pos.isNotNull());
348 if (leadingWhitespace.isNotNull() && leadingWhitespace.deprecatedNode()->isTextNode()) {
413 if (positionAfterSplit.isNotNull()) {
VisibleSelection.cpp 318 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))) {
RenderedPosition.cpp 41 ASSERT(position.isNotNull());
ApplyStyleCommand.cpp 268 while (paragraphStart.isNotNull() && paragraphStart != beyondEnd) {
665 ASSERT(embeddingApplyStart.isNotNull() && embeddingApplyEnd.isNotNull());
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dsa/
BCDSAPublicKey.java 76 if (isNotNull(info.getAlgorithm().getParameters()))
84 private boolean isNotNull(ASN1Encodable parameters)
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
JDKDSAPublicKey.java 77 if (isNotNull(info.getAlgorithm().getParameters()))
85 private boolean isNotNull(ASN1Encodable parameters)
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/editor/structure/
PageSiteComposite.java 86 Assert.isNotNull(page);
  /external/mockito/src/org/mockito/
Matchers.java 661 * alias to {@link Matchers#isNotNull()}
675 * alias to {@link Matchers#isNotNull(Class)}
695 public static Object isNotNull() {
710 public static <T> T isNotNull(Class<T> clazz) {
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Position.h 145 bool isNotNull() const { return m_anchorNode; }
Position.cpp 412 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();
    [all...]
  /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/
DB_Results.java 85 Assert.isNotNull(dbName);
106 Assert.isNotNull(dbLocation);
125 Assert.isNotNull(baselinePrefix);
156 Assert.isNotNull(version);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTextFormControlElement.cpp 301 if (startPosition.isNotNull() && endPosition.isNotNull()) {

Completed in 161 milliseconds

1 2 3