OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:needsInput
(Results
1 - 25
of
39
) sorted by null
1
2
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
ViewMediatorCallback.java
44
* @param
needsInput
46
void setNeedsInput(boolean
needsInput
);
KeyguardSecurityView.java
87
boolean
needsInput
();
KeyguardHostView.java
246
public void onSecurityModeChanged(SecurityMode securityMode, boolean
needsInput
) {
248
mViewMediatorCallback.setNeedsInput(
needsInput
);
427
mViewMediatorCallback.setNeedsInput(mSecurityContainer.
needsInput
());
KeyguardSecurityContainer.java
56
public void onSecurityModeChanged(SecurityMode securityMode, boolean
needsInput
);
397
securityMode != SecurityMode.None && newView.
needsInput
());
500
public boolean
needsInput
() {
501
return mSecurityViewFlipper.
needsInput
();
KeyguardAbsKeyInputView.java
224
public boolean
needsInput
() {
KeyguardSecurityViewFlipper.java
122
public boolean
needsInput
() {
124
return (ksv != null) ? ksv.
needsInput
() : false;
KeyguardPasswordView.java
97
public boolean
needsInput
() {
KeyguardPatternView.java
323
public boolean
needsInput
() {
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/zip/
DeflaterTest.java
209
//
needsInput
should never return true after finish() is called
211
assertFalse("
needsInput
() should return false after finish() is called", defl
212
.
needsInput
());
345
* java.util.zip.Deflater#
needsInput
()
350
"
needsInput
give the wrong boolean value as a result of no input buffer",
351
defl.
needsInput
());
355
"
needsInput
give wrong boolean value as a result of a full input buffer",
356
defl.
needsInput
());
358
while (!defl.
needsInput
()) {
364
"
needsInput
give wrong boolean value as a result of an empty input buffer"
[
all
...]
InflaterTest.java
72
if (inflate.
needsInput
()) {
140
while (!(deflate.
needsInput
())) {
151
if (inflate.
needsInput
()) {
170
if (inflate2.
needsInput
()) {
197
while (!(deflate.
needsInput
())) {
209
if (inflate.
needsInput
()) {
233
if (inflate.
needsInput
()) {
262
if (inflate.
needsInput
()) {
283
while (!(defEmpty.
needsInput
())) {
299
if (infEmpty.
needsInput
()) {
[
all
...]
DeflaterOutputStreamTest.java
72
while (!(deflate.
needsInput
())) {
/libcore/ojluni/src/main/java/java/util/zip/
InflaterOutputStream.java
150
while (!inf.finished() && !inf.
needsInput
()) {
238
if (inf.
needsInput
()) {
DeflaterInputStream.java
189
if (def.
needsInput
()) {
DeflaterOutputStream.java
211
while (!def.
needsInput
()) {
Inflater.java
116
*
needsInput
() returns true indicating that more input data is
121
* @see Inflater#
needsInput
139
*
needsInput
() returns true indicating that more input data is
142
* @see Inflater#
needsInput
204
public boolean
needsInput
() {
236
*
needsInput
() or needsDictionary() should be called in order to
245
* @see Inflater#
needsInput
270
*
needsInput
() or needsDictionary() should be called in order to
277
* @see Inflater#
needsInput
InflaterInputStream.java
157
if (inf.
needsInput
()) {
Deflater.java
193
*
needsInput
() returns true indicating that more input data is required.
197
* @see Deflater#
needsInput
215
*
needsInput
() returns true indicating that more input data is required.
217
* @see Deflater#
needsInput
308
public boolean
needsInput
() {
337
* of 0 indicates that {@link #
needsInput
()
needsInput
} should be called
358
* of 0 indicates that {@link #
needsInput
()
needsInput
} should be called
384
* of 0 in this flush mode indicates that {@link #
needsInput
()} shoul
[
all
...]
/libcore/luni/src/test/java/libcore/java/util/zip/
InflaterTest.java
65
if (inflater.
needsInput
()) {
142
assertEquals(true, inflater.
needsInput
());
OldAndroidDeflateTest.java
139
if (deflater.
needsInput
() && inCount != 0) {
178
if (inflater.
needsInput
() && inCount != 0) {
DeflaterTest.java
62
assertTrue(inflater.
needsInput
());
/external/okhttp/okio/okio/src/main/java/okio/
InflaterSource.java
95
if (!inflater.
needsInput
()) return false;
DeflaterSink.java
102
} else if (deflater.
needsInput
()) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
StatusBarKeyguardViewManager.java
237
public void setNeedsInput(boolean
needsInput
) {
238
mStatusBarWindowManager.setKeyguardNeedsInput(
needsInput
);
StatusBarWindowManager.java
265
public void setKeyguardNeedsInput(boolean
needsInput
) {
266
mCurrentState.keyguardNeedsInput =
needsInput
;
/external/okhttp/okio/okio/src/test/java/okio/
DeflaterSinkTest.java
140
while (!inflater.
needsInput
() || deflated.size() > 0 || deflatedIn.available() > 0) {
Completed in 1181 milliseconds
1
2