/external/chromium_org/third_party/openssl/openssl/crypto/pqueue/ |
pqueue.h | 73 struct _pitem *next; member in struct:_pitem
|
/external/chromium_org/third_party/openssl/openssl/include/openssl/ |
pqueue.h | 73 struct _pitem *next; member in struct:_pitem
|
/external/chromium_org/third_party/skia/src/core/ |
SkDeviceLooper.h | 53 * Call next to setup the looper to return a valid coordinate chunk. 58 * When next() returns false, the list of chunks is done, and mapRect() 61 bool next();
|
SkEdgeClipper.h | 16 and then next() is called until it returns kDone_Verb. 23 SkPath::Verb next(SkPoint pts[]);
|
/external/chromium_org/third_party/skia/src/effects/ |
Sk2DPathEffect.cpp | 36 for (; !iter.done(); iter.next()) { 59 this->next(dst, x++, y, path); 65 void Sk2DPathEffect::next(const SkPoint& loc, int u, int v, SkPath* dst) const {} function in class:Sk2DPathEffect 129 void SkPath2DPathEffect::next(const SkPoint& loc, int u, int v, function in class:SkPath2DPathEffect
|
/external/chromium_org/third_party/skia/src/images/ |
SkScaledBitmapSampler.h | 44 bool next(const uint8_t* SK_RESTRICT src); 46 // Like next(), but specifies the y value of the source row, so the 48 // sample, it will be skipped. Only sampleInterlaced OR next should 67 // Keep track of whether the caller is using next or sampleInterlaced.
|
/external/chromium_org/third_party/skia/src/pathops/ |
SkDCubicToQuads.cpp | 140 int next = start + 1; local 141 if (next >= inflections) { 144 if (!approximately_equal(inflectT[start], inflectT[next])) { 148 memmove(&inflectT[start], &inflectT[next], sizeof(inflectT[0]) * (--inflections - start));
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/rdf/tests/ |
rdftest1.asm | 22 mov cx,next ; [1] => 66 b9 0012 23 next: label
|
/external/chromium_org/third_party/zlib/ |
inflate.h | 115 code FAR *next; /* next available space in codes[] */ member in struct:inflate_state
|
/external/chromium_org/v8/test/cctest/ |
test-liveedit.cc | 68 len1(len1_param), len2(len2_param), next(NULL) {} 73 DiffChunkStruct* next; member in class:__anon18041::DiffChunkStruct 87 next_chunk_pointer_ = ¤t_chunk_->next; 117 chunk = chunk->next) {
|
/external/clang/test/CodeGen/ |
2009-01-21-InvalidIterator.c | 45 struct object *next; member in struct:object
|
/external/dropbear/libtomcrypt/src/pk/asn1/der/sequence/ |
der_sequence_free.c | 54 /* move to next and free current */ 55 l = in->next;
|
/external/e2fsprogs/intl/ |
loadinfo.h | 75 struct loaded_l10nfile *next; member in struct:loaded_l10nfile 98 its ->next field denotes the chaining inside *L10NFILE_LIST, and
|
/external/easymock/src/org/easymock/internal/matchers/ |
And.java | 46 it.next().appendTo(buffer);
|
Or.java | 46 it.next().appendTo(buffer);
|
/external/elfutils/libasm/ |
asm_align.c | 152 asmscn->content->next = asmscn->content; 168 newp->next = asmscn->content->next; 169 asmscn->content = asmscn->content->next = newp;
|
/external/elfutils/libdwfl/ |
dwfl_nextcu.c | 84 mod = mod->next;
|
/external/emma/core/java12/com/vladium/emma/report/html/doc/ |
ElementList.java | 37 final IContent content = (IContent) c.next ();
|
/external/emma/core/java12/com/vladium/util/ |
IntObjectMap.java | 224 Entry (final int key, final Object value, final Entry next) 228 m_next = next; 258 final Entry next = entry.m_next; // remember next pointer because we are going to reuse this entry local 268 entry = next;
|
IntSet.java | 198 Entry (final int key, final Entry next) 201 m_next = next; 230 final Entry next = entry.m_next; // remember next pointer because we are going to reuse this entry local 240 entry = next;
|
/external/guava/guava/src/com/google/common/collect/ |
AbstractIndexedListIterator.java | 41 * {@link #next()}. 47 * position is 0. That is, the first call to {@link #next()} will return the 60 * return {@code position}, and the first call to {@link #next()} will return 80 public final E next() { method in class:AbstractIndexedListIterator
|
/external/guava/guava-tests/test/com/google/common/collect/ |
ForwardingListIteratorTest.java | 62 forward.next(); 63 assertEquals("[next]", getCalls());
|
/external/icu4c/common/ |
ruleiter.h | 97 * @param pos upon input, the index of the next character to return. If a 110 * Returns the next character using the given options, or DONE if there 111 * are no more characters, and advance the position to the next 123 UChar32 next(int32_t options, UBool& isEscaped, UErrorCode& ec); 150 * int c = iterator.next(...); 187 * by future calls to next()
|
uenumimp.h | 61 * This function returns the next element as a UChar *, 67 * @return next element as UChar *, 78 * This function returns the next element as a char *, 84 * @return next element as char *, 124 UEnumNext *next; member in struct:UEnumeration 145 * when a UEnumeration is defined with 'next' pointing to this
|
/external/icu4c/common/unicode/ |
strenum.h | 25 * method that returns the next UnicodeString since in C++ this can 38 * 'next' that you call. In general the StringEnumeration is 46 * <p>The pointers returned by next, unext, and snext become invalid 47 * upon any subsequent call to the enumeration's destructor, next, 100 * <p>Returns the next element as a NUL-terminated char*. If there 107 * deleted by the caller. The pointer is valid until the next call 108 * to next, unext, snext, reset, or the enumerator's destructor.</p> 121 * Either next() or snext() must be implemented differently by a subclass. 129 virtual const char* next(int32_t *resultLength, UErrorCode& status); 132 * <p>Returns the next element as a NUL-terminated UChar*. If ther [all...] |