HomeSort by relevance Sort by last modified time
    Searched refs:Head (Results 51 - 75 of 134) sorted by null

1 23 4 5 6

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/pat_trie_/
pat_trie_base.hpp 129 /// Head node for PATRICIA tree.
472 _CIter<Node, Leaf, Head, Inode, Is_Forward_Iterator>
475 _CIter<Node, Leaf, Head, Inode, !Is_Forward_Iterator>
478 _Iter<Node, Leaf, Head, Inode, Is_Forward_Iterator>
481 _Iter<Node, Leaf, Head, Inode, !Is_Forward_Iterator>
485 template<typename Node, typename Leaf, typename Head, typename Inode,
508 typedef typename _Alloc::template rebind<Head> __rebind_h;
711 template<typename Node, typename Leaf, typename Head, typename Inode,
714 : public _CIter<Node, Leaf, Head, Inode, Is_Forward_Iterator>
717 typedef _CIter<Node, Leaf, Head, Inode, Is_Forward_Iterator
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/pat_trie_/
pat_trie_base.hpp 129 /// Head node for PATRICIA tree.
472 _CIter<Node, Leaf, Head, Inode, Is_Forward_Iterator>
475 _CIter<Node, Leaf, Head, Inode, !Is_Forward_Iterator>
478 _Iter<Node, Leaf, Head, Inode, Is_Forward_Iterator>
481 _Iter<Node, Leaf, Head, Inode, !Is_Forward_Iterator>
485 template<typename Node, typename Leaf, typename Head, typename Inode,
508 typedef typename _Alloc::template rebind<Head> __rebind_h;
711 template<typename Node, typename Leaf, typename Head, typename Inode,
714 : public _CIter<Node, Leaf, Head, Inode, Is_Forward_Iterator>
717 typedef _CIter<Node, Leaf, Head, Inode, Is_Forward_Iterator
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/pat_trie_/
pat_trie_base.hpp 129 /// Head node for PATRICIA tree.
472 _CIter<Node, Leaf, Head, Inode, Is_Forward_Iterator>
475 _CIter<Node, Leaf, Head, Inode, !Is_Forward_Iterator>
478 _Iter<Node, Leaf, Head, Inode, Is_Forward_Iterator>
481 _Iter<Node, Leaf, Head, Inode, !Is_Forward_Iterator>
485 template<typename Node, typename Leaf, typename Head, typename Inode,
508 typedef typename _Alloc::template rebind<Head> __rebind_h;
711 template<typename Node, typename Leaf, typename Head, typename Inode,
714 : public _CIter<Node, Leaf, Head, Inode, Is_Forward_Iterator>
717 typedef _CIter<Node, Leaf, Head, Inode, Is_Forward_Iterator
    [all...]
  /external/llvm/include/llvm/Support/
OnDiskHashTable.h 83 Item *Head;
92 E->Next = B.Head;
94 B.Head = E;
102 for (Item *E = Buckets[I].Head; E;) {
136 for (Item *I = Buckets[Hash & (NumBuckets - 1)].Head; I; I = I->Next)
158 if (!B.Head)
167 assert(B.Length != 0 && "Bucket has a head but zero length?");
170 for (Item *I = B.Head; I; I = I->Next) {
  /external/llvm/lib/IR/
Value.cpp 535 Use *Head = UseList;
537 Head->Next = nullptr;
540 Current->Next = Head;
541 Head->setPrev(&Current->Next);
542 Head = Current;
545 UseList = Head;
546 Head->setPrev(&UseList);
  /prebuilts/go/darwin-x86/src/net/http/
client.go 63 // running after Get, Head, Post, or Do return and will
70 // a request with Get, Head, Post, or Do. Client's default
75 // DefaultClient is the default Client and is used by Get, Head, and Post.
174 if req.Method == "GET" || req.Method == "HEAD" {
500 // Head issues a HEAD to the specified URL. If the response is one of
501 // the following redirect codes, Head follows the redirect, up to a
509 // Head is a wrapper around DefaultClient.Head
510 func Head(url string) (resp *Response, err error)
    [all...]
  /prebuilts/go/linux-x86/src/net/http/
client.go 63 // running after Get, Head, Post, or Do return and will
70 // a request with Get, Head, Post, or Do. Client's default
75 // DefaultClient is the default Client and is used by Get, Head, and Post.
174 if req.Method == "GET" || req.Method == "HEAD" {
500 // Head issues a HEAD to the specified URL. If the response is one of
501 // the following redirect codes, Head follows the redirect, up to a
509 // Head is a wrapper around DefaultClient.Head
510 func Head(url string) (resp *Response, err error)
    [all...]
  /external/lzma/CPP/Common/
Wildcard.cpp 563 Pairs[index].Head.AddItem(include, item);
572 if (Pairs[i].Head.CheckPath2(isAltStream, path, isFile, include))
593 Pairs[i].Head.ExtendExclude(Pairs[index].Head);
Wildcard.h 101 CCensorNode Head;
  /external/protobuf/gtest/include/gtest/internal/
gtest-internal.h 677 typedef typename Types::Head Type;
719 typedef typename Tests::Head Head;
722 TypeParameterizedTest<Fixture, Head, Types>::Register(
    [all...]
gtest-type-util.h 106 // Head for the first type in the list, and Tail for the rest of the
116 typedef T1 Head;
121 typedef T1 Head;
127 typedef T1 Head;
133 typedef T1 Head;
139 typedef T1 Head;
146 typedef T1 Head;
153 typedef T1 Head;
160 typedef T1 Head;
167 typedef T1 Head;
    [all...]
  /frameworks/volley/src/test/java/com/android/volley/toolbox/
HttpClientStackTest.java 106 TestRequest.Head request = new TestRequest.Head();
107 assertEquals(request.getMethod(), Method.HEAD);
HurlStackTest.java 112 TestRequest.Head request = new TestRequest.Head();
113 assertEquals(request.getMethod(), Method.HEAD);
116 assertEquals("HEAD", mMockConnection.getRequestMethod());
  /libcore/ojluni/src/main/java/java/util/stream/
DoublePipeline.java 60 * Constructor for the head of a stream pipeline.
72 * Constructor for the head of a stream pipeline.
519 public static class Head<E_IN> extends DoublePipeline<E_IN> {
529 public Head(Supplier<? extends Spliterator<Double>> source,
542 public Head(Spliterator<Double> source,
557 // Optimized sequential terminal operations for the head of the pipeline
LongPipeline.java 60 * Constructor for the head of a stream pipeline.
73 * Constructor for the head of a stream pipeline.
499 public static class Head<E_IN> extends LongPipeline<E_IN> {
509 public Head(Supplier<? extends Spliterator<Long>> source,
522 public Head(Spliterator<Long> source,
537 // Optimized sequential terminal operations for the head of the pipeline
  /external/google-breakpad/src/testing/gtest/include/gtest/internal/
gtest-internal.h 648 typedef typename Types::Head Type;
690 typedef typename Tests::Head Head;
693 TypeParameterizedTest<Fixture, Head, Types>::Register(
    [all...]
gtest-type-util.h 115 // Head for the first type in the list, and Tail for the rest of the
125 typedef T1 Head;
130 typedef T1 Head;
136 typedef T1 Head;
142 typedef T1 Head;
148 typedef T1 Head;
155 typedef T1 Head;
162 typedef T1 Head;
169 typedef T1 Head;
176 typedef T1 Head;
    [all...]
  /external/gtest/include/gtest/internal/
gtest-internal.h 574 typedef typename Types::Head Type;
616 typedef typename Tests::Head Head;
619 TypeParameterizedTest<Fixture, Head, Types>::Register(
    [all...]
gtest-type-util.h 114 // Head for the first type in the list, and Tail for the rest of the
124 typedef T1 Head;
129 typedef T1 Head;
135 typedef T1 Head;
141 typedef T1 Head;
147 typedef T1 Head;
154 typedef T1 Head;
161 typedef T1 Head;
168 typedef T1 Head;
175 typedef T1 Head;
    [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-internal.h 677 typedef typename Types::Head Type;
719 typedef typename Tests::Head Head;
722 TypeParameterizedTest<Fixture, Head, Types>::Register(
    [all...]
gtest-type-util.h 115 // Head for the first type in the list, and Tail for the rest of the
125 typedef T1 Head;
130 typedef T1 Head;
136 typedef T1 Head;
142 typedef T1 Head;
148 typedef T1 Head;
155 typedef T1 Head;
162 typedef T1 Head;
169 typedef T1 Head;
176 typedef T1 Head;
    [all...]
  /external/mesa3d/src/gtest/include/gtest/internal/
gtest-internal.h 648 typedef typename Types::Head Type;
690 typedef typename Tests::Head Head;
693 TypeParameterizedTest<Fixture, Head, Types>::Register(
    [all...]
gtest-type-util.h 115 // Head for the first type in the list, and Tail for the rest of the
125 typedef T1 Head;
130 typedef T1 Head;
136 typedef T1 Head;
142 typedef T1 Head;
148 typedef T1 Head;
155 typedef T1 Head;
162 typedef T1 Head;
169 typedef T1 Head;
176 typedef T1 Head;
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/
gtest-internal.h 574 typedef typename Types::Head Type;
616 typedef typename Tests::Head Head;
619 TypeParameterizedTest<Fixture, Head, Types>::Register(
    [all...]
gtest-type-util.h 115 // Head for the first type in the list, and Tail for the rest of the
125 typedef T1 Head;
130 typedef T1 Head;
136 typedef T1 Head;
142 typedef T1 Head;
148 typedef T1 Head;
155 typedef T1 Head;
162 typedef T1 Head;
169 typedef T1 Head;
176 typedef T1 Head;
    [all...]

Completed in 846 milliseconds

1 23 4 5 6