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

1 2 3 45 6 7 8 91011>>

  /external/clang/lib/Parse/
ParseTentative.cpp 235 // overwhelmingly common case that the next token is a '('.
386 /// \brief Determine whether the next set of tokens contains a type-id.
    [all...]
  /external/clang/lib/Sema/
IdentifierResolver.cpp 38 IdDeclInfoPool(IdDeclInfoPool *Next) : Next(Next) {}
40 IdDeclInfoPool *Next;
53 Cur = Cur->Next;
  /external/clang/test/ASTMerge/Inputs/
struct1.c 50 struct ListNode *Next;
struct2.c 47 struct ListNode *Next;
  /external/libvpx/libvpx/test/
video_source.h 62 // Advance the cursor to the next frame
63 virtual void Next() = 0;
98 virtual void Next() {
182 // Advance the cursor to the next frame
183 virtual void Next() = 0;
webm_video_source.h 131 virtual void Next() {
  /external/lldb/tools/lldb-perf/lib/
Xcode.cpp 125 Xcode::Next (SBThread thread)
  /external/llvm/include/llvm/CodeGen/
MachinePassRegistry.h 54 MachinePassRegistryNode *Next; // Next function pass in list.
62 : Next(nullptr)
69 MachinePassRegistryNode *getNext() const { return Next; }
70 MachinePassRegistryNode **getNextAddress() { return &Next; }
74 void setNext(MachinePassRegistryNode *N) { Next = N; }
  /external/llvm/include/llvm/IR/
Use.h 117 Use *getNext() const { return Next; }
136 Use *Next;
141 Next = *List;
142 if (Next)
143 Next->setPrev(&Next);
149 *StrippedPrev = Next;
150 if (Next)
151 Next->setPrev(StrippedPrev);
  /external/llvm/include/llvm/Support/
Timer.h 86 Timer **Prev, *Next; // Doubly linked list of timers in the group.
166 TimerGroup **Prev, *Next; // Doubly linked list of TimerGroup's.
  /external/llvm/lib/Transforms/Scalar/
LoopInstSimplify.cpp 84 SmallPtrSet<const Instruction*, 8> S1, S2, *ToSimplify = &S1, *Next = &S2;
121 // Mark all uses for resimplification next time round the loop.
123 Next->insert(cast<Instruction>(U));
180 // Place the list of instructions to simplify on the next loop iteration
182 std::swap(ToSimplify, Next);
183 Next->clear();
  /external/lzma/CPP/Windows/
FileFind.cpp 292 bool CEnumerator::Next(CFileInfo &fi)
303 bool CEnumerator::Next(CFileInfo &fi, bool &found)
305 if (Next(fi))
323 bool CEnumeratorW::Next(CFileInfoW &fi)
334 bool CEnumeratorW::Next(CFileInfoW &fi, bool &found)
336 if (Next(fi))
  /external/mesa3d/src/mesa/main/
hash.c 55 struct HashEntry *Next; /**< pointer to next entry */
106 struct HashEntry *next = entry->Next; local
112 entry = next;
141 entry = entry->Next;
193 for (entry = table->Table[pos]; entry; entry = entry->Next) {
212 entry->Next = table->Table[pos];
255 prev->Next = entry->Next;
293 struct HashEntry *entry, *next; local
330 struct HashEntry *entry, *next; local
    [all...]
  /external/protobuf/src/google/protobuf/io/
gzip_stream.cc 83 bool ok = sub_stream_->Next(&in, &in_size);
119 bool GzipInputStream::Next(const void** data, int* size) {
136 // The underlying stream's Next returned false inside Inflate.
154 bool ok = Next(&data, &size);
157 ok = Next(&data, &size);
242 bool ok = sub_stream_->Next(&sub_data_, &sub_data_size_);
266 bool GzipOutputStream::Next(void** data, int* size) {
zero_copy_stream_impl_lite.cc 64 bool ArrayInputStream::Next(const void** data, int* size) {
80 << "BackUp() can only be called after a successful Next().";
117 bool ArrayOutputStream::Next(void** data, int* size) {
133 << "BackUp() can only be called after a successful Next().";
153 bool StringOutputStream::Next(void** data, int* size) {
221 bool CopyingInputStreamAdaptor::Next(const void** data, int* size) {
257 << " BackUp() can only be called after Next().";
260 " to Next().";
331 bool CopyingOutputStreamAdaptor::Next(void** data, int* size) {
347 << " BackUp() can only be called after Next()."
    [all...]
  /external/sfntly/cpp/src/sfntly/table/bitmap/
index_sub_table_format1.cc 287 IndexSubTableFormat1::Builder::BitmapGlyphInfoIterator::Next() {
index_sub_table_format2.cc 260 IndexSubTableFormat2::Builder::BitmapGlyphInfoIterator::Next() {
index_sub_table_format3.cc 283 IndexSubTableFormat3::Builder::BitmapGlyphInfoIterator::Next() {
  /external/sfntly/cpp/src/sfntly/table/truetype/
loca_table.cc 83 int32_t LocaTable::LocaIterator::Next() {
212 loca_.push_back(loca_iter->Next());
  /external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
SkPdfOutlineItemDictionary_autogen.cpp 47 SkPdfDictionary* SkPdfOutlineItemDictionary::Next(SkPdfNativeDoc* doc) {
48 SkPdfNativeObject* ret = get("Next", "");
56 return get("Next", "") != NULL;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
video_source.h 62 // Advance the cursor to the next frame
63 virtual void Next() = 0;
98 virtual void Next() {
182 // Advance the cursor to the next frame
183 virtual void Next() = 0;
webm_video_source.h 131 virtual void Next() {
  /art/compiler/utils/
growable_array.h 55 // NOTE: returns 0/NULL when no next.
57 T Next() {
  /external/chromium_org/content/browser/indexed_db/leveldb/
leveldb_transaction.cc 146 leveldb::Status LevelDBTransaction::DataIterator::Next() {
236 leveldb::Status LevelDBTransaction::TransactionIterator::Next() {
254 s = non_current->Next();
264 s = current_->Next();
292 // stepping, like we do in Next() above.
348 data_iterator_->Next();
379 db_iterator_->Next();
389 data_iterator_->Next();
  /external/chromium_org/media/video/capture/win/
pin_base_win.cc 45 STDMETHOD(Next)(ULONG count, AM_MEDIA_TYPE** types, ULONG* fetched) {

Completed in 1233 milliseconds

1 2 3 45 6 7 8 91011>>