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

<<81828384858687888990>>

  /external/apache-http/src/org/apache/http/impl/
AbstractHttpClientConnection.java 72 private SessionInputBuffer inbuffer = null;
73 private SessionOutputBuffer outbuffer = null;
74 private HttpMessageParser responseParser = null;
75 private HttpMessageWriter requestWriter = null;
76 private HttpConnectionMetricsImpl metrics = null;
105 return new HttpResponseParser(buffer, null, responseFactory, params);
112 return new HttpRequestWriter(buffer, null, params);
119 if (inbuffer == null) {
120 throw new IllegalArgumentException("Input session buffer may not be null");
122 if (outbuffer == null) {
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
V3TBSCertificateGenerator.java 147 if (extensions != null)
151 if (altName != null && altName.isCritical())
160 if ((serialNumber == null) || (signature == null)
161 || (issuer == null) || (startDate == null) || (endDate == null)
162 || (subject == null && !altNamePresentAndCritical) || (subjectPublicKeyInfo == null))
184 if (subject != null)
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
BouncyCastleProviderConfiguration.java 39 if (securityManager != null)
44 if (parameter instanceof ECParameterSpec || parameter == null)
53 if (curveSpec == null)
64 if (securityManager != null)
69 if (parameter instanceof ECParameterSpec || parameter == null)
82 if (securityManager != null)
87 if (parameter instanceof DHParameterSpec || parameter instanceof DHParameterSpec[] || parameter == null)
96 if (dhSpec == null)
107 if (securityManager != null)
112 if (parameter instanceof DHParameterSpec || parameter instanceof DHParameterSpec[] || parameter == null)
    [all...]
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
PepperPluginManager.java 48 if (filename == null || filename.isEmpty()) {
49 return null;
53 if (mimetype == null || mimetype.isEmpty()) {
54 return null;
67 if (name != null && !name.isEmpty()) {
70 if (description != null && !description.isEmpty()) {
73 if (version != null && !version.isEmpty()) {
96 return null;
106 if (serviceInfo == null || serviceInfo.metaData == null ||
    [all...]
  /external/chromium_org/content/shell/android/linker_test_apk/src/org/chromium/content_linker_test_apk/
ContentLinkerTestActivity.java 52 if (commandLineParams != null) {
62 if (cmdline == null)
63 Log.i(TAG, "Command line is null");
97 View view = inflater.inflate(R.layout.test_activity, null);
151 if (view != null) view.onHide();
159 if (view != null) view.onShow();
169 return intent != null ? intent.getDataString() : null;
173 return intent != null ? intent.getStringArrayExtra(COMMAND_LINE_ARGS_KEY) : null;
    [all...]
  /external/chromium_org/v8/test/webkit/fast/js/
function-apply.js 32 return t.apply(null, arguments);
41 return t.apply(null, arguments);
50 return t.apply(null, arguments);
59 return t.apply(null, arguments);
68 return t.apply(null, arguments, executedAdditionalArgument = true);
84 return t.apply(null, array);
93 return t.apply(null, array);
102 return t.apply(null, array);
111 return t.apply(null, array);
127 return t.apply(null, arguments)
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
DebugInfoItem.java 35 /** {@code non-null;} the code this item represents */
47 if (code == null) {
48 throw new NullPointerException("code == null");
74 encoded = encode(addedTo.getFile(), null, null, null, false);
94 * @param file {@code non-null;} the file to use for referencing other sections
95 * @param out {@code non-null;} where to annotate to
96 * @param prefix {@code null-ok;} prefix to attach to each line of output
99 encode(file, prefix, null, out, false)
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
Insn.java 31 /** {@code non-null;} opcode */
34 /** {@code non-null;} source position */
37 /** {@code null-ok;} spec for the result of this instruction, if any */
40 /** {@code non-null;} specs for all the sources of this instruction */
46 * @param opcode {@code non-null;} the opcode
47 * @param position {@code non-null;} source position
48 * @param result {@code null-ok;} spec for the result, if any
49 * @param sources {@code non-null;} specs for all the sources
53 if (opcode == null) {
54 throw new NullPointerException("opcode == null");
    [all...]
  /external/emma/core/java12/com/vladium/emma/report/
SourcePathCache.java 39 if (sourcepath == null) throw new IllegalArgumentException ("null input: sourcepath");
61 if (sourcepath == null) throw new IllegalArgumentException ("null input: sourcepath");
79 * @return absolute pathname [null if 'name' was not found in cache]
83 if (packageVMName == null) throw new IllegalArgumentException ("null input: packageVMName");
84 if (name == null) throw new IllegalArgumentException ("null input: name");
86 if (m_sourcepath.length == 0) return null;
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
AbstractTableReadTest.java 67 assertFalse(table.contains("foo", null));
68 assertFalse(table.contains(null, 1));
69 assertFalse(table.contains(null, null));
77 assertFalse(table.containsRow(null));
85 assertFalse(table.containsColumn(null));
94 assertFalse(table.containsValue(null));
105 assertNull(table.get("foo", null));
106 assertNull(table.get(null, 1));
107 assertNull(table.get(null, null))
    [all...]
  /external/javassist/src/main/javassist/bytecode/
FieldInfo.java 36 ArrayList attribute; // may be null.
41 attribute = null;
91 if (invisibleAnnotations != null) {
92 invisibleAnnotations = invisibleAnnotations.copy(cp, null);
98 if (visibleAnnotations != null) {
99 visibleAnnotations = visibleAnnotations.copy(cp, null);
105 if (signature != null) {
106 signature = signature.copy(cp, null);
112 index = constPool.copy(index, cp, null);
134 if (cachedName == null)
    [all...]
  /external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/control/
GhostControl.java 32 protected PhysicsSpace space = null;
84 if (getUserObject() == null || getUserObject() == this.spatial) {
88 if (spatial == null) {
90 setUserObject(null);
100 if (space != null) {
102 if (spatial != null) {
128 if (enabled && space != null && space.getDebugManager() != null) {
129 if (debugShape == null) {
141 if (space == null) {
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/animation/
AnimChannel.java 113 * @return The name of the currently playing animation, or null if
119 return animation != null ? animation.getName() : null;
192 return animation != null ? animation.getLength() : 0f;
208 if (name == null)
215 if (anim == null)
220 if (animation != null && blendTime > 0f){
253 affectedBones = null;
268 if(affectedBones == null) {
288 while (bone.getParent() != null) {
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
ACallCommand.java 55 if(this._position_ != null)
57 this._position_.parent(null);
60 if(node != null)
62 if(node.parent() != null)
84 if(e.parent() != null)
104 if(e.parent() != null)
128 this._position_ = null;
159 if(newChild != null)
163 oldChild.parent(null);
168 oldChild.parent(null);
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowCursorAdapter.java 50 // if the cursor is null OR there are no views to dispense return null
51 if (this.mCursor == null || views.size() == 0 ) {
52 return null;
55 if (convertView != null) {
144 boolean cursorPresent = c != null;
172 if (mDataValid && mCursor != null) {
184 if (mDataValid && mCursor != null) {
188 return null;
197 if (mDataValid && mCursor != null) {
    [all...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
ContentResolverTest.java 92 contentResolver.update(EXTERNAL_CONTENT_URI, contentValues, null, null);
104 assertThat(contentResolver.delete(uri21, null, null), equalTo(1));
108 assertThat(contentResolver.delete(uri22, null, null), equalTo(1));
132 assertNull(shadowContentResolver.query(null, null, null, null, null))
    [all...]
  /external/smack/src/org/jivesoftware/smack/packet/
Presence.java 62 private String status = null;
64 private Mode mode = null;
135 if(type == null) {
136 throw new NullPointerException("Type cannot be null");
142 * Returns the status message of the presence update, or <tt>null</tt> if there
186 * Returns the mode of the presence update, or <tt>null</tt> if the mode is not set.
187 * A null presence mode value is interpreted to be the same thing as
197 * Sets the mode of the presence update. A null presence mode value is interpreted
207 * Returns the xml:lang of this Presence, or null if one has not been set.
209 * @return the xml:lang of this Presence, or null if one has not been set
    [all...]
  /frameworks/base/core/java/android/database/
MergeCursor.java 48 if (mCursors[i] == null) continue;
60 if (mCursors[i] != null) {
71 mCursor = null;
75 if (mCursors[i] == null) {
88 if (mCursor != null) {
151 if (mCursor != null) {
163 if (mCursors[i] != null) {
174 if (mCursors[i] == null) continue;
184 if (mCursors[i] != null) {
193 if (mCursors[i] != null) {
    [all...]
  /frameworks/base/core/java/android/net/http/
HttpAuthHeader.java 119 if (header != null) {
199 * @return The realm value or null if there is none.
206 * @return The nonce value or null if there is none.
213 * @return The opaque value or null if there is none.
220 * @return The QOP ("quality-of_protection") value or null if
228 * @return The name of the algorithm used or null if there is
242 // it is a good idea to enforce non-null realms!
243 if (mRealm != null) {
250 (mQop == null || mQop.equals("auth"));
267 if (header != null) {
    [all...]
  /frameworks/base/core/java/android/os/
WorkSource.java 44 * If <var>orig</var> is null, an empty WorkSource is created.
47 if (orig == null) {
52 if (orig.mUids != null) {
54 mNames = orig.mNames != null ? orig.mNames.clone() : null;
56 mUids = null;
57 mNames = null;
65 mNames = null;
70 if (name == null) {
71 throw new NullPointerException("Name can't be null");
    [all...]
  /frameworks/base/core/java/android/view/
DragEvent.java 141 private static DragEvent gRecyclerTop = null;
267 return DragEvent.obtain(0, 0f, 0f, null, null, null, false);
275 if (gRecyclerTop == null) {
284 ev.mRecycledLocation = null;
286 ev.mNext = null;
410 if (mRecycledLocation != null) {
421 mClipData = null;
422 mClipDescription = null;
    [all...]
  /frameworks/base/core/tests/coretests/src/android/app/activity/
ActivityTestsBase.java 41 private RuntimeException mResultStack = null;
47 mIntermediates = null;
52 mIntermediates = null;
64 if (mIntermediates != null) {
70 if (mIntermediates != null) {
76 if (mIntermediates != null) {
82 if (mIntermediates != null) {
105 finishWithResult(Activity.RESULT_OK, null);
144 return waitForResultOrThrow(timeoutMs, null);
151 if (mResultStack != null) {
    [all...]
  /frameworks/base/services/java/com/android/server/am/
AppNotRespondingDialog.java 51 CharSequence name1 = activity != null
53 : null;
54 CharSequence name2 = null;
56 (name2=context.getPackageManager().getApplicationLabel(app.info)) != null) {
57 if (name1 != null) {
65 if (name1 != null) {
74 setMessage(name2 != null
85 if (app.errorReportReceiver != null) {
107 Intent appErrorIntent = null;
121 System.currentTimeMillis(), null);
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/pm/
PackageManagerSettingsTests.java 142 assertEquals(true, settings.readLPw(null, null, 0, false));
160 assertEquals(true, settings.readLPw(null, null, 0, false));
164 assertEquals(true, settings.readLPw(null, null, 0, false));
175 assertEquals(true, settings.readLPw(null, null, 0, false));
179 ps.setEnabled(COMPONENT_ENABLED_STATE_DISABLED, 0, null);
180 ps.setEnabled(COMPONENT_ENABLED_STATE_ENABLED, 1, null);
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
ForkJoinPool.java 157 * we null out taken slots as soon as we can, to maintain as small
163 * non-null to null. Because we rely on CASes of references, we
252 * tolerate null slots. Worker queues are at odd indices. Shared
269 * both index-check and null-check the IDs. All such accesses
273 * also check that it is non-null (even if previously
274 * non-null). This allows nulling during termination, which is
482 * several unnecessary-looking hoisted null checks) that help
505 if (security != null)
522 * @throws NullPointerException if the pool is null
    [all...]

Completed in 2663 milliseconds

<<81828384858687888990>>