Searched refs:hasNext (Results 1 - 25 of 142) sorted by relevance

123456

/frameworks/base/core/java/android/content/
H A DCursorEntityIterator.java58 public final boolean hasNext() { method in class:CursorEntityIterator
60 throw new IllegalStateException("calling hasNext() when the iterator is closed");
73 * @see EntityIterator#hasNext()
79 if (!hasNext()) {
80 throw new IllegalStateException("you may only call next() if hasNext() is true");
/frameworks/av/include/drm/
H A DDrmMetadata.h46 bool hasNext();
68 bool hasNext();
81 while (keyIt.hasNext()) {
H A DDrmConstraints.h82 bool hasNext();
105 bool hasNext();
118 while (keyIt.hasNext()) {
H A DDrmInfo.h67 bool hasNext();
91 bool hasNext();
H A DDrmInfoRequest.h81 bool hasNext();
105 bool hasNext();
H A DDrmSupportInfo.h48 bool hasNext();
71 bool hasNext();
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/java/
H A DLinkedHashMap_Delegate.java34 return iterator.hasNext() ? iterator.next() : null;
/frameworks/base/core/java/android/webkit/
H A DUrlInterceptRegistry.java130 while (iter.hasNext()) {
158 while (iter.hasNext()) {
/frameworks/base/core/java/android/database/
H A DCursorJoiner.java120 public boolean hasNext() { method in class:CursorJoiner
146 * The caller must check that hasNext() returns true before calling this.
157 if (!hasNext()) {
158 throw new IllegalStateException("you must only call next() when hasNext() is true");
161 assert hasNext();
/frameworks/ml/bordeaux/service/src/android/bordeaux/services/
H A DFeatureAssembly.java75 while(itr.hasNext()) {
88 while(itr.hasNext()) {
106 while(itr.hasNext()) {
/frameworks/base/core/java/android/util/
H A DFastImmutableArraySet.java64 public boolean hasNext() { method in class:FastImmutableArraySet.FastIterator
H A DLocalLog.java55 while (itr.hasNext()) {
H A DMapCollections.java49 public boolean hasNext() { method in class:MapCollections.ArrayIterator
84 public boolean hasNext() { method in class:MapCollections.MapIterator
201 while (it.hasNext()) {
380 while (it.hasNext()) {
458 while (it.hasNext()) {
469 while (it.hasNext()) {
478 while (it.hasNext()) {
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
H A DSipCallBase.java45 for (Iterator<Connection> it = mConnections.iterator(); it.hasNext(); ) {
/frameworks/av/drm/common/
H A DDrmInfo.cpp74 bool DrmInfo::KeyIterator::hasNext() { function in class:DrmInfo::KeyIterator
102 bool DrmInfo::Iterator::hasNext() { function in class:DrmInfo::Iterator
H A DDrmInfoRequest.cpp68 bool DrmInfoRequest::KeyIterator::hasNext() { function in class:DrmInfoRequest::KeyIterator
97 bool DrmInfoRequest::Iterator::hasNext() { function in class:DrmInfoRequest::Iterator
H A DDrmConstraints.cpp61 bool DrmConstraints::KeyIterator::hasNext() { function in class:DrmConstraints::KeyIterator
104 bool DrmConstraints::Iterator::hasNext() { function in class:DrmConstraints::Iterator
H A DDrmMetadata.cpp64 bool DrmMetadata::KeyIterator::hasNext() { function in class:DrmMetadata::KeyIterator
109 bool DrmMetadata::Iterator::hasNext() { function in class:DrmMetadata::Iterator
H A DDrmSupportInfo.cpp127 bool DrmSupportInfo::FileSuffixIterator::hasNext() { function in class:DrmSupportInfo::FileSuffixIterator
151 bool DrmSupportInfo::MimeTypeIterator::hasNext() { function in class:DrmSupportInfo::MimeTypeIterator
/frameworks/base/core/tests/coretests/src/android/net/
H A DNetworkScorerAppManagerTest.java81 assertTrue(result.hasNext());
86 assertTrue(result.hasNext());
91 assertFalse(result.hasNext());
/frameworks/base/core/java/android/bluetooth/le/
H A DBluetoothLeUtils.java67 while (it.hasNext()) {
71 if (it.hasNext()) {
/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
H A DBaseMenuWrapper.java102 while (iterator.hasNext()) {
118 while (iterator.hasNext()) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DViewPool.java62 while (iter.hasNext()) {
/frameworks/support/v4/java/android/support/v4/util/
H A DMapCollections.java47 public boolean hasNext() { method in class:MapCollections.ArrayIterator
82 public boolean hasNext() { method in class:MapCollections.MapIterator
199 while (it.hasNext()) {
378 while (it.hasNext()) {
456 while (it.hasNext()) {
467 while (it.hasNext()) {
476 while (it.hasNext()) {
/frameworks/base/services/core/java/com/android/server/am/
H A DUriPermissionOwner.java77 while (it.hasNext()) {
92 while (it.hasNext()) {

Completed in 1930 milliseconds

123456