HomeSort by relevance Sort by last modified time
    Searched full:next (Results 776 - 800 of 30278) sorted by null

<<31323334353637383940>>

  /external/llvm/test/MC/PowerPC/
ppc64-tls-relocs-01.s 20 # CHECK-NEXT: 0x{{[0-9,A-F]+}} R_PPC64_TPREL16_HA t
21 # CHECK-NEXT: 0x{{[0-9,A-F]+}} R_PPC64_TPREL16_LO t
22 # CHECK-NEXT: }
  /external/llvm/test/Transforms/IPConstantProp/
user-with-multiple-uses.ll 8 ; CHECK-NEXT: entry:
9 ; CHECK-NEXT: %call2 = tail call i32 @wwrite(i64 0) [[NUW:#[0-9]+]]
10 ; CHECK-NEXT: ret i32 123
  /external/llvm/test/Transforms/IndVarSimplify/
udiv-invariant-but-traps.ll 13 %i = phi i64 [ %i.next, %bb8 ], [ 0, %bb1 ]
14 %i.next = add i64 %i, 1
16 %c = icmp eq i64 %i.next, 6
  /external/llvm/test/Transforms/InstCombine/
fdiv.ll 8 ; CHECK-NEXT: fmul float %x, 0x47D0000000000000
16 ; CHECK-NEXT: fdiv float %x, 0x47E0000000000000
24 ; CHECK-NEXT: fdiv float %x, 0x36A0000000000000
cast.ll 59 ; CHECK-NEXT: ret i32
75 ; CHECK-NEXT: ret i64
181 ; CHECK-NEXT: ret i32
372 ; CHECK-NEXT: %A = zext i8 %on_off to i64
373 ; CHECK-NEXT: %B = add i64 %A, -1
374 ; CHECK-NEXT: ret i64 %B
383 ; CHECK-NEXT: %A = zext i8 %T to i64
384 ; CHECK-NEXT: %B = or i64 %A, 1234
385 ; CHECK-NEXT: ret i64 %B
395 ; CHECK-NEXT: %B = sext i8 %A to i6
    [all...]
  /external/llvm/test/Transforms/JumpThreading/
degenerate-phi.ll 16 %phi = phi i16 [ %add, %unreachable ], [ 0, %next ]
19 br i1 %cmp, label %unreachable, label %next
21 next:
  /external/llvm/test/Transforms/LoopSimplify/
2010-07-15-IncorrectDomFrontierUpdate.ll 9 %indvar = phi i64 [ %indvar.next, %bb1.i ], [ 0, %entry ] ; <i64> [#uses=1]
10 %indvar.next = add i64 %indvar, 1 ; <i64> [#uses=2]
11 %exitcond = icmp eq i64 %indvar.next, 576 ; <i1> [#uses=1]
  /external/llvm/test/Transforms/LoopStrengthReduce/
dead-phi.ll 8 %i = phi i32 [ 0, %entry ], [ %i.next, %loop ]
15 %i.next = add i32 %i, 1
16 %c = icmp ne i32 %i.next, %n
  /external/llvm/test/Transforms/LoopUnroll/
2007-04-16-PhiUpdate.ll 9 %indvar = phi i8 [ 0, %entry ], [ %indvar.next, %cond_next ] ; <i8> [#uses=1]
10 %indvar.next = add i8 %indvar, 1 ; <i8> [#uses=2]
11 %exitcond = icmp eq i8 %indvar.next, 7 ; <i1> [#uses=1]
  /libcore/luni/src/main/java/java/sql/
SQLInput.java 49 * Returns the next attribute in the stream in the form of a {@code String}.
51 * @return the next attribute. {@code null} if the value is SQL {@code NULL}.
59 * Returns the next attribute in the stream in the form of a {@code boolean}
62 * @return the next attribute as a {@code boolean}. {@code false} if the
70 * Returns the next attribute in the stream in the form of a {@code byte}.
72 * @return the next attribute as a {@code byte}. 0 if the value is SQL
80 * Returns the next attribute in the stream in the form of a {@code short}.
82 * @return the next attribute as a {@code short}. 0 if the value is SQL
90 * Returns the next attribute in the stream in the form of an {@code int}.
92 * @return the next attribute as an {@code int}. 0 if the value is SQ
    [all...]
  /libcore/luni/src/test/java/libcore/xml/
PullParserTest.java 31 assertEquals(XmlPullParser.START_TAG, parser.next());
41 assertEquals(XmlPullParser.START_TAG, parser.next());
51 assertEquals(XmlPullParser.START_TAG, parser.next());
55 assertEquals(XmlPullParser.TEXT, parser.next());
77 assertEquals(XmlPullParser.START_TAG, parser.next());
80 assertEquals(XmlPullParser.START_TAG, parser.next());
83 assertEquals(XmlPullParser.END_TAG, parser.next());
86 assertEquals(XmlPullParser.END_TAG, parser.next());
94 assertEquals(XmlPullParser.START_TAG, parser.next());
119 assertEquals(XmlPullParser.START_TAG, parser.next());
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir_graph.cpp 40 for (IteratorRef it = safeIteratorDFS(); !it->end(); it->next())
56 prev[0]->next[0] = next[0];
57 next[0]->prev[0] = prev[0];
59 origin->out = (next[0] == this) ? NULL : next[0];
64 prev[1]->next[1] = next[1];
65 next[1]->prev[1] = prev[1];
67 target->in = (next[1] == this) ? NULL : next[1]
234 virtual void next() { if (pos < count) ++pos; } function in class:nv50_ir::DFSIterator
280 virtual void next() { if (pos < count) ++pos; } function in class:nv50_ir::CFGIterator
418 Node *next = NULL; local
    [all...]
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_graph.cpp 40 for (IteratorRef it = safeIteratorDFS(); !it->end(); it->next())
56 prev[0]->next[0] = next[0];
57 next[0]->prev[0] = prev[0];
59 origin->out = (next[0] == this) ? NULL : next[0];
64 prev[1]->next[1] = next[1];
65 next[1]->prev[1] = prev[1];
67 target->in = (next[1] == this) ? NULL : next[1]
234 virtual void next() { if (pos < count) ++pos; } function in class:nv50_ir::DFSIterator
280 virtual void next() { if (pos < count) ++pos; } function in class:nv50_ir::CFGIterator
418 Node *next = NULL; local
    [all...]
  /external/chromium_org/chrome/browser/ui/
browser_iterator.h 20 // for (BrowserIterator iterator; !iterator.done(); iterator.Next()) {
33 // immediately moves to the next browser list upon hitting the end of the
46 // Advances |current_iterator_| to the next browser.
47 void Next();
51 // next non-empty browser list. After a call to this method: either
62 // The next HostDesktopType to iterate over when |current_iterator_| reaches
  /external/chromium_org/net/quic/test_tools/
test_task_runner.cc 41 // Find the next task to run, advance the time to the correct time
43 std::vector<PostedTask>::iterator next = FindNextTask(); local
44 DCHECK(next != tasks_.end());
46 (next->GetTimeToRun() - clock_->NowInTicks()).InMicroseconds()));
47 PostedTask task = *next;
48 tasks_.erase(next);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
NodeTraversal.h 39 Element* next(const Node*);
40 Element* next(const Node*, const Node* stayWithin);
41 Element* next(const ContainerNode*);
42 Element* next(const ContainerNode*, const Node* stayWithin);
44 // Like next, but skips children.
62 // Does a pre-order traversal of the tree to find the next node after this one.
66 Node* next(const Node*);
67 Node* next(const Node*, const Node* stayWithin);
68 Node* next(const ContainerNode*);
69 Node* next(const ContainerNode*, const Node* stayWithin)
118 inline Element* next(const ContainerNode* current) { return traverseNextElementTemplate(current); } function in namespace:WebCore::ElementTraversal
119 inline Element* next(const Node* current) { return traverseNextElementTemplate(current); } function in namespace:WebCore::ElementTraversal
129 inline Element* next(const ContainerNode* current, const Node* stayWithin) { return traverseNextElementTemplate(current, stayWithin); } function in namespace:WebCore::ElementTraversal
130 inline Element* next(const Node* current, const Node* stayWithin) { return traverseNextElementTemplate(current, stayWithin); } function in namespace:WebCore::ElementTraversal
202 inline Node* next(const Node* current) { return traverseNextTemplate(current); } function in namespace:WebCore::NodeTraversal
203 inline Node* next(const ContainerNode* current) { return traverseNextTemplate(current); } function in namespace:WebCore::NodeTraversal
216 inline Node* next(const Node* current, const Node* stayWithin) { return traverseNextTemplate(current, stayWithin); } function in namespace:WebCore::NodeTraversal
217 inline Node* next(const ContainerNode* current, const Node* stayWithin) { return traverseNextTemplate(current, stayWithin); } function in namespace:WebCore::NodeTraversal
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/
GrAllocPool.cpp 21 static Block* Create(size_t size, Block* next) {
25 block->fNext = next;
72 Block* next = block->fNext; local
74 block = next;
97 Block* next = fBlock->fNext; local
99 fBlock = next;
  /external/chromium_org/tools/perf/clear_system_cache/
clear_system_cache_main.cc 45 for (base::FilePath next = enumerator.Next(); !next.empty();
46 next = enumerator.Next()) {
47 ClearCacheForFile(next);
  /external/clang/test/CodeGenCXX/
constructor-init.cpp 78 // CHECK-NEXT: store i32 17
81 // CHECK-NEXT: call void @_ZN1AIsED1Ev
98 // CHECK-NEXT: store i8** getelementptr inbounds ([3 x i8*]* @_ZTVN10InitVTable1BE, i64 0, i64 2), i8*** [[T0]]
100 // CHECK-NEXT: [[FNP:%.*]] = getelementptr inbounds i32 ([[B]]*)** [[VTBL]], i64 0
101 // CHECK-NEXT: [[FN:%.*]] = load i32 ([[B]]*)** [[FNP]]
102 // CHECK-NEXT: [[ARG:%.*]] = call i32 [[FN]]([[B]]* [[THIS]])
103 // CHECK-NEXT: call void @_ZN10InitVTable1AC2Ei({{.*}}* {{%.*}}, i32 [[ARG]])
104 // CHECK-NEXT: [[T0:%.*]] = bitcast [[B]]* [[THIS]] to i8***
105 // CHECK-NEXT: store i8** getelementptr inbounds ([3 x i8*]* @_ZTVN10InitVTable1BE, i64 0, i64 2), i8*** [[T0]]
106 // CHECK-NEXT: ret voi
    [all...]
global-dtor-no-atexit.cpp 7 // CHECK-NEXT: call i32 @atexit(void ()* @__dtor_a)
12 // CHECK-NEXT: call i32 @atexit(void ()* @__dtor_b)
28 // CHECK-NEXT: call i32 @atexit(void ()* @__dtor__ZZ4funcvE2a1)
29 // CHECK-NEXT: call void @__cxa_guard_release(i64* @_ZGVZ4funcvE2a1)
33 // CHECK-NEXT: call i32 @atexit(void ()* @__dtor__ZZ4funcvE2a2)
34 // CHECK-NEXT: call void @__cxa_guard_release(i64* @_ZGVZ4funcvE2a2)
runtimecc.cpp 25 // CHECK-NEXT: call arm_aapcscc i32 @__cxa_atexit(void (i8*)* bitcast ([[A]]* ([[A]]*)* @_ZN5test01AD1Ev to void (i8*)*), i8* bitcast ([[A]]* @_ZN5test06globalE to i8*), i8* @__dso_handle) [[NOUNWIND:#[0-9]+]]
26 // CHECK-NEXT: ret void
38 // CHECK-NEXT: [[T1:%.*]] = bitcast i8* [[T0]] to i32*
39 // CHECK-NEXT: store i32 0, i32* [[T1]]
40 // CHECK-NEXT: call arm_aapcscc void @__cxa_throw(i8* [[T0]], i8* bitcast (i8** @_ZTIi to i8*), i8* null) [[NORETURN:#[0-9]+]]
41 // CHECK-NEXT: unreachable
  /external/clang/test/CodeGenObjC/
blocks-2.m 9 // CHECK-NEXT: ret void
23 // CHECK-NEXT: store double 1.000000e+{{0?}}01, double* [[T0]], align 8
30 // CHECK-NEXT: call void @_Block_object_dispose(i8* [[T1]], i32 8)
31 // CHECK-NEXT: ret void
34 // CHECK-NEXT: cleanup
36 // CHECK-NEXT: call void @_Block_object_dispose(i8* [[T1]], i32 8)
image-info.m 9 // CHECK-FRAGILE-NEXT: !1 = metadata !{i32 1, metadata !"Objective-C Image Info Version", i32 0}
10 // CHECK-FRAGILE-NEXT: !2 = metadata !{i32 1, metadata !"Objective-C Image Info Section", metadata !"__OBJC, __image_info,regular"}
11 // CHECK-FRAGILE-NEXT: !3 = metadata !{i32 4, metadata !"Objective-C Garbage Collection", i32 0}
15 // CHECK-NONFRAGILE-NEXT: !1 = metadata !{i32 1, metadata !"Objective-C Image Info Version", i32 0}
16 // CHECK-NONFRAGILE-NEXT: !2 = metadata !{i32 1, metadata !"Objective-C Image Info Section", metadata !"__DATA, __objc_imageinfo, regular, no_dead_strip"}
17 // CHECK-NONFRAGILE-NEXT: !3 = metadata !{i32 4, metadata !"Objective-C Garbage Collection", i32 0}
terminate.m 15 // CHECK-WITH-NEXT: ret void
18 // CHECK-WITH-NEXT: catch i8* null
19 // CHECK-WITH-NEXT: call void @objc_terminate()
24 // CHECK-WITHOUT-NEXT: ret void
27 // CHECK-WITHOUT-NEXT: catch i8* null
28 // CHECK-WITHOUT-NEXT: call void @abort()
  /external/guava/guava-tests/test/com/google/common/collect/
UnmodifiableListIteratorTest.java 38 assertEquals("a", iterator.next());
49 assertEquals("a", iterator.next());
50 assertEquals("b", iterator.next());
62 assertEquals("a", iterator.next());
63 assertEquals("b", iterator.next());
81 public String next() { method

Completed in 960 milliseconds

<<31323334353637383940>>