Home
last modified time | relevance | path

Searched refs:Pop (Results 1 – 25 of 211) sorted by relevance

123456789

/external/pdfium/core/src/fpdfapi/fpdf_page/
Dfpdf_page_func.cpp84 FX_FLOAT Pop();
117 if ((int)pEngine->Pop()) { in Execute()
125 if ((int)pEngine->Pop()) { in Execute()
146 FX_FLOAT CPDF_PSEngine::Pop() { in Pop() function in CPDF_PSEngine
225 d1 = Pop(); in DoOperator()
226 d2 = Pop(); in DoOperator()
230 d2 = Pop(); in DoOperator()
231 d1 = Pop(); in DoOperator()
235 d1 = Pop(); in DoOperator()
236 d2 = Pop(); in DoOperator()
[all …]
/external/vulkan-validation-layers/tests/gtest-1.7.0/scripts/
Dpump.py476 def Pop(token_type=None): function
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): function
[all …]
/external/google-breakpad/src/testing/gtest/scripts/
Dpump.py476 def Pop(token_type=None): function
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): function
[all …]
/external/protobuf/gtest/scripts/
Dpump.py467 def Pop(token_type=None): function
474 Pop('$else')
475 Pop('[[')
477 Pop(']]')
480 Pop('$elif')
481 exp = Pop('code')
482 Pop('[[')
484 Pop(']]')
488 Pop('code')
495 def Pop(token_type=None): function
[all …]
/external/v8/src/compiler/
Dast-graph-builder.cc946 return environment()->Pop(); in ConsumeValue()
951 return environment()->Pop(); in ConsumeValue()
1114 Node* value = environment()->Pop(); in VisitFunctionDeclaration()
1120 Node* value = environment()->Pop(); in VisitFunctionDeclaration()
1183 Node* condition = environment()->Pop(); in VisitIfStatement()
1205 Node* result = environment()->Pop(); in VisitReturnStatement()
1212 Node* value = environment()->Pop(); in VisitWithStatement()
1244 Node* label = environment()->Pop(); in VisitSwitchStatement()
1251 environment()->Pop(); in VisitSwitchStatement()
1256 environment()->Pop(); in VisitSwitchStatement()
[all …]
Dcontrol-builders.cc182 environment()->Pop(); in Throw()
189 exception_node_ = catch_environment_->Pop(); in EndTry()
220 token_node_ = finally_environment_->Pop(); in EndTry()
221 value_node_ = finally_environment_->Pop(); in EndTry()
Dgraph-reducer.cc114 if (node->IsDead()) return Pop(); // Node was killed while on stack. in ReduceTop()
136 if (!reduction.Changed()) return Pop(); in ReduceTop()
150 Pop(); in ReduceTop()
240 void GraphReducer::Pop() { in Pop() function in v8::internal::compiler::GraphReducer
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
DAntlr.Runtime.Collections.Tests.pas116 CheckEquals(FIStackList.Pop,'Item 2');
117 CheckEquals(FIStackList.Pop,'Item 1');
125 FIStackList.Pop;
127 CheckEquals(FIStackList.Pop, 'Item 2');
/external/webrtc/webrtc/modules/video_coding/
Dgeneric_decoder.cc58 frameInfo = _timestampMap.Pop(decodedImage.timestamp()); in Decoded()
116 int32_t VCMDecodedFrameCallback::Pop(uint32_t timestamp) { in Pop() function in webrtc::VCMDecodedFrameCallback
118 if (_timestampMap.Pop(timestamp) == NULL) { in Pop()
160 _callback->Pop(frame.TimeStamp()); in Decode()
165 _callback->Pop(frame.TimeStamp()); in Decode()
/external/google-breakpad/src/testing/test/
Dgmock-generated-function-mockers_test.cc349 virtual void Pop() = 0;
361 MOCK_METHOD0_T(Pop, void());
381 EXPECT_CALL(mock, Pop()) in TEST()
388 mock.Pop(); in TEST()
402 STDMETHOD_(void, Pop)() = 0;
414 MOCK_METHOD0_T_WITH_CALLTYPE(STDMETHODCALLTYPE, Pop, void());
434 EXPECT_CALL(mock, Pop()) in TEST()
441 mock.Pop(); in TEST()
/external/gmock/test/
Dgmock-generated-function-mockers_test.cc380 virtual void Pop() = 0;
392 MOCK_METHOD0_T(Pop, void());
416 EXPECT_CALL(mock, Pop()) in TEST()
423 mock.Pop(); in TEST()
450 STDMETHOD_(void, Pop)() = 0;
462 MOCK_METHOD0_T_WITH_CALLTYPE(STDMETHODCALLTYPE, Pop, void());
482 EXPECT_CALL(mock, Pop()) in TEST()
489 mock.Pop(); in TEST()
/external/v8/src/crankshaft/
Dhydrogen.cc1098 body_env->Pop(); in BeginBody()
1099 exit_env->Pop(); in BeginBody()
1104 env->Pop(); in BeginBody()
1385 return environment()->Pop(); in BuildCheckForCapacityGrow()
1413 return environment()->Pop(); in BuildCopyElementsOnWrite()
1699 count = Pop(); in BuildUncheckedDictionaryElementLoad()
1700 entry = Pop(); in BuildUncheckedDictionaryElementLoad()
1811 return Pop(); in BuildUncheckedDictionaryElementLoad()
2037 HValue* key_index = Pop(); in BuildNumberToString()
2052 return Pop(); in BuildNumberToString()
[all …]
/external/clang/test/Preprocessor/
D_Pragma-in-macro-arg.c23 #define IGNORE_POPPUSH(Pop, Push, W, D) Push W D Pop argument
/external/pdfium/xfa/src/fgas/src/xml/
Dfx_sax_imp.cpp130 inline void CFX_SAXReader::Pop() { in Pop() function in CFX_SAXReader
349 Pop(); in ParseNodeStart()
391 Pop(); in ParseCommentContent()
527 Pop(); in ParseTagClose()
534 Pop(); in ParseTagEnd()
541 Pop(); in ParseTagEnd()
600 Pop(); in SkipNode()
611 Pop(); in SkipNode()
/external/pdfium/xfa/src/fxfa/src/common/
Dxfa_utils.h52 revStack.Pop(); in SetCurrent()
67 m_NodeStack.Pop(); in MoveToPrev()
118 m_NodeStack.Pop(); in MoveToNext()
134 m_NodeStack.Pop(); in SkipChildrenAndMoveToNext()
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
DStackExtensions.cs59 return stack.Pop(); in pop()
81 stack.Pop(); in setSize()
/external/v8/src/debug/x64/
Ddebug-x64.cc85 if (mode == SAVE_RESULT_REGISTER) __ Pop(rax); in GenerateDebugBreakStub() local
88 __ Pop(kScratchRegister); in GenerateDebugBreakStub() local
113 __ Pop(rdi); // Function. in GenerateFrameDropperLiveEdit() local
/external/v8/src/x64/
Dcode-stubs-x64.h249 masm->Pop(object_); in Restore()
253 masm->Pop(address_); in Restore()
255 masm->Pop(scratch1_); in Restore()
259 masm->Pop(rcx); in Restore()
261 if (!scratch0_.is(scratch0_orig_)) masm->Pop(scratch0_); in Restore()
Dbuiltins-x64.cc79 __ Pop(rdx); in CallRuntimePassFunction() local
80 __ Pop(rdi); in CallRuntimePassFunction() local
222 __ Pop(rsi); // Restore allocation count value before decreasing. in Generate_JSConstructStubHelper() local
235 __ Pop(rbx); in Generate_JSConstructStubHelper() local
236 __ Pop(rdx); in Generate_JSConstructStubHelper() local
237 __ Pop(rdi); in Generate_JSConstructStubHelper() local
273 __ Pop(rdx); in Generate_JSConstructStubHelper() local
274 __ Pop(rdi); in Generate_JSConstructStubHelper() local
662 __ Pop(kInterpreterBytecodeArrayRegister); in Generate_InterpreterEntryTrampoline() local
805 __ Pop(kInterpreterAccumulatorRegister); // Restore accumulator register. in Generate_InterpreterNotifyDeoptimizedHelper() local
[all …]
/external/pdfium/xfa/src/fdp/src/fde/
Dfde_iterator.cpp33 m_CanvasStack.Pop(); in FilterObjects()
57 m_CanvasStack.Pop(); in GetNext()
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
DCommonTreeNodeStream.cs182 public virtual int Pop() { in Pop() method in Antlr.Runtime.Tree.CommonTreeNodeStream
183 int ret = _calls.Pop(); in Pop()
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
DCommonTreeNodeStream.cs210 public virtual int Pop() in Pop() method in Antlr.Runtime.Tree.CommonTreeNodeStream
212 int ret = _calls.Pop(); in Pop()
/external/gemmlowp/profiling/
Dinstrumentation.h134 void Pop() { in Pop() function
217 ~ScopedProfilingLabel() { profiling_stack_->Pop(); } in ~ScopedProfilingLabel()
/external/vulkan-validation-layers/windowsRuntimeInstaller/
DInstallerRT.nsi113 Pop ${output}
151 Pop $R9
152 Pop $R8
153 Pop $R7
154 Pop $R6
155 Pop $R5
156 Pop $R4
157 Pop $R3
160 Pop $R0
161 Pop $R1
[all …]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime.Tests/
DITreeNodeStreamFixture.cs413 stream.Pop(); in testPushPop()
468 stream.Pop(); in testNestedPushPop()
472 stream.Pop(); in testNestedPushPop()
515 stream.Pop(); in testPushPopFromEOF()
528 stream.Pop(); in testPushPopFromEOF()
543 Assert.AreEqual(10, stream.Pop()); in testStackStretch()
544 Assert.AreEqual(9, stream.Pop()); in testStackStretch()

123456789