/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 | 62 bool isNotNull() const { return m_deepPosition.isNotNull(); } 86 Element* rootEditableElement() const { return m_deepPosition.isNotNull() ? m_deepPosition.deprecatedNode()->rootEditableElement() : 0; }
|
PlainTextRange.h | 48 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)) 219 if (endAfterSelection.isNotNull() && !endAfterSelection.deepEquivalent().inDocument()) 222 if (endOfNextParagraph.isNotNull() && !endOfNextParagraph.deepEquivalent().inDocument()) {
|
PlainTextRange.cpp | 72 ASSERT(isNotNull()); 114 if (runEnd.isNotNull())
|
ApplyBlockElementCommand.cpp | 99 if (start.isNotNull() && end.isNotNull()) 146 if (endAfterSelection.isNotNull() && !endAfterSelection.deepEquivalent().inDocument()) 150 if (endOfNextParagraph.isNotNull() && !endOfNextParagraph.deepEquivalent().inDocument())
|
VisibleUnits.cpp | 709 return p.isNotNull() && p == startOfWord(p, RightWordIfOnBoundary); [all...] |
InsertTextCommand.cpp | 190 if (placeholder.isNotNull()) 198 if (placeholder.isNotNull())
|
VisibleSelection.cpp | 258 if (m_base.isNotNull()) { 263 if (m_extent.isNotNull() && !baseAndExtentEqual) 346 if (next.isNotNull()) 576 while (p.isNotNull() && !(lowestEditableAncestor(p.containerNode()) == baseEditableAncestor && !isEditablePosition(p))) { 605 while (p.isNotNull() && !(lowestEditableAncestor(p.containerNode()) == baseEditableAncestor && !isEditablePosition(p))) {
|
FrameSelection.cpp | 197 VisiblePosition base = m_originalBase.isNotNull() ? m_originalBase : newSelection.visibleBase(); 208 } else if (m_originalBase.isNotNull()) { 342 if (start.isNotNull() && end.isNotNull()) { 491 if (startPosition.isNotNull()) 493 if (endPosition.isNotNull()) 588 if (positionAfterSpacingAndFollowingWord.isNotNull() && positionAfterSpacingAndFollowingWord != positionAfterCurrentWord) [all...] |
DeleteSelectionCommand.cpp | 231 bool skipSmartDelete = pos.trailingWhitespacePosition(VP_DEFAULT_AFFINITY, true).isNotNull(); 233 skipSmartDelete = m_downstreamEnd.leadingWhitespacePosition(VP_DEFAULT_AFFINITY, true).isNotNull(); 236 bool hasLeadingWhitespaceBeforeAdjustment = m_upstreamStart.leadingWhitespacePosition(m_selectionToDelete.affinity(), true).isNotNull(); 251 if (!skipSmartDelete && !hasLeadingWhitespaceBeforeAdjustment && m_downstreamEnd.trailingWhitespacePosition(VP_DEFAULT_AFFINITY, true).isNotNull()) { 386 if (firstEditablePosition.isNotNull()) 575 if (m_leadingWhitespace.isNotNull() && !m_leadingWhitespace.isRenderedCharacter() && m_leadingWhitespace.deprecatedNode()->isTextNode()) { 580 if (m_trailingWhitespace.isNotNull() && !m_trailingWhitespace.isRenderedCharacter() && m_trailingWhitespace.deprecatedNode()->isTextNode()) { [all...] |
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/modifiers/ |
Modifier.java | 49 invalid = pError.isNotNull();
|
ModifierHelper.java | 141 if (pAction.isNotNull()) {
156 if (pIpo.isNotNull()) {
182 if (pAnimData.isNotNull()) {
185 if (pAction.isNotNull()) {
|
ArrayModifier.java | 68 if (pCurveOb.isNotNull()) {
111 if (pOffsetObject.isNotNull()) {
118 if (pStartCap.isNotNull()) {
122 if (pEndCap.isNotNull()) {
|
ArmatureModifier.java | 93 if (this.validate(modifierStructure, blenderContext) && pDvert.isNotNull()) {
95 if (pArmatureObject.isNotNull()) {
280 if (pDvert.isNotNull()) {// assigning weights and bone indices
289 if (totweight > 0 && pDW.isNotNull() && groupToBoneIndexMap!=null) {// pDW should never be null here, but I check it just in case :)
|
/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/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/ |
Constraint.java | 56 if (pData.isNotNull()) {
59 if(pTar!= null && pTar.isNotNull()) {
|
ConstraintHelper.java | 83 if (pActions.isNotNull()) {
94 if (pIpo.isNotNull()) {
108 if (pPose.isNotNull()) {
191 if(pData.isNotNull()) {
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/editor/structure/ |
PageSiteComposite.java | 86 Assert.isNotNull(page);
|
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/ |
AbstractBlenderHelper.java | 157 if (pProperties.isNotNull()) {
|
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/file/ |
Pointer.java | 141 public boolean isNotNull() {
|
/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) {
|