/external/chromium/crypto/ |
D | rsa_private_key.cc | 77 content.push_front(kRsaAlgorithmIdentifier[i - 1]); in Export() 103 content.push_front(kRsaAlgorithmIdentifier[i - 1]); in ExportPublicKeyInfo() 210 data->push_front(0x00); in PrependIntegerImpl() 284 data->push_front(val[start + num_bytes]); in PrependBytes() 292 data->push_front(static_cast<uint8>(size)); in PrependLength() 296 data->push_front(static_cast<uint8>(size & 0xFF)); in PrependLength() 301 data->push_front(0x80 | num_bytes); in PrependLength() 309 output->push_front(type); in PrependTypeHeaderAndLength() 318 output->push_front(0); in PrependBitString() 322 output->push_front((uint8) kBitStringTag); in PrependBitString()
|
/external/skia/tests/ |
D | DequeTest.cpp | 108 *(int*)deq.push_front() = i; in TestSub() 151 *(int*)deq.push_front() = 5; in TestSub() 153 *(int*)deq.push_front() = 6; in TestSub() 155 *(int*)deq.push_front() = 7; in TestSub() 157 *(int*)deq.push_front() = 8; in TestSub()
|
/external/compiler-rt/lib/sanitizer_common/tests/ |
D | sanitizer_list_test.cc | 86 l.push_front(x); in TEST() 94 l.push_front(x); in TEST() 95 l.push_front(y); in TEST() 96 l.push_front(z); in TEST()
|
/external/stlport/test/unit/ |
D | deque_test.cpp | 56 d.push_front(1); in deque1() 282 dint.push_front(2); in erase() 284 dint.push_front(1); in erase() 286 dint.push_front(0); in erase() 302 dint.push_front(0); in erase()
|
D | alg_test.cpp | 219 intsl.push_front(1); in find_first_of_test() 220 intsl.push_front(2); in find_first_of_test() 249 intl.push_front(1); in find_first_of_test() 250 intl.push_front(2); in find_first_of_test()
|
D | list_test.cpp | 28 CPPUNIT_TEST(push_front); 43 void push_front(); 256 void ListTest::push_front() in push_front() function in ListTest 266 l.push_front( 0 ); in push_front()
|
/external/stlport/test/eh/ |
D | test_slist.cpp | 61 testSList.push_front( x ); in test_slist() 62 testSList2.push_front( TestClass() ); in test_slist()
|
D | test_push_front.h | 36 c.push_front( _value_type() ); in operator()
|
/external/clang/lib/StaticAnalyzer/Core/ |
D | BugReporter.cpp | 591 PD.getActivePath().push_front(C); in GenerateMinimalPathDiagnostic() 654 PD.getActivePath().push_front(new PathDiagnosticControlFlowPiece( in GenerateMinimalPathDiagnostic() 706 PD.getActivePath().push_front(new PathDiagnosticControlFlowPiece( in GenerateMinimalPathDiagnostic() 712 PD.getActivePath().push_front(new PathDiagnosticControlFlowPiece( in GenerateMinimalPathDiagnostic() 724 PD.getActivePath().push_front(new PathDiagnosticControlFlowPiece( in GenerateMinimalPathDiagnostic() 746 PD.getActivePath().push_front(new PathDiagnosticControlFlowPiece( in GenerateMinimalPathDiagnostic() 769 PD.getActivePath().push_front(new PathDiagnosticControlFlowPiece( in GenerateMinimalPathDiagnostic() 776 PD.getActivePath().push_front(new PathDiagnosticControlFlowPiece( in GenerateMinimalPathDiagnostic() 788 PD.getActivePath().push_front(new PathDiagnosticControlFlowPiece( in GenerateMinimalPathDiagnostic() 796 PD.getActivePath().push_front(new PathDiagnosticControlFlowPiece( in GenerateMinimalPathDiagnostic() [all …]
|
/external/stlport/stlport/stl/debug/ |
D | _deque.h | 256 void push_front(const value_type& __t = _Tp()) { 258 void push_front(const value_type& __t) { 261 _M_non_dbg_impl.push_front(__t); 265 void push_front() { in push_front() function 267 _M_non_dbg_impl.push_front(); in push_front()
|
/external/chromium/third_party/libjingle/source/talk/base/ |
D | socketpool.cc | 66 active_.push_front(*it); in RequestConnectedStream() 76 active_.push_front(ConnectedStream(remote, stream)); in RequestConnectedStream() 96 cached_.push_front(*it); in ReturnConnectedStream()
|
/external/llvm/lib/Transforms/Scalar/ |
D | Reg2Mem.cpp | 99 WorkList.push_front(&*iib); in INITIALIZE_PASS_DEPENDENCY() 117 WorkList.push_front(&*iib); in INITIALIZE_PASS_DEPENDENCY()
|
/external/stlport/stlport/stl/pointers/ |
D | _deque.h | 274 void push_front(const value_type& __t = _STLP_DEFAULT_CONSTRUCTED(value_type)) 276 void push_front(const value_type& __t) 278 { _M_impl.push_front(cast_traits::to_storage_type_cref(__t)); } 282 void push_front() { _M_impl.push_front(); }
|
D | _slist.h | 208 void push_front(const value_type& __x = _STLP_DEFAULT_CONSTRUCTED(value_type)) 210 void push_front(const value_type& __x) 212 { _M_impl.push_front(cast_traits::to_storage_type_cref(__x)); } 215 void push_front() { _M_impl.push_front();} in push_front() function
|
D | _list.h | 228 …void push_front(const value_type& __x) { _M_impl.push_front(cast_traits::to_storage_type_cref(__x)… in push_front() function 233 void push_front() { _M_impl.push_front();} in push_front() function
|
/external/webrtc/src/system_wrappers/source/ |
D | list_stl.cc | 88 list_.push_front(item); in PushFront() 95 list_.push_front(item); in PushFront()
|
/external/eigen/Eigen/src/StlSupport/ |
D | StdDeque.h | 102 void push_front(const value_type& x) in push_front() function 103 { deque_base::push_front(x); } in push_front()
|
/external/skia/legacy/include/core/ |
D | SkDeque.h | 36 void* push_front();
|
/external/bison/examples/calc++/ |
D | stack.hh | 81 seq_.push_front (t); in push()
|
/external/chromium/net/http/ |
D | http_auth_cache.cc | 130 entries_.push_front(Entry()); in Add() 177 paths_.push_front(parent_dir); in AddPath()
|
/external/chromium/net/ftp/ |
D | ftp_auth_cache.cc | 47 entries_.push_front(Entry(origin, username, password)); in Add()
|
/external/skia/include/core/ |
D | SkDeque.h | 55 void* push_front();
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_list.h | 50 void push_front(Item *x) { in push_front() function
|
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
D | queue.h | 132 using deque<S>::push_front; 141 void Enqueue(StateId s) { push_front(s); } in Enqueue() 162 using deque<S>::push_front; 171 void Enqueue(StateId s) { push_front(s); } in Enqueue()
|
/external/llvm/include/llvm/Support/ |
D | Recycler.h | 119 FreeList.push_front(reinterpret_cast<RecyclerStruct *>(Element));
|