HomeSort by relevance Sort by last modified time
    Searched defs:next (Results 101 - 125 of 6142) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/mesa3d/src/gallium/drivers/nouveau/
nouveau_heap.h 42 * just free the "next" node, until there is no next node. This should assure
48 struct nouveau_heap *next; member in struct:nouveau_heap
  /external/mesa3d/src/gallium/drivers/swr/
swr_fence_work.h 36 struct swr_fence_work *next; member in struct:swr_fence_work
  /external/minijail/
syscall_filter.h 22 struct filter_block *next; member in struct:filter_block
  /external/mockito/src/main/java/org/mockito/internal/configuration/injection/filter/
TypeBasedCandidateFilter.java 14 private final MockCandidateFilter next; field in class:TypeBasedCandidateFilter
16 public TypeBasedCandidateFilter(MockCandidateFilter next) {
17 this.next = next;
31 return next.filterCandidate(mockTypeMatches, candidateFieldToBeInjected, allRemainingCandidateFields, injectee);
  /external/okhttp/okio/okio/src/main/java/okio/
SegmentPool.java 28 static Segment next; field in class:SegmentPool
38 if (next != null) {
39 Segment result = next;
40 next = result.next;
41 result.next = null;
50 if (segment.next != null || segment.prev != null) throw new IllegalArgumentException();
55 segment.next = next;
57 next = segment
    [all...]
  /external/parameter-framework/upstream/parameter/
PathNavigator.cpp 62 std::string *pStrChildName = next();
83 std::string *CPathNavigator::next() function in class:CPathNavigator
  /external/selinux/libsepol/cil/src/
cil_list.h 42 struct cil_list_item *next; member in struct:cil_list_item
48 for (item = (list)->head; item != NULL; item = item->next)
  /external/skia/src/core/
SkDeviceLooper.cpp 16 // sentinels that next() has not yet been called, and so our mapper functions
31 // back up by 1 DX, so that next() will put us in a correct starting
95 bool SkDeviceLooper::next() { function in class:SkDeviceLooper
  /external/skia/src/gpu/glsl/
GrGLSLFragmentProcessor.cpp 69 GrGLSLFragmentProcessor* GrGLSLFragmentProcessor::Iter::next() { function in class:GrGLSLFragmentProcessor::Iter
  /external/skia/src/gpu/text/
GrTextUtils.cpp 79 bool GrTextUtils::PathTextIter::next(const SkGlyph** skGlyph, const SkPath** path, SkScalar* xpos) { function in class:GrTextUtils::PathTextIter
  /external/skia/src/sksl/
SkSLLayoutLexer.cpp 527 LayoutToken LayoutLexer::next() { function in class:SkSL::LayoutLexer
    [all...]
SkSLLexer.cpp 942 Token Lexer::next() { function in class:SkSL::Lexer
    [all...]
  /external/skia/src/sksl/lex/
RegexNode.cpp 57 std::vector<int> next = accept; local
60 next.push_back(id);
61 result = fChildren[0].createStates(nfa, next);
72 std::vector<int> next = accept; local
75 next.push_back(id);
76 result = fChildren[0].createStates(nfa, next);
  /external/skia/tools/
sk_pixel_iter.h 32 void* next(SkIPoint* loc = nullptr) { function in class:sk_tool_utils::PixelIter
  /external/skqp/src/core/
SkDeviceLooper.cpp 16 // sentinels that next() has not yet been called, and so our mapper functions
31 // back up by 1 DX, so that next() will put us in a correct starting
95 bool SkDeviceLooper::next() { function in class:SkDeviceLooper
  /external/skqp/src/gpu/glsl/
GrGLSLFragmentProcessor.cpp 69 GrGLSLFragmentProcessor* GrGLSLFragmentProcessor::Iter::next() { function in class:GrGLSLFragmentProcessor::Iter
  /external/skqp/src/sksl/
SkSLLayoutLexer.cpp 527 LayoutToken LayoutLexer::next() { function in class:SkSL::LayoutLexer
    [all...]
SkSLLexer.cpp 942 Token Lexer::next() { function in class:SkSL::Lexer
    [all...]
  /external/skqp/src/sksl/lex/
RegexNode.cpp 57 std::vector<int> next = accept; local
60 next.push_back(id);
61 result = fChildren[0].createStates(nfa, next);
72 std::vector<int> next = accept; local
75 next.push_back(id);
76 result = fChildren[0].createStates(nfa, next);
  /external/skqp/tools/
sk_pixel_iter.h 32 void* next(SkIPoint* loc = nullptr) { function in class:sk_tool_utils::PixelIter
  /external/smali/smalidea/src/main/java/org/jf/smalidea/util/
PsiUtil.java 62 PsiElement next = element.getNextSibling(); local
63 if (next == null) {
64 next = element.getParent();
65 if (next == null) {
69 element = next;
  /external/syslinux/core/lwip/src/include/lwip/
raw.h 67 struct raw_pcb *next; member in struct:raw_pcb
  /external/tcpdump/
cpack.c 52 /* Advance to the next wordsize boundary. Return NULL if fewer than
59 const uint8_t *next; local
62 next = cpack_next_boundary(cs->c_buf, cs->c_next, wordsize);
65 if (next - cs->c_buf + wordsize > cs->c_len)
68 return next;
98 const uint8_t *next; local
100 if ((next = cpack_align_and_reserve(cs, sizeof(*u))) == NULL)
103 *u = EXTRACT_LE_64BITS(next);
106 cs->c_next = next + sizeof(*u);
114 const uint8_t *next; local
130 const uint8_t *next; local
    [all...]
  /external/testng/src/test/java/test/dataprovider/
FailingIterableDataProvider.java 21 public Object[] next() { method
MyIterator.java 19 public Object[] next() { method in class:MyIterator

Completed in 342 milliseconds

1 2 3 45 6 7 8 91011>>