OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mBatches
(Results
1 - 8
of
8
) sorted by null
/frameworks/base/libs/hwui/
DeferredDisplayList.cpp
354
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
.size()
[
all
...]
LayerBuilder.cpp
214
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
.clear()
[
all
...]
LayerBuilder.h
100
return
mBatches
.empty();
121
std::vector<BatchBase*>
mBatches
;
DeferredDisplayList.h
99
bool isEmpty() { return
mBatches
.empty(); }
158
std::vector<Batch*>
mBatches
;
/frameworks/rs/cpu_ref/
rsCpuScriptGroup2.h
76
List<Batch*>
mBatches
;
rsCpuScriptGroup2.cpp
181
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/
InputTransport.cpp
453
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
.size(); i++)
[
all
...]
/frameworks/native/include/input/
InputTransport.h
361
Vector<Batch>
mBatches
;
Completed in 89 milliseconds