HomeSort by relevance Sort by last modified time
    Searched refs:next (Results 551 - 575 of 4218) sorted by null

<<21222324252627282930>>

  /external/webkit/Source/WebCore/rendering/style/
ContentData.h 109 ContentData* next() const { return m_next.get(); } function in struct:WebCore::ContentData
110 void setNext(PassOwnPtr<ContentData> next) { m_next = next; }
  /frameworks/base/services/java/com/android/server/am/
LaunchWarningWindow.java 30 public LaunchWarningWindow(Context context, ActivityRecord cur, ActivityRecord next) {
46 icon.setImageDrawable(next.info.applicationInfo.loadIcon(context.getPackageManager()));
49 next.info.applicationInfo.loadLabel(context.getPackageManager()).toString()));
  /libcore/luni/src/main/java/java/util/
LinkedHashMap.java 154 LinkedEntry(K key, V value, int hash, HashMapEntry<K, V> next,
156 super(key, value, hash, next);
178 * The alternative of passing the "next" link in to this method and
181 * as the newly created entry, the "next" link would become invalid, and
220 K key, V value, int hash, HashMapEntry<K, V> next) {
224 = new LinkedEntry<K,V>(key, value, hash, next, header, oldTail);
257 e != null; e = e.next) {
340 LinkedEntry<K, V> next = header.nxt; field in class:LinkedHashMap.LinkedHashIterator
345 return next != header;
351 LinkedEntry<K, V> e = next;
370 public final K next() { return nextEntry().key; } method in class:LinkedHashMap.KeyIterator
374 public final V next() { return nextEntry().value; } method in class:LinkedHashMap.ValueIterator
379 public final Map.Entry<K, V> next() { return nextEntry(); } method in class:LinkedHashMap.EntryIterator
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/photoeditor/
ActionBar.java 72 int next = switcher.getNextView().getId(); local
73 if ((showShare && (next == R.id.share_button))
74 || (!showShare && (next == R.id.save_button))) {
  /bionic/libc/kernel/arch-sh/asm/
mmu.h 52 struct pmb_entry *next; member in struct:pmb_entry
  /bionic/libc/stdio/
flockfile.c 55 struct FileLock* next; member in struct:FileLock
110 pnode = &node->next;
133 lock->next = NULL;
204 *lookup = lock->next;
  /cts/tools/tradefed-host/tests/src/com/android/cts/tradefed/result/
TestPackageResultTest.java 43 assertEquals(includedTest, tests.iterator().next());
  /dalvik/vm/mterp/x86-atom/
OP_AGET.S 48 FFETCH_ADV 2, %eax # %eax<- next instruction hi; fetch, advance
53 FGETOP_JMP 2, %eax # jump to next instruction; getop, jmp
OP_IPUT_OBJECT_QUICK.S 34 FFETCH_ADV 2, %edx # %edx<- next instruction hi; fetch, advance
44 FGETOP_JMP 2, %edx # jump to next instruction; getop, jmp
binopDivRemLong2Addr.S 53 FFETCH_ADV 1, %ecx # %ecx<- next instruction hi; fetch, advance
54 FGETOP_JMP 1, %ecx # jump to next instruction; getop, jmp
  /external/antlr/src/org/antlr/runtime/tree/
CommonTreeNodeStream.java 84 Object t = it.next();
88 if ( level==0 && hasNilRoot ) return it.next(); // don't give last UP; get EOF
93 t = it.next(); // t is now DOWN, so get first real node next
95 t = it.next();
  /external/apache-harmony/support/src/test/java/tests/support/
Support_UnmodifiableMapTest.java 65 Map.Entry<?, ?> me = (Map.Entry<?, ?>) entrySetIterator.next();
134 keySet.contains(it.next()));
148 objArray[counter] == it.next());
157 objArray[counter] == it.next());
  /external/apache-http/src/org/apache/http/impl/conn/
AbstractPoolEntry.java 229 * @param next the proxy to which the tunnel was established.
239 public void tunnelProxy(HttpHost next, boolean secure, HttpParams params)
242 if (next == null) {
244 ("Next proxy must not be null.");
258 this.connection.update(null, next, secure, params);
259 this.tracker.tunnelProxy(next, secure);
  /external/chromium/third_party/libevent/
evrpc-internal.h 37 TAILQ_ENTRY(evrpc_hook) (next);
  /external/dropbear/
auth.h 105 struct SignKeyList *next; member in struct:SignKeyList
svr-runopts.c 99 char ** next = 0; local
142 if (next) {
143 *next = argv[i];
144 if (*next == NULL) {
147 next = 0x00;
154 next = &svr_opts.bannerfile;
158 next = &svr_opts.dsskeyfile;
163 next = &svr_opts.rsakeyfile;
196 next = &svr_opts.pidfile;
  /external/e2fsprogs/lib/et/
init_et.c 49 new_et->etl.next = _et_dynamic_list;
  /external/elfutils/libasm/
asm_align.c 123 asmscn->content->next = asmscn->content;
139 newp->next = asmscn->content->next;
140 asmscn->content = asmscn->content->next = newp;
  /external/icu4c/i18n/unicode/
fpositer.h 97 UBool next(FieldPosition& fp);
  /external/icu4c/layout/
SubstitutionLookups.cpp 21 of the previous sequenceIndex in the loop and doing next()
45 tempIterator.next(sequenceIndex);
  /external/iproute2/include/
xt-internal.h 37 struct xtables_rule_match *next; member in struct:xtables_rule_match
  /external/iproute2/misc/
lnstat.h 25 struct lnstat_file *next; member in struct:lnstat_file
  /external/ipsec-tools/src/racoon/
isakmp_unity.h 66 struct unity_netentry *next; member in struct:unity_netentry
  /external/javassist/src/main/javassist/convert/
TransformCall.java 34 public TransformCall(Transformer next, CtMethod origMethod,
37 this(next, origMethod.getName(), substMethod);
41 public TransformCall(Transformer next, String oldMethodName,
44 super(next);
  /external/mesa3d/src/glsl/
ir_function.cpp 11 * The above copyright notice and this permission notice (including the next
97 ; node_a = node_a->next, node_b = node_b->next) {
198 ; node_a = node_a->next, node_b = node_b->next) {

Completed in 1492 milliseconds

<<21222324252627282930>>