HomeSort by relevance Sort by last modified time
    Searched refs:Head (Results 26 - 50 of 132) sorted by null

12 3 4 5 6

  /external/skia/include/core/
SkTRegistry.h 40 static const SkTRegistry* Head() { return gHead; }
  /external/llvm/lib/CodeGen/
MachineRegisterInfo.cpp 176 MachineOperand *const Head = HeadRef;
178 // Head points to the first list element.
180 // Prev pointers are circular, so Head->Prev == Last.
182 // Head is NULL for an empty list.
183 if (!Head) {
189 assert(MO->getReg() == Head->getReg() && "Different regs on the same list!");
191 // Insert MO between Last and Head in the circular Prev chain.
192 MachineOperand *Last = Head->Contents.Reg.Prev;
195 Head->Contents.Reg.Prev = MO;
202 MO->Contents.Reg.Next = Head;
    [all...]
ShadowStackGC.cpp 45 GlobalVariable *Head;
198 ShadowStackGC::ShadowStackGC() : Head(nullptr), StackEntryTy(nullptr) {
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...]
  /external/chromium_org/testing/gtest/samples/
sample3_unittest.cc 105 for ( const QueueNode<int> * n1 = q->Head(), * n2 = new_q->Head();
sample3-inl.h 105 QueueNode<E>* Head() { return head_; }
106 const QueueNode<E>* Head() const { return head_; }
129 // Removes the head of the queue and returns it. Returns NULL if
  /external/protobuf/gtest/samples/
sample3_unittest.cc 105 for ( const QueueNode<int> * n1 = q->Head(), * n2 = new_q->Head();
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
  /ndk/sources/third_party/googletest/googletest/samples/
sample3_unittest.cc 105 for ( const QueueNode<int> * n1 = q->Head(), * n2 = new_q->Head();
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/x86_64-linux/include/c++/4.6/ext/pb_ds/detail/pat_trie_/
point_iterators.hpp 56 Head, \
66 Head, \
76 Head, \
86 Head, \
96 class Head,
121 Head>::other::pointer
354 class Head,
380 Head>::other::pointer
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/pat_trie_/
point_iterators.hpp 56 Head, \
66 Head, \
76 Head, \
86 Head, \
96 class Head,
121 Head>::other::pointer
354 class Head,
380 Head>::other::pointer
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/pat_trie_/
point_iterators.hpp 56 Head, \
66 Head, \
76 Head, \
86 Head, \
96 class Head,
121 Head>::other::pointer
354 class Head,
380 Head>::other::pointer
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/pat_trie_/
point_iterators.hpp 56 Head, \
66 Head, \
76 Head, \
86 Head, \
96 class Head,
121 Head>::other::pointer
354 class Head,
380 Head>::other::pointer
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ext/pb_ds/detail/pat_trie_/
point_iterators.hpp 56 Head, \
66 Head, \
76 Head, \
86 Head, \
96 class Head,
121 Head>::other::pointer
354 class Head,
380 Head>::other::pointer
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/pat_trie_/
point_iterators.hpp 56 Head, \
66 Head, \
76 Head, \
86 Head, \
96 class Head,
121 Head>::other::pointer
354 class Head,
380 Head>::other::pointer
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/pat_trie_/
point_iterators.hpp 56 Head, \
66 Head, \
76 Head, \
86 Head, \
96 class Head,
121 Head>::other::pointer
354 class Head,
380 Head>::other::pointer
  /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...]
  /frameworks/native/services/sensorservice/
traits.h 31 typedef T Head;
55 template <typename Head, typename Tail, typename T>
56 struct IndexOf<TypeList<Head, Tail>, T> {
  /external/chromium_org/ui/events/gesture_detection/
touch_disposition_gesture_filter.h 86 GestureSequence& Head();
  /external/clang/lib/Sema/
AttributeList.cpp 94 if (!Head) {
95 Head = pool;
99 // Reverse the pool onto the current head. This optimizes for the
103 pool->NextInPool = Head;
104 Head = pool;
  /external/llvm/include/llvm/Support/
Registry.h 79 static node *Head, *Tail;
98 Head = this;
121 static iterator begin() { return iterator(Head); }
216 typename Registry<T,U>::node *Registry<T,U>::Head;
  /external/clang/test/CodeGenCXX/
debug-info-use-after-free.cpp 8 typedef T1 Head;
21 typedef TemplateSel < T1 > Head;
40 typedef typename Types::Head Type;
49 typedef typename Tests::Head Head;
50 TypeParameterizedTest < Fixture, Head, Types >::Register;
  /external/chromium_org/sandbox/mac/
mach_message_server.cc 128 error_reply->Head.msgh_size = sizeof(mig_reply_error_t);
129 error_reply->Head.msgh_bits =
133 SendReply(&error_reply->Head);
  /external/llvm/include/llvm/CodeGen/
MachineTraceMetrics.h 142 /// The block number of the head of the trace. (When hasValidDepth()).
143 unsigned Head;
177 /// trace head, and any dependencies from such a far away dominator are not
185 // Instruction depths are only comparable if the traces share a head.
186 if (Head != TBI.Head)
190 // flow, a dominator may share a trace head without actually being on the
253 /// the trace head to the trace center block. The resource depth only
  /external/clang/test/SemaTemplate/
instantiate-member-class.cpp 67 static node *Head;
69 node(int v) { Head = this; }
  /frameworks/volley/tests/src/com/android/volley/mock/
TestRequest.java 137 /** Test example of a HEAD request in the new style. */
138 public static class Head extends Base {
139 public Head() {
140 super(Method.HEAD, TEST_URL, null);

Completed in 1996 milliseconds

12 3 4 5 6