Searched refs:Push (Results 1 - 25 of 332) sorted by relevance

1234567891011>>

/external/pdfium/core/fpdfapi/page/
H A Dcpdf_psengine.cpp136 pEngine->Push(m_Operators[i]->GetFloatValue());
180 void CPDF_PSEngine::Push(float v) { function in class:CPDF_PSEngine
209 Push(d1 + d2);
214 Push(d1 - d2);
219 Push(d1 * d2);
224 Push(d1 / d2);
232 Push(result.ValueOrDefault(0));
234 Push(0);
243 Push(result.ValueOrDefault(0));
245 Push(
[all...]
H A Dcpdf_psfunc.cpp27 PS.Push(inputs[i]);
/external/llvm/lib/Transforms/ObjCARC/
H A DObjCARCAPElim.cpp94 Instruction *Push = nullptr; local
99 Push = Inst;
104 if (Push && cast<CallInst>(Inst)->getArgOperand(0) == Push) {
109 << " Push: " << *Push << "\n"); local
111 Push->eraseFromParent();
113 Push = nullptr;
117 Push = nullptr;
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Collections/
H A DStackList.cs52 public void Push(object item) method in class:Antlr.Runtime.Collections.StackList
/external/clang/test/Preprocessor/
H A D_Pragma-in-macro-arg.c23 #define IGNORE_POPPUSH(Pop, Push, W, D) Push W D Pop
/external/libmojo/mojo/public/cpp/bindings/tests/
H A Dmessage_queue.h26 void Push(Message* message);
H A Dmessage_queue.cc25 void MessageQueue::Push(Message* message) { function in class:mojo::test::MessageQueue
/external/v8/src/ic/x64/
H A Dhandler-compiler-x64.cc29 __ Push(slot);
30 __ Push(vector);
96 __ Push(name);
97 __ Push(receiver);
98 __ Push(holder);
115 __ Push(receiver);
120 __ Push(store_parameter);
225 __ Push(value());
238 __ Push(receiver);
239 __ Push(valu
[all...]
/external/protobuf/src/google/protobuf/util/internal/
H A Dprotostream_objectwriter.cc430 Push("fields", Item::MAP, true, true);
443 Push("struct_value", Item::MESSAGE, true, false);
444 Push("fields", Item::MAP, true, true);
482 Push("", Item::MESSAGE, false, false);
485 Push("value", Item::MESSAGE, true, false);
494 Push("fields", Item::MAP, true, true);
503 Push("struct_value", Item::MESSAGE, true, false);
504 Push("fields", Item::MAP, true, true);
517 Push(name, Item::MESSAGE, false, false);
518 Push("field
1143 void ProtoStreamObjectWriter::Push(StringPiece name, Item::ItemType item_type, function in class:google::protobuf::util::converter::ProtoStreamObjectWriter
[all...]
/external/libmojo/third_party/catapult/devil/devil/android/
H A Ddevice_utils_devicetest.py88 self.adb.Push(host_file_path, device_file_path)
100 self.adb.Push(host_file_path, device_file_path)
118 self.adb.Push(host_file_path, device_file_path)
138 self.adb.Push(host_file_path1, device_file_path1)
139 self.adb.Push(host_file_path2, device_file_path2)
178 self.adb.Push(host_file_path1, device_file_path1)
179 self.adb.Push(host_file_path2, device_file_path2)
180 self.adb.Push(host_file_path3, device_file_path3)
181 self.adb.Push(host_file_path4, device_file_path4)
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DUnbufferedTokenStream.cs115 _realTokens.Push(_realTokens.Peek());
128 _realTokens.Push(null);
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
H A DAntlr.Runtime.Collections.Tests.pas113 FIStackList.Push(Item);
115 FIStackList.Push(Item);
122 FIStackList.Push('Item 1');
123 FIStackList.Push('Item 2');
124 FIStackList.Push('Item 3');
/external/v8/src/compiler-dispatcher/
H A Dcompiler-dispatcher-tracer.cc91 prepare_parse_events_.Push(duration_ms);
97 parse_events_.Push(std::make_pair(source_length, duration_ms));
102 finalize_parsing_events_.Push(duration_ms);
107 analyze_events_.Push(duration_ms);
112 prepare_compile_events_.Push(duration_ms);
118 compile_events_.Push(std::make_pair(ast_size_in_bytes, duration_ms));
123 finalize_compiling_events_.Push(duration_ms);
/external/chromium-trace/catapult/devil/devil/android/
H A Ddevice_utils_devicetest.py89 self.adb.Push(host_file_path, device_file_path)
101 self.adb.Push(host_file_path, device_file_path)
119 self.adb.Push(host_file_path, device_file_path)
139 self.adb.Push(host_file_path1, device_file_path1)
140 self.adb.Push(host_file_path2, device_file_path2)
180 self.adb.Push(host_file_path1, device_file_path1)
181 self.adb.Push(host_file_path2, device_file_path2)
182 self.adb.Push(host_file_path3, device_file_path3)
183 self.adb.Push(host_file_path4, device_file_path4)
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Misc/
H A DListStack`1.cs93 public void Push(T item) method in class:Antlr.Runtime.Misc.ListStack
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DStackExtensions.cs65 stack.Push( obj );
/external/stressapptest/src/
H A Dqueue.h67 // Push a page onto the list.
68 int Push(struct page_entry *pe);
/external/v8/src/base/
H A Dring-buffer.h18 void Push(const T& value) { function in class:v8::base::RingBuffer
/external/webrtc/webrtc/modules/audio_coding/neteq/tools/
H A Dresample_input_audio_file.cc30 RTC_CHECK_EQ(resampler_.Push(temp_destination.get(), samples_to_read,
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
H A DParseTreeBuilder.cs51 callStack.Push(root);
87 callStack.Push(ruleNode);
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
H A DParseTreeBuilder.cs54 callStack.Push( root );
97 callStack.Push( ruleNode );
/external/v8/src/builtins/x64/
H A Dbuiltins-x64.cc51 __ Push(rax);
53 __ Push(rdi);
54 __ Push(rdx);
79 // Push the number of arguments to the callee.
81 __ Push(rax);
82 // Push a copy of the target function and the new target.
83 __ Push(rdi);
84 __ Push(rdx);
86 __ Push(rdi);
137 __ Push(rs
[all...]
/external/webrtc/webrtc/modules/audio_coding/test/
H A Dtarget_delay_unittest.cc142 void Push() { function in class:webrtc::TargetDelayTest
164 Push();
170 Push();
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DCommonTreeNodeStream.cs171 public virtual void Push(int index) { method in class:Antlr.Runtime.Tree.CommonTreeNodeStream
175 _calls.Push(_p); // save current index
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DCommonTreeNodeStream.cs197 public virtual void Push( int index ) method in class:Antlr.Runtime.Tree.CommonTreeNodeStream
203 _calls.Push( _p ); // save current index

Completed in 1383 milliseconds

1234567891011>>