Searched refs:mBatches (Results 1 - 8 of 8) sorted by relevance

/frameworks/base/libs/hwui/
H A DDeferredDisplayList.cpp354 if (mBatches.size() != 0) {
355 mBatches.add(new BarrierDebugBatch());
358 mEarliestBatchIndex = mBatches.size();
365 for (unsigned int i = 0; i < mBatches.size(); i++) {
366 delete mBatches[i];
368 mBatches.clear();
505 if (CC_LIKELY(avoidOverdraw()) && mBatches.size() &&
509 discardDrawingBatches(mBatches.size() - 1);
517 mBatches.push_back(b);
526 int insertBatchIndex = mBatches
[all...]
H A DLayerBuilder.cpp214 for (int i = mBatches.size() - 1; i >= 0; i--) {
215 BatchBase* overBatch = mBatches[i];
292 size_t insertBatchIndex = mBatches.size();
304 mBatches.insert(mBatches.begin() + insertBatchIndex, targetBatch);
322 size_t insertBatchIndex = mBatches.size();
333 mBatches.insert(mBatches.begin() + insertBatchIndex, targetBatch);
346 for (const BatchBase* batch : mBatches) {
368 mBatches
[all...]
H A DLayerBuilder.h100 return mBatches.empty();
121 std::vector<BatchBase*> mBatches; member in class:android::uirenderer::LayerBuilder
H A DDeferredDisplayList.h99 bool isEmpty() { return mBatches.empty(); }
158 std::vector<Batch*> mBatches; member in class:android::uirenderer::DeferredDisplayList
/frameworks/rs/cpu_ref/
H A DrsCpuScriptGroup2.h76 List<Batch*> mBatches; member in class:android::renderscript::CpuScriptGroup2Impl
H A DrsCpuScriptGroup2.cpp181 mBatches.push_back(batch);
191 mBatches.push_back(batch);
196 for (Batch* batch : mBatches) {
214 for (Batch* batch : mBatches) {
365 for (const auto& batch : mBatches) {
514 for (auto batch : mBatches) {
/frameworks/native/libs/input/
H A DInputTransport.cpp453 Batch& batch = mBatches.editItemAt(batchIndex);
467 mBatches.removeAt(batchIndex);
483 mBatches.push();
484 Batch& batch = mBatches.editTop();
519 for (size_t i = mBatches.size(); i > 0; ) {
521 Batch& batch = mBatches.editItemAt(i);
525 mBatches.removeAt(i);
541 mBatches.removeAt(i);
876 return !mBatches.isEmpty();
880 for (size_t i = 0; i < mBatches
[all...]
/frameworks/native/include/input/
H A DInputTransport.h361 Vector<Batch> mBatches; member in class:android::InputConsumer

Completed in 445 milliseconds