HomeSort by relevance Sort by last modified time
    Searched refs:ilist (Results 1 - 25 of 30) sorted by null

1 2

  /external/llvm/unittests/ADT/
ilistTest.cpp 10 #include "llvm/ADT/ilist.h"
29 ilist<Node> List;
40 const ilist<Node> &ConstList = List;
47 ilist<Node> List;
67 ilist<Node> List;
74 ilist<Node>::iterator E = List.end();
  /frameworks/compile/mclinker/include/mcld/Support/
GCFactoryListTraits.h 16 #include <llvm/ADT/ilist.h>
  /external/llvm/include/llvm/Analysis/
IVUsers.h 130 ilist<IVStrideUse> IVUses;
160 typedef ilist<IVStrideUse>::iterator iterator;
161 typedef ilist<IVStrideUse>::const_iterator const_iterator;
AliasSetTracker.h 21 #include "llvm/ADT/ilist.h"
220 // Can only be created by AliasSetTracker. Also, ilist creates one
296 ilist<AliasSet> AliasSets;
349 const ilist<AliasSet> &getAliasSets() const { return AliasSets; }
391 typedef ilist<AliasSet>::iterator iterator;
392 typedef ilist<AliasSet>::const_iterator const_iterator;
  /external/chromium_org/chrome/test/pyautolib/
pyauto_utils.py 168 def Shard(ilist, shard_index, num_shards):
172 ilist: input list
176 chunk_size = len(ilist) / num_shards
179 chunk_end = len(ilist)
182 return ilist[chunk_start:chunk_end]
  /external/chromium_org/chrome/tools/ipclist/
ipcfuzz.cc 556 #define IPC_MESSAGE_DECL(kind, type, name, in, out, ilist, olist) \
557 IPC_##kind##_##type##_FUZZ(name, in, out, ilist, olist)
559 #define IPC_EMPTY_CONTROL_FUZZ(name, in, out, ilist, olist) \
564 #define IPC_EMPTY_ROUTED_FUZZ(name, in, out, ilist, olist) \
569 #define IPC_ASYNC_CONTROL_FUZZ(name, in, out, ilist, olist) \
572 IPC_TUPLE_IN_##in ilist p; \
578 #define IPC_ASYNC_ROUTED_FUZZ(name, in, out, ilist, olist) \
581 IPC_TUPLE_IN_##in ilist p; \
589 #define IPC_SYNC_CONTROL_FUZZ(name, in, out, ilist, olist) \
592 IPC_TUPLE_IN_##in ilist p;
    [all...]
ipclist.cc 30 #define IPC_MESSAGE_DECL(kind, type, name, in, out, ilist, olist) \
  /frameworks/compile/mclinker/include/mcld/LD/
RelocData.h 20 #include <llvm/ADT/ilist.h>
SectionData.h 15 #include <llvm/ADT/ilist.h>
  /external/llvm/include/llvm/ADT/
ilist.h 1 //==-- llvm/ADT/ilist.h - Intrusive Linked List Template ---------*- C++ -*-==//
19 // The ilist class itself, should be a plug in replacement for list, assuming
24 // The ilist class is implemented by allocating a 'tail' node when the list is
73 /// strategy. The sentinel is stored in the prev field of ilist's Head.
83 /// provideInitialHead - when constructing an ilist, provide a starting
215 assert(NodePtr && "--'d off the beginning of an ilist!");
449 // an ilist (and potentially deleted) with iterators still pointing at it.
638 struct ilist : public iplist<NodeTy> { struct in namespace:llvm
642 ilist() {} function in struct:llvm::ilist
643 ilist(const ilist &right) function in struct:llvm::ilist
646 explicit ilist(size_type count) { function in struct:llvm::ilist
649 ilist(size_type count, const NodeTy &val) { function in struct:llvm::ilist
652 template<class InIt> ilist(InIt first, InIt last) { function in struct:llvm::ilist
    [all...]
SparseBitVector.h 18 #include "llvm/ADT/ilist.h"
283 typedef ilist<SparseBitVectorElement<ElementSize> > ElementList;
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
BugReporter.h 27 #include "llvm/ADT/ilist.h"
345 llvm::ilist<BugReport> Reports;
358 typedef llvm::ilist<BugReport>::iterator iterator;
359 typedef llvm::ilist<BugReport>::const_iterator const_iterator;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
opl3.h 301 struct snd_seq_kinstr_list *ilist; member in struct:snd_opl3
trident.h 358 struct snd_seq_kinstr_list *ilist; member in struct:snd_4dwave
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/
opl3.h 301 struct snd_seq_kinstr_list *ilist; member in struct:snd_opl3
trident.h 358 struct snd_seq_kinstr_list *ilist; member in struct:snd_4dwave
  /external/llvm/include/llvm/IR/
Module.h 123 typedef ilist<NamedMDNode> NamedMDListType;
509 static ilist<NamedMDNode> Module::*getSublistAccess(NamedMDNode*) {
  /external/llvm/include/llvm/CodeGen/PBQP/
Graph.h 19 #include "llvm/ADT/ilist.h"
35 typedef llvm::ilist<NodeEntry> NodeList;
36 typedef llvm::ilist<EdgeEntry> EdgeList;
  /frameworks/compile/mclinker/include/mcld/
Module.h 34 #include <llvm/ADT/ilist.h>
  /external/llvm/include/llvm/CodeGen/
MachineFunction.h 21 #include "llvm/ADT/ilist.h"
116 typedef ilist<MachineBasicBlock> BasicBlockListType;
SelectionDAG.h 20 #include "llvm/ADT/ilist.h"
145 ilist<SDNode> AllNodes;
270 typedef ilist<SDNode>::const_iterator allnodes_const_iterator;
273 typedef ilist<SDNode>::iterator allnodes_iterator;
276 ilist<SDNode>::size_type allnodes_size() const {
    [all...]
MachineBasicBlock.h 63 typedef ilist<MachineInstr> Instructions;
SlotIndexes.h 26 #include "llvm/ADT/ilist.h"
337 typedef ilist<IndexListEntry> IndexList;
  /external/llvm/lib/Analysis/
IVUsers.cpp 258 for (ilist<IVStrideUse>::const_iterator UI = IVUses.begin(),
  /system/netd/
CommandListener.cpp 725 InterfaceCollection *ilist = sTetherCtrl->getTetheredInterfaceList(); local
727 for (it = ilist->begin(); it != ilist->end(); ++it) {
    [all...]

Completed in 1828 milliseconds

1 2