HomeSort by relevance Sort by last modified time
    Searched defs:needsInput (Results 1 - 25 of 37) sorted by null

1 2

  /frameworks/base/packages/SystemUI/src/com/android/keyguard/
KeyguardSecurityView.java 87 boolean needsInput();
KeyguardAbsKeyInputView.java 259 public boolean needsInput() {
KeyguardPasswordView.java 97 public boolean needsInput() {
KeyguardSecurityViewFlipper.java 122 public boolean needsInput() {
124 return (ksv != null) ? ksv.needsInput() : false;
KeyguardHostView.java 249 public void onSecurityModeChanged(SecurityMode securityMode, boolean needsInput) {
251 mViewMediatorCallback.setNeedsInput(needsInput);
434 mViewMediatorCallback.setNeedsInput(mSecurityContainer.needsInput());
KeyguardSecurityContainer.java 61 public void onSecurityModeChanged(SecurityMode securityMode, boolean needsInput);
403 securityMode != SecurityMode.None && newView.needsInput());
511 public boolean needsInput() {
512 return mSecurityViewFlipper.needsInput();
KeyguardPatternView.java 358 public boolean needsInput() {
  /libcore/ojluni/src/main/java/java/util/zip/
Deflater.java 203 * needsInput() returns true indicating that more input data is required.
207 * @see Deflater#needsInput
225 * needsInput() returns true indicating that more input data is required.
227 * @see Deflater#needsInput
330 public boolean needsInput() {
361 * of 0 indicates that {@link #needsInput() needsInput} should be called
382 * of 0 indicates that {@link #needsInput() needsInput} should be called
408 * of 0 in this flush mode indicates that {@link #needsInput()} shoul
    [all...]
Inflater.java 126 * needsInput() returns true indicating that more input data is
131 * @see Inflater#needsInput
149 * needsInput() returns true indicating that more input data is
152 * @see Inflater#needsInput
214 public boolean needsInput() {
246 * needsInput() or needsDictionary() should be called in order to
255 * @see Inflater#needsInput
280 * needsInput() or needsDictionary() should be called in order to
287 * @see Inflater#needsInput
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/zip/
DeflaterTest.java 213 // needsInput should never return true after finish() is called
215 assertFalse("needsInput() should return false after finish() is called", defl
216 .needsInput());
350 * java.util.zip.Deflater#needsInput()
355 "needsInput give the wrong boolean value as a result of no input buffer",
356 defl.needsInput());
360 "needsInput give wrong boolean value as a result of a full input buffer",
361 defl.needsInput());
363 while (!defl.needsInput()) {
369 "needsInput give wrong boolean value as a result of an empty input buffer"
    [all...]
InflaterTest.java 79 if (inflate.needsInput()) {
150 while (!(deflate.needsInput())) {
161 if (inflate.needsInput()) {
182 if (inflate2.needsInput()) {
210 while (!(deflate.needsInput())) {
222 if (inflate.needsInput()) {
246 if (inflate.needsInput()) {
278 if (inflate.needsInput()) {
300 while (!(defEmpty.needsInput())) {
317 if (infEmpty.needsInput()) {
    [all...]
  /prebuilts/misc/common/robolectric/android-all/
android-all-4.1.2_r1-robolectric-r1.jar 
android-all-4.2.2_r1.2-robolectric-r1.jar 
android-all-4.3_r2-robolectric-r1.jar 
android-all-4.4_r1-robolectric-r2.jar 
android-all-5.0.2_r3-robolectric-r0.jar 
android-all-5.1.1_r9-robolectric-r2.jar 
android-all-6.0.1_r3-robolectric-r1.jar 
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/16/
android.jar 
  /prebuilts/sdk/20/
android.jar 
  /prebuilts/sdk/22/
android.jar 
  /prebuilts/sdk/23/
android.jar 

Completed in 266 milliseconds

1 2