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

1 2

  /frameworks/base/policy/src/com/android/internal/policy/impl/keyguard_obsolete/
KeyguardWindowController.java 28 void setNeedsInput(boolean needsInput);
KeyguardScreen.java 29 boolean needsInput();
KeyguardViewManager.java 189 public void setNeedsInput(boolean needsInput) {
190 mNeedsInput = needsInput;
192 if (needsInput) {
AccountUnlockScreen.java 136 public boolean needsInput() {
  /frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
KeyguardSecurityView.java 60 boolean needsInput();
KeyguardViewManager.java 234 mViewMediatorCallback.setNeedsInput(kpv.needsInput());
284 public void setNeedsInput(boolean needsInput) {
285 mNeedsInput = needsInput;
287 if (needsInput) {
KeyguardPasswordView.java 72 public boolean needsInput() {
KeyguardSecurityViewFlipper.java 119 public boolean needsInput() {
121 return (ksv != null) ? ksv.needsInput() : false;
KeyguardAbsKeyInputView.java 208 public boolean needsInput() {
KeyguardAccountView.java 134 public boolean needsInput() {
KeyguardFaceUnlockView.java 114 public boolean needsInput() {
KeyguardSelectorView.java 256 public boolean needsInput() {
  /external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/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());
349 * @tests java.util.zip.Deflater#needsInput()
354 "needsInput give the wrong boolean value as a result of no input buffer",
355 defl.needsInput());
359 "needsInput give wrong boolean value as a result of a full input buffer",
360 defl.needsInput());
362 while (!defl.needsInput()) {
368 "needsInput give wrong boolean value as a result of an empty input buffer"
    [all...]
InflaterTest.java 73 if (inflate.needsInput()) {
141 while (!(deflate.needsInput())) {
152 if (inflate.needsInput()) {
171 if (inflate2.needsInput()) {
198 while (!(deflate.needsInput())) {
210 if (inflate.needsInput()) {
234 if (inflate.needsInput()) {
263 if (inflate.needsInput()) {
284 while (!(defEmpty.needsInput())) {
300 if (infEmpty.needsInput()) {
    [all...]
DeflaterOutputStreamTest.java 72 while (!(deflate.needsInput())) {
  /libcore/luni/src/main/java/java/util/zip/
Inflater.java 122 * stream. If deflated bytes remain and {@link #needsInput} returns {@code
222 if (needsInput()) {
251 public synchronized boolean needsInput() {
292 * called if {@link #needsInput} returns {@code true}.
300 * called if {@link #needsInput} returns {@code true}.
DeflaterInputStream.java 127 if (def.needsInput()) {
DeflaterOutputStream.java 198 if (!def.needsInput()) {
InflaterInputStream.java 153 if (inf.needsInput()) {
Deflater.java 341 public synchronized boolean needsInput() {
ZipInputStream.java 330 if (inf.needsInput()) {
  /libcore/luni/src/test/java/libcore/java/util/zip/
OldAndroidDeflateTest.java 139 if (deflater.needsInput() && inCount != 0) {
178 if (inflater.needsInput() && inCount != 0) {
DeflaterTest.java 62 assertTrue(inflater.needsInput());
InflaterTest.java 65 if (inflater.needsInput()) {
  /frameworks/base/policy/tests/src/com/android/internal/policy/impl/keyguard_obsolete/
LockPatternKeyguardViewTest.java 100 public boolean needsInput() {
212 public void setNeedsInput(boolean needsInput) {

Completed in 365 milliseconds

1 2