HomeSort by relevance Sort by last modified time
    Searched refs:null (Results 1651 - 1675 of 19630) sorted by null

<<61626364656667686970>>

  /external/doclava/src/com/google/doclava/
SeeTagInfo.java 31 if (mLink == null) {
34 && (mBase != null ? mBase.checkLevel() : true));
46 if (linkRef.kind != null) {
55 if (linkRef.href != null) {
59 if (ClearPage.toroot != null) {
63 if (linkRef.federatedSite != null) {
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/draw2d/
IColorConstants.java 67 Color lightGray = new Color(null, 192, 192, 192);
68 Color gray = new Color(null, 128, 128, 128);
69 Color darkGray = new Color(null, 64, 64, 64);
70 Color black = new Color(null, 0, 0, 0);
71 Color lightBlue = new Color(null, 127, 127, 255);
72 Color darkBlue = new Color(null, 0, 0, 127);
  /external/emma/core/java12/com/vladium/util/
Files.java 39 if (atfile == null) throw new IllegalArgumentException ("null input: atfile");
41 List _result = null;
43 BufferedReader in = null;
49 for (String line; (line = in.readLine ()) != null; )
59 if (in != null) try { in.close (); } catch (Exception ignore) {}
62 if ((_result == null) || _result.isEmpty ())
90 if (path == null) throw new IllegalArgumentException ("null input: path");
101 if (segment == null) throw new IllegalArgumentException ("null input: path[" + i + "]")
    [all...]
  /external/guava/guava/src/com/google/common/io/
MultiInputStream.java 48 if (in != null) {
52 in = null;
68 if (in == null) {
79 if (in == null) {
91 if (in == null) {
103 if (in == null || n <= 0) {
  /external/harfbuzz_ng/src/
check-symbols.sh 10 if which nm 2>/dev/null >/dev/null; then
18 $MAKE $defs > /dev/null
  /external/javassist/src/main/javassist/
Loader.java 159 this(null);
187 translator = null;
188 domain = null;
291 null,
307 if (c == null)
310 if (c == null)
313 if (c == null)
325 * If the source throws an exception, this returns null.
331 * @return null if the specified class could not be found.
338 if (source != null) {
    [all...]
  /external/javassist/src/main/javassist/bytecode/analysis/
MultiType.java 56 this(interfaces, null);
60 super(null);
70 if (resolved != null)
77 * Always returns null since this type is never used for an array.
80 return null;
111 if (resolved != null)
117 if (potentialClass != null && !type.isAssignableFrom(potentialClass))
118 potentialClass = null;
122 if (map.size() == 1 && potentialClass == null) {
138 if (potentialClass != null) {
    [all...]
  /external/junit/src/junit/framework/
TestCase.java 87 fName= null;
131 Throwable exception= null;
142 if (exception == null) exception= tearingDown;
145 if (exception != null) throw exception;
152 assertNotNull("TestCase.fName cannot be null", fName); // Some VMs crash when calling getMethod(null,null);
153 Method runMethod= null;
159 runMethod= getClass().getMethod(fName, (Class[])null);
  /external/mockito/src/org/mockito/internal/matchers/
Equals.java 54 if (o == null || !this.getClass().equals(o.getClass())) {
58 return this.wanted == null && other.wanted == null || this.wanted != null && this.wanted.equals(other.wanted);
74 return wanted != null && object != null && object.getClass() == wanted.getClass();
  /external/mockito/src/org/mockito/internal/util/
MockCreationValidator.java 25 if (extraInterfaces == null) {
37 if (classToMock == null || spiedInstance == null) {
46 if (classToMock == null || delegatedInstance == null) {
61 && Constructors.noArgConstructorOf(classToMock) == null
  /external/mockwebserver/src/main/java/com/google/mockwebserver/
QueueDispatcher.java 34 if (requestLine != null && requestLine.equals("GET /favicon.ico HTTP/1.1")) {
40 if (failFastResponse != null && responseQueue.peek() == null) {
50 if (peek == null) {
51 return failFastResponse != null
65 : null;
  /external/nist-sip/java/gov/nist/javax/sip/header/
AlertInfo.java 72 if (uri != null) {
74 } else if (string != null) {
104 URI alertInfoUri = null;
106 if (this.uri != null) {
121 if (this.uri != null) {
123 } else if (this.string != null) {
RetryAfter.java 77 if (retryAfter != null)
80 if (comment != null)
94 return comment != null;
100 comment = null;
141 * @return the comment of this RetryAfterHeader, return null if no comment
158 if (comment == null)
159 throw new NullPointerException("the comment parameter is null");
188 if (this.getParameter(DURATION) == null) return -1;
  /external/openssh/regress/
agent-ptrace.sh 32 eval `${SSHAGENT} -s` > /dev/null
44 egrep 'ptrace: Operation not permitted.|procfs:.*Permission denied.|ttrace.*Permission denied.|procfs:.*: Invalid argument.|Unable to access task ' >/dev/null ${OBJ}/gdb.out
52 ${SSHAGENT} -k > /dev/null
  /external/replicaisland/src/com/replica/replicaisland/
ButtonAnimationComponent.java 41 mSprite = null;
42 mChannel = null;
44 mDepressSound = null;
49 if (mSprite != null) {
56 if (sound != null) {
62 if (mChannel != null) {
DynamicCollisionComponent.java 43 mAttackVolumes = null;
44 mVulnerabilityVolumes = null;
47 mHitReactionComponent = null;
53 if (collision != null && mBoundingVolume.getRadius() > 0.0f) {
69 if (mAttackVolumes != null) {
76 if (mVulnerabilityVolumes != null) {
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/util/
PropertiesHelper.java 11 if (originalValue == null) {
12 return null;
21 String propertyValue = null;
22 if (properties != null) {
25 if (propertyValue == null) {
28 if (propertyValue == null) {
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
PasswordTransformationMethodTest.java 24 CharSequence output = transformationMethod.getTransformation("foobar", null);
30 CharSequence output = transformationMethod.getTransformation(" baz ", null);
36 CharSequence output = transformationMethod.getTransformation(" ", null);
42 CharSequence output = transformationMethod.getTransformation("", null);
48 CharSequence output = transformationMethod.getTransformation(null, null);
  /external/smack/src/org/jivesoftware/smack/
BOSHConfiguration.java 73 file = (filePath != null ? filePath : "/");
95 file = (filePath != null ? filePath : "/");
99 return (proxy != null && proxy.getProxyType() != ProxyInfo.ProxyType.NONE);
107 return (proxy != null ? proxy.getProxyAddress() : null);
111 return (proxy != null ? proxy.getProxyPort() : 8080);
  /external/smack/src/org/jivesoftware/smackx/pubsub/provider/
SubscriptionProvider.java 31 String jid = parser.getAttributeValue(null, "jid");
32 String nodeId = parser.getAttributeValue(null, "node");
33 String subId = parser.getAttributeValue(null, "subid");
34 String state = parser.getAttributeValue(null, "subscription");
49 return new Subscription(jid, nodeId, subId, (state == null ? null : Subscription.State.valueOf(state)), isRequired);
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
ExceptionWithContext.java 35 /** non-null; human-oriented context of the exception */
44 * @param ex non-null; the exception to augment
45 * @param str non-null; context to add
46 * @return non-null; an appropriate instance
67 this(message, null);
73 * @param cause null-ok; exception that caused this one
76 this(null, cause);
83 * @param cause null-ok; exception that caused this one
86 super((message != null) ? message :
87 (cause != null) ? cause.getMessage() : null
    [all...]
  /frameworks/base/core/java/android/hardware/
ConsumerIrManager.java 55 if (mService == null) {
79 if (mService == null) {
131 * null if there was an error communicating with the Consumer IR Service.
134 if (mService == null) {
136 return null;
143 return null;
153 return null;
  /frameworks/base/core/java/android/net/
ProxyProperties.java 70 mPacFileUrl = null;
75 if (source != null) {
85 InetSocketAddress inetSocketAddress = null;
112 if (mExclusionList == null) {
127 if (TextUtils.isEmpty(url) || mParsedExclusionList == null ||
132 if (urlDomain == null) return false;
145 Proxy.validate(mHost == null ? "" : mHost, mPort == 0 ? "" : Integer.toString(mPort),
146 mExclusionList == null ? "" : mExclusionList);
155 if (mHost != null) {
168 if (mPacFileUrl != null) {
    [all...]
  /frameworks/base/core/java/android/net/http/
HttpsConnection.java 60 private static SSLSocketFactory mSslSocketFactory = null;
66 initializeEngine(null); typedefs
76 SSLClientSessionCache cache = null;
77 if (sessionDir != null) {
89 return null;
102 sslContext.engineInit(null, trustManagers, null);
165 SSLSocket sslSock = null;
167 if (mProxyHost != null) {
175 AndroidHttpClientConnection proxyConnection = null;
    [all...]
  /frameworks/base/core/java/android/printservice/
PrinterDiscoverySession.java 175 List<PrinterInfo> addedPrinters = null;
180 if (oldPrinter == null || !oldPrinter.equals(addedPrinter)) {
181 if (addedPrinters == null) {
189 if (addedPrinters != null) {
198 if (mLastSentPrinters == null) {
206 if (mPrinters.get(addedPrinter.getId()) == null) {
243 if (mPrinters.remove(removedPrinterId) != null) {
259 if (mLastSentPrinters == null) {
274 if (mLastSentPrinters == null || mLastSentPrinters.isEmpty()) {
275 mLastSentPrinters = null;
    [all...]

Completed in 1143 milliseconds

<<61626364656667686970>>