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

1 2 3

  /external/chromium-trace/catapult/telemetry/telemetry/testing/
options_for_unittests.py 21 def Pop():
22 return _options.pop()
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Collections/
StackList.cs 61 public object Pop()
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Misc/
ListStack`1.cs 71 public T Pop()
  /external/webrtc/webrtc/modules/video_coding/
timestamp_map.cc 38 VCMFrameInformation* VCMTimestampMap::Pop(uint32_t timestamp) {
generic_decoder.cc 58 frameInfo = _timestampMap.Pop(decodedImage.timestamp());
116 int32_t VCMDecodedFrameCallback::Pop(uint32_t timestamp) {
118 if (_timestampMap.Pop(timestamp) == NULL) {
160 _callback->Pop(frame.TimeStamp());
165 _callback->Pop(frame.TimeStamp());
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_lfstack.h 48 T *Pop() {
  /external/v8/tools/
jsmin.py 80 def Pop(self):
113 self.Pop()
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
memorybuffer.h 48 void Pop(size_t count) { stack_.template Pop<Ch>(count); }
stringbuffer.h 55 // Push and pop a null terminator. This is safe.
58 stack_.template Pop<Ch>(1);
61 void Pop(size_t count) { stack_.template Pop<Ch>(count); }
64 // Push and pop a null terminator. This is safe.
66 stack_.template Pop<Ch>(1);
  /art/compiler/debug/dwarf/
writer.h 154 void Pop() {
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
CommonTreeNodeStream.cs 58 /** <summary>Stack of indexes used for push/pop calls</summary> */
169 * Switch back with pop().
182 public virtual int Pop() {
183 int ret = _calls.Pop();
BufferedTreeNodeStream.cs 150 /** <summary>Stack of indexes used for push/pop calls</summary> */
423 * Switch back with pop().
439 public virtual int Pop() {
440 int ret = calls.Pop();
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
CommonTreeNodeStream.cs 60 /** <summary>Stack of indexes used for push/pop calls</summary> */
195 * Switch back with pop().
210 public virtual int Pop()
212 int ret = _calls.Pop();
BufferedTreeNodeStream.cs 159 /** <summary>Stack of indexes used for push/pop calls</summary> */
502 * Switch back with pop().
520 public virtual int Pop()
522 int ret = calls.Pop();
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.Collections.pas 69 function Pop: T;
128 function Pop: T;
319 function TStackList<T>.Pop: T;
  /build/tools/releasetools/
check_target_files_signatures 79 def Pop():
80 PROBLEM_PREFIX.pop()
163 Pop()
178 Pop()
297 Pop()
403 Pop()
412 Pop()
check_target_files_signatures.py 79 def Pop():
80 PROBLEM_PREFIX.pop()
163 Pop()
178 Pop()
297 Pop()
403 Pop()
412 Pop()
  /external/v8/src/compiler/
graph-reducer.cc 58 revisit_.pop();
114 if (node->IsDead()) return Pop(); // Node was killed while on stack.
135 // If there was no reduction, pop {node} and continue.
136 if (!reduction.Changed()) return Pop();
149 // After reducing the node, pop it off the stack.
150 Pop();
240 void GraphReducer::Pop() {
243 stack_.pop();
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/internal/
stack.h 122 T* Pop(size_t count) {
  /external/pdfium/xfa/src/fgas/src/xml/
fx_sax_imp.cpp 130 inline void CFX_SAXReader::Pop() {
349 Pop();
391 Pop();
527 Pop();
534 Pop();
541 Pop();
600 Pop();
611 Pop();
  /external/v8/src/
effects.h 256 void pop() { node_ = node_->previous; } function in class:v8::internal::NestedEffectsBase
324 NestedEffects Pop() {
326 result.pop();
  /external/webrtc/talk/app/webrtc/
datachannel.cc 97 void DataChannel::PacketQueue::Pop() {
516 queued_received_data_.Pop();
534 queued_send_data_.Pop();
611 control_packets.Pop();
  /system/extras/simpleperf/
record.cpp 745 std::unique_ptr<Record> RecordCache::Pop() {
755 queue_.pop();
763 queue_.pop();
  /external/google-breakpad/src/testing/gtest/scripts/
pump.py 476 def Pop(token_type=None):
483 Pop('$else')
484 Pop('[[')
486 Pop(']]')
489 Pop('$elif')
490 exp = Pop('code')
491 Pop('[[')
493 Pop(']]')
497 Pop('code')
504 def Pop(token_type=None)
    [all...]
  /external/llvm/lib/Transforms/Utils/
LowerSwitch.cpp 465 unsigned &Pop = Popularity[I.BB];
466 if ((Pop += N) > MaxPop) {
467 MaxPop = Pop;

Completed in 792 milliseconds

1 2 3