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

<<101102103104105106107108109110>>

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
DERExternal.java 68 * @param directReference The direct reference or <code>null</code> if not set.
69 * @param indirectReference The indirect reference or <code>null</code> if not set.
70 * @param dataValueDescriptor The data value descriptor or <code>null</code> if not set.
81 * @param directReference The direct reference or <code>null</code> if not set.
82 * @param indirectReference The indirect reference or <code>null</code> if not set.
83 * @param dataValueDescriptor The data value descriptor or <code>null</code> if not set.
102 if (directReference != null)
106 if (indirectReference != null)
110 if (dataValueDescriptor != null)
136 if (directReference != null)
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/pem/
PemHeader.java 43 if (s == null)
58 if (s1 == null || s2 == null)
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/infobar/
MessageInfoBar.java 25 return new MessageInfoBar(null, 0, title, BACKGROUND_TYPE_INFO);
35 return new MessageInfoBar(null, iconResourceId, title, BACKGROUND_TYPE_INFO);
44 return createWarningInfoBar(null, title);
TwoButtonInfoBar.java 37 if (wrapper != null) {
40 if (primary != null) primary.setEnabled(state);
41 if (secondary != null) secondary.setEnabled(state);
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
LoadUrlParams.java 54 mPostData = null;
55 mBaseUrlForDataUrl = null;
56 mVirtualUrlForDataUrl = null;
67 return createLoadDataParams(data, mimeType, isBase64Encoded, null);
75 * @param charset The character set for the data. Pass null if the mime type
82 if (charset != null && !charset.isEmpty()) {
105 * Defaults to about:blank if null.
108 * if null.
114 baseUrl, historyUrl, null);
125 * Defaults to about:blank if null
    [all...]
  /external/chromium_org/net/android/java/src/org/chromium/net/
ProxyChangeListener.java 103 if (props == null) {
104 return null;
115 return null;
117 return null;
119 return null;
121 return null;
123 return null;
132 if (mDelegate != null) {
140 if (cfg != null) {
148 if (mProxyReceiver != null) {
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/tests/
sampling_test.sh 61 if ! cat "$SAMPLING_TEST_BINARY" >/dev/null 2>&1; then
84 | grep '[5-9][0-9]\.[0-9][ 0-9.%]*_*AllocateAllocate' >/dev/null \
90 | grep '[5-9][0-9]\.[0-9][ 0-9.%]*_*AllocateAllocate' >/dev/null \
  /external/chromium_org/third_party/tcmalloc/vendor/src/tests/
sampling_test.sh 61 if ! cat "$SAMPLING_TEST_BINARY" >/dev/null 2>&1; then
84 | grep '[5-9][0-9]\.[0-9][ 0-9.%]*_*AllocateAllocate' >/dev/null \
90 | grep '[5-9][0-9]\.[0-9][ 0-9.%]*_*AllocateAllocate' >/dev/null \
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
MapItem.java 34 /** {@code non-null;} item type this instance covers */
37 /** {@code non-null;} section this instance covers */
41 * {@code null-ok;} first item covered or {@code null} if this is
47 * {@code null-ok;} last item covered or {@code null} if this is
63 * @param sections {@code non-null;} the sections
64 * @param mapSection {@code non-null;} the section that the resulting map
69 if (sections == null) {
70 throw new NullPointerException("sections == null");
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
UiPlugin.java 32 if (plugin == null) {
49 plugin = null;
60 if (this.preferenceStore == null) {
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
SFTPException.java 30 if (detail == null)
73 if (detail == null)
88 if (detail == null)
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/packets/
PacketIgnore.java 24 payload = null;
48 if (payload == null)
53 if (data != null)
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
QueueOfferTester.java 44 assertTrue("offer(null) should return true", getQueue().offer(null));
45 expectAdded((E) null);
51 getQueue().offer(null);
52 fail("offer(null) should throw");
57 "Should not contain null after unsupported offer(null)");
  /external/javassist/sample/duplicate/
DuplicatedObject.java 15 backup = null; // self is a backup object.
24 backup = null;
33 if (backup != null)
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/serializing/serializers/
ArraySerializer.java 51 while (nextClass != null) {
65 if (element == null) continue;
74 return null;
80 Serializer elementSerializer = null;
83 while (elementClass.getComponentType() != null)
94 if (object == null){
102 Serializer elementSerializer = null;
105 while (elementClass.getComponentType() != null) {
123 if (element != null) writeArray(elementSerializer, buffer, element, dimension + 1, dimensionCount);
124 } else if (elementSerializer != null) {
    [all...]
MapSerializer.java 92 Class keyClazz = null;
93 Class valClazz = null;
94 Serializer keySerial = null;
95 Serializer valSerial = null;
147 keyClass = null;
148 if (valClass == null)
152 valClass = null;
153 if (keyClass == null)
158 boolean uniqueKeys = keyClass == null;
159 boolean uniqueVals = valClass == null;
    [all...]
  /external/jsilver/src/org/clearsilver/
DelegatedCs.java 54 if (global != null && global instanceof DelegatedHdf) {
62 return hdf != null ? newDelegatedHdf(hdf) : null;
  /external/junit/src/org/junit/internal/
AssumptionViolatedException.java 16 super(value instanceof Throwable ? (Throwable) value : null);
22 this(assumption, null);
31 if (fMatcher != null) {
  /external/junit/src/org/junit/internal/runners/
SuiteMethod.java 27 Method suiteMethod= null;
28 Test suite= null;
34 suite= (Test) suiteMethod.invoke(null); // static method
  /external/nist-sip/java/gov/nist/javax/sip/address/
AddressImpl.java 81 if (other == null)
87 if (that.getMatcher() != null)
89 else if (that.displayName != null && this.displayName == null)
91 else if (that.displayName == null)
172 if (displayName != null) {
178 if (address != null) {
179 if (addressType == NAME_ADDR || displayName != null)
182 if (addressType == NAME_ADDR || displayName != null)
277 return (displayName != null);
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
AcceptEncoding.java 98 if (contentCoding != null) {
101 if (parameters != null && !parameters.isEmpty()) {
148 if (encoding == null)
149 throw new NullPointerException(" encoding parameter is null");
ExtensionHeaderImpl.java 84 if (this.value != null) {
87 String encodedHdr = null;
92 return null;
InReplyTo.java 90 if (callId == null)
91 return null;
105 if (this.callId != null)
Server.java 103 if (productTokens == null || productTokens.isEmpty())
104 return null;
117 if (product == null)
121 + " product parameter is null");
Warning.java 76 return text != null
131 if (host == null)
132 throw new NullPointerException("the host parameter in the Warning header is null");
144 if (text == null) {
146 "The text parameter in the Warning header is null",

Completed in 1332 milliseconds

<<101102103104105106107108109110>>