OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:needsinput
(Results
1 - 25
of
26
) sorted by null
1
2
/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
())) {
/frameworks/base/policy/src/com/android/internal/policy/impl/
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
() {
LockScreen.java
431
public boolean
needsInput
() {
PasswordUnlockScreen.java
248
public boolean
needsInput
() {
PatternUnlockScreen.java
253
public boolean
needsInput
() {
SimPukUnlockScreen.java
118
public boolean
needsInput
() {
SimUnlockScreen.java
109
public boolean
needsInput
() {
LockPatternKeyguardView.java
[
all
...]
/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
()) {
ZipInputStream.java
325
if (inf.
needsInput
()) {
Deflater.java
341
public synchronized boolean
needsInput
() {
/libcore/luni/src/test/java/libcore/java/util/zip/
DeflaterTest.java
62
assertTrue(inflater.
needsInput
());
OldAndroidDeflateTest.java
139
if (deflater.
needsInput
() && inCount != 0) {
178
if (inflater.
needsInput
() && inCount != 0) {
InflaterTest.java
65
if (inflater.
needsInput
()) {
/frameworks/base/policy/tests/src/com/android/internal/policy/impl/
LockPatternKeyguardViewTest.java
94
public boolean
needsInput
() {
204
public void setNeedsInput(boolean
needsInput
) {
/prebuilt/sdk/13/
android.jar
/prebuilt/sdk/7/
android.jar
Completed in 313 milliseconds
1
2