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

1 2

  /external/skia/include/core/
SkTRegistry.h 48 static const SkTRegistry* Head() { return gHead; }
  /external/skia/samplecode/
SampleCode.h 36 static const SkViewRegister* Head() { return gHead; }
  /external/chromium/testing/gtest/samples/
sample3-inl.h 106 QueueNode<E>* Head() { return head_; }
107 const QueueNode<E>* Head() const { return head_; }
130 // Removes the head of the queue and returns it. Returns NULL if
  /external/clang/lib/Analysis/
PseudoConstantAnalysis.cpp 86 const Stmt *Head = WorkList.front();
89 if (const Expr *Ex = dyn_cast<Expr>(Head))
90 Head = Ex->IgnoreParenCasts();
92 switch (Head->getStmtClass()) {
95 const BinaryOperator *BO = cast<BinaryOperator>(Head);
140 const UnaryOperator *UO = cast<UnaryOperator>(Head);
173 const DeclStmt *DS = cast<DeclStmt>(Head);
203 const BlockDeclRefExpr *BDR = cast<BlockDeclRefExpr>(Head);
214 const DeclRefExpr *DR = cast<DeclRefExpr>(Head);
225 const BlockExpr *B = cast<BlockExpr>(Head);
    [all...]
  /external/gtest/samples/
sample3-inl.h 106 QueueNode<E> * Head() { return head_; }
107 const QueueNode<E> * Head() const { return head_; }
130 // Removes the head of the queue and returns it. Returns NULL if
  /external/llvm/include/llvm/CodeGen/
ScoreboardHazardRecognizer.h 36 // indicated by Head.
49 size_t Head;
51 Scoreboard():Data(NULL), Depth(0), Head(0) { }
62 return Data[(Head + idx) & (Depth-1)];
72 Head = 0;
76 Head = (Head + 1) & (Depth-1);
80 Head = (Head - 1) & (Depth-1);
  /external/protobuf/gtest/samples/
sample3-inl.h 106 QueueNode<E> * Head() { return head_; }
107 const QueueNode<E> * Head() const { return head_; }
130 // Removes the head of the queue and returns it. Returns NULL if
  /external/chromium/base/
mach_ipc_mac.h 213 mach_msg_header_t *Head() { return &(storage_->head); }
217 mach_msg_header_t head; member in struct:base::MachMessage::MachMessageData
  /external/clang/test/SemaTemplate/
instantiate-member-class.cpp 67 static node *Head;
69 node(int v) { Head = this; }
  /external/skia/src/core/
SkDeque.cpp 22 struct SkDeque::Head {
23 Head* fNext;
24 Head* fPrev;
48 if (storageSize >= sizeof(Head) + elemSize) {
49 fFront = (Head*)storage;
58 Head* head = fFront; local
59 Head* initialHead = (Head*)fInitialStorage;
61 while (head) {
    [all...]
  /frameworks/base/services/sensorservice/
traits.h 31 typedef T Head;
55 template <typename Head, typename Tail, typename T>
56 struct IndexOf<TypeList<Head, Tail>, T> {
  /external/clang/lib/StaticAnalyzer/Core/
BugReporterVisitors.cpp 419 const Stmt *Head = WorkList.front();
425 if (const DeclRefExpr *DR = dyn_cast<DeclRefExpr>(Head)) {
440 for (Stmt::const_child_iterator I = Head->child_begin();
441 I != Head->child_end(); ++I)
  /external/llvm/include/llvm/ADT/
ImmutableList.h 28 T Head;
31 ImmutableListImpl(const T& head, const ImmutableListImpl* tail = 0)
32 : Head(head), Tail(tail) {}
41 const T& getHead() const { return Head; }
51 Profile(ID, Head, Tail);
95 /// begin - Returns an iterator referring to the head of the list, or
123 /// getHead - Returns the head of the list.
125 assert (!isEmpty() && "Cannot get the head of an empty list.");
167 ImmutableList<T> concat(const T& Head, ImmutableList<T> Tail)
    [all...]
ilist.h 72 /// strategy. The sentinel is stored in the prev field of ilist's Head.
83 /// value for its Head
87 /// ensureHead - make sure that Head is either already
90 static NodeTy *ensureHead(NodeTy *&Head) {
91 if (!Head) {
92 Head = ilist_traits<NodeTy>::createSentinel();
93 ilist_traits<NodeTy>::noteHead(Head, Head);
94 ilist_traits<NodeTy>::setNext(Head, 0);
95 return Head;
    [all...]
  /external/llvm/include/llvm/Support/
Registry.h 74 static node *Head, *Tail;
93 Head = this;
116 static iterator begin() { return iterator(Head); }
210 typename Registry<T,U>::node *Registry<T,U>::Head;
  /external/gtest/include/gtest/internal/
gtest-internal.h 671 typedef typename Types::Head Type;
713 typedef typename Tests::Head Head;
716 TypeParameterizedTest<Fixture, Head, Types>::Register(
    [all...]
gtest-type-util.h 104 // Head for the first type in the list, and Tail for the rest of the
114 typedef T1 Head;
119 typedef T1 Head;
125 typedef T1 Head;
131 typedef T1 Head;
137 typedef T1 Head;
144 typedef T1 Head;
151 typedef T1 Head;
158 typedef T1 Head;
165 typedef T1 Head;
    [all...]
  /external/llvm/lib/CodeGen/
ShadowStackGC.cpp 44 GlobalVariable *Head;
198 ShadowStackGC::ShadowStackGC() : Head(0), StackEntryTy(0) {
300 Head = M.getGlobalVariable("llvm_gc_root_chain");
301 if (!Head) {
304 Head = new GlobalVariable(M, StackEntryPtrTy, false,
308 } else if (Head->hasExternalLinkage() && Head->isDeclaration()) {
309 Head->setInitializer(Constant::getNullValue(StackEntryPtrTy));
310 Head->setLinkage(GlobalValue::LinkOnceAnyLinkage);
400 // Initialize the map pointer and load the current head of the shadow stack
    [all...]
MachineInstr.cpp 63 // Otherwise, add this operand to the head of the registers use/def list.
64 MachineOperand **Head = &RegInfo->getRegUseDefListHead(getReg());
67 // we do this by skipping over the definition if it is at the head of the
69 if (*Head && (*Head)->isDef())
70 Head = &(*Head)->Contents.Reg.Next;
72 Contents.Reg.Next = *Head;
79 Contents.Reg.Prev = Head;
80 *Head = this
    [all...]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
queue.h 41 // // Returns the head of the queue
42 // StateId Head() const;
45 // // Removes the head of the queue
78 StateId Head() const { return Head_(); }
107 StateId Head() const { return front_; }
116 virtual StateId Head_() const { return Head(); }
140 StateId Head() const { return back(); }
148 virtual StateId Head_() const { return Head(); }
170 StateId Head() const { return front(); }
178 virtual StateId Head_() const { return Head(); }
    [all...]
  /external/protobuf/gtest/include/gtest/internal/
gtest-internal.h 670 typedef typename Types::Head Type;
712 typedef typename Tests::Head Head;
715 TypeParameterizedTest<Fixture, Head, Types>::Register(
    [all...]
  /external/chromium/sdch/open-vcdiff/src/gtest/src/
gtest-internal-inl.h 227 ListNode<E> * Head() { return head_; }
228 const ListNode<E> * Head() const { return head_; }
295 return Head();
315 for ( const ListNode<E> * node = Head();
332 for ( const ListNode<E> * node = Head();
345 for ( const ListNode<E> * node = Head();
358 for ( ListNode<E> * node = Head();
    [all...]
  /external/chromium/testing/gtest/include/gtest/internal/
gtest-internal.h 642 typedef typename Types::Head Type;
684 typedef typename Tests::Head Head;
687 TypeParameterizedTest<Fixture, Head, Types>::Register(
    [all...]
gtest-type-util.h 110 // Head for the first type in the list, and Tail for the rest of the
120 typedef T1 Head;
125 typedef T1 Head;
131 typedef T1 Head;
137 typedef T1 Head;
143 typedef T1 Head;
150 typedef T1 Head;
157 typedef T1 Head;
164 typedef T1 Head;
171 typedef T1 Head;
    [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-internal.h 668 typedef typename Types::Head Type;
710 typedef typename Tests::Head Head;
713 TypeParameterizedTest<Fixture, Head, Types>::Register(
    [all...]

Completed in 1006 milliseconds

1 2