Searched refs:next (Results 1 - 25 of 301) sorted by last modified time

1234567891011>>

/frameworks/support/v4/java/android/support/v4/app/
H A DBackStackRecord.java45 op = op.next;
71 op = op.next;
188 Op next; field in class:BackStackRecord.Op
327 op = op.next;
368 mTail.next = op;
569 op = op.next;
679 op = op.next;
/frameworks/support/v4/java/android/support/v4/util/
H A DLruCache.java159 Map.Entry<K, V> toEvict = map.entrySet().iterator().next();
/frameworks/support/volley/src/com/android/volley/toolbox/
H A DDiskBasedCache.java255 Map.Entry<String, CacheHeader> entry = iterator.next();
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
H A DExportTestProvider.java61 public Entity next() { method in class:ExportTestProvider.MockEntityIterator
62 return mIterator.next();
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardComposer.java536 Entity entity = entityIterator.next();
H A DVCardEntry.java1860 .iterator().next(), mVCardType);
2010 .iterator().next(), mVCardType);
H A DVCardParserImpl_V21.java52 * Needed since "next line" may be null due to end of line.
578 ((charsetCollection != null) ? charsetCollection.iterator().next() : null);
659 // Thus we roughly look over the next line and confirm it is at least not
665 getLine(); // Drop the next line.
816 // We will consider the next line to be a part of a multi-line value if it does not
845 Log.w(LOG_TAG, "Found a next property during parsing a BASE64 string, " +
846 "which must not contain semi-colon or colon. Treat the line as next "
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DIntRangeManager.java225 // of the next range to join is always startIndex+1.
248 // of the next range to join is always startIndex+1.
272 // of the next range to join is always startIndex+1.
327 // of the next range to join is always startIndex+1 (joinIndex).
509 IntRange range = iterator.next();
514 IntRange nextNode = iterator.next();
H A DSmsUsageMonitor.java623 Map.Entry<String, ArrayList<Long>> entry = iter.next();
H A DATResponseParser.java27 private int next = 0; field in class:ATResponseParser
92 return next < line.length();
100 if (next == 0) {
104 if (next >= len) {
111 char c = line.charAt(next++);
117 if (next >= len) {
120 c = line.charAt(next++);
121 tokStart = next - 1;
122 while (c != '"' && next < len) {
123 c = line.charAt(next
[all...]
H A DAdnRecordCache.java204 if (oldAdn.isEqual(it.next())) {
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DCommandParamsFactory.java243 * Search for the next COMPREHENSION-TLV object with the given tag from a
244 * list iterated by {@code iter}. {@code iter} points to the object next to
258 ComprehensionTlv ctlv = iter.next();
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DGsmSMSDispatcher.java469 SmsCbConcatInfo info = iter.next();
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
H A DSipCallBase.java49 Connection c = it.next();
/frameworks/opt/mms/src/java/com/google/android/mms/pdu/
H A DPduComposer.java1027 public LengthRecordNode next = null; field in class:PduComposer.LengthRecordNode
1076 temp.next = stack;
1098 stack = stack.next;
/frameworks/ex/chips/src/com/android/ex/chips/
H A DRecipientEditTextView.java1092 View next = focusSearch(View.FOCUS_DOWN);
1093 if (next != null) {
1094 next.requestFocus();
1734 start = end; // move to the next token and get its end.
2318 // separating it from the next token.
/frameworks/ex/common/java/com/android/common/
H A DNetworkConnectivityListener.java100 Handler target = it.next();
/frameworks/ex/common/java/com/android/ex/editstyledtext/
H A DEditStyledText.java1028 // to the next action.
1912 int next;
1913 for (int i = 0; i < text.length(); i = next) {
1914 next = text.nextSpanTransition(i, len, ImageSpan.class);
1915 ImageSpan[] images = text.getSpans(i, next, ImageSpan.class);
2888 Log.d(TAG, "--- do the next action: " + mode + "," + mManager.getSelectState());
/frameworks/ml/bordeaux/service/src/android/bordeaux/services/
H A DFeatureAssembly.java61 String f = (String) itr.next();
H A DPredictor.java164 res = res & mFeatureAssembly.registerFeature((String) itr.next());
/frameworks/native/include/private/ui/
H A DRegionHelper.h78 int inside = spanner.next(current.top, current.bottom);
82 int inside = spannerInner.next(current.left, current.right);
116 inline int next(TYPE& head, TYPE& tail, function in class:android::region_operator::SpannerBase
182 inline int next(TYPE& top, TYPE& bottom) function in class:android::region_operator::Spanner
186 int inside = SpannerBase::next(top, bottom, more_lhs, more_rhs);
199 // got to next span
263 inline int next(TYPE& left, TYPE& right) function in class:android::region_operator::SpannerInner
267 int inside = SpannerBase::next(left, right, more_lhs, more_rhs);
/frameworks/native/include/utils/
H A DBasicHashtable.h67 ssize_t next(ssize_t index) const;
130 // Returns the increment to add to a bucket index to seek to the next bucket
137 // Returns the index of the next bucket that is in the collision chain
254 /* Returns the index of the next entry in the hashtable given the index of a previous entry.
257 * If the given index is not -1, then returns the index of the next entry in the hashtable,
263 inline ssize_t next(ssize_t index) const { function in class:android::BasicHashtable
264 return BasicHashtableImpl::next(index);
269 * otherwise returns the index of the next matching entry.
301 * to continue iterating over the hashtable using next() or find().
/frameworks/native/libs/binder/
H A DMemoryDealer.cpp64 newNode->next = node->next;
65 if (node->next == 0) mLast = newNode;
66 else node->next->prev = newNode;
67 node->next = newNode;
72 newNode->next = node;
74 else node->prev->next = newNode;
81 newNode->prev = newNode->next = 0;
84 newNode->next = mFirst;
95 newNode->next
148 mutable chunk_t* next; member in struct:android::SimpleBestFitAllocator::chunk_t
[all...]
/frameworks/native/libs/ui/
H A DRegion.cpp492 it.next();
512 it.next();
/frameworks/native/libs/utils/
H A DBasicHashtable.cpp97 ssize_t BasicHashtableImpl::next(ssize_t index) const { function in class:android::BasicHashtableImpl

Completed in 5119 milliseconds

1234567891011>>