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

1 2

  /frameworks/base/policy/src/com/android/internal/policy/impl/
KeyguardWindowController.java 28 void setNeedsInput(boolean needsInput);
KeyguardScreen.java 29 boolean needsInput();
KeyguardViewManager.java 191 public void setNeedsInput(boolean needsInput) {
192 mNeedsInput = needsInput;
194 if (needsInput) {
AccountUnlockScreen.java 136 public boolean needsInput() {
PasswordUnlockScreen.java 261 public boolean needsInput() {
PatternUnlockScreen.java 253 public boolean needsInput() {
SimPukUnlockScreen.java 118 public boolean needsInput() {
SimUnlockScreen.java 109 public boolean needsInput() {
LockScreen.java 578 public boolean needsInput() {
LockPatternKeyguardView.java     [all...]
  /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 125 if (def.needsInput()) {
DeflaterOutputStream.java 196 if (!def.needsInput()) {
InflaterInputStream.java 151 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/
LockPatternKeyguardViewTest.java 95 public boolean needsInput() {
207 public void setNeedsInput(boolean needsInput) {
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 

Completed in 272 milliseconds

1 2