HomeSort by relevance Sort by last modified time
    Searched refs:tmpStorage (Results 1 - 5 of 5) sorted by null

  /art/test/913-heaps/src/art/
Test913.java 359 ArrayList<Object> tmpStorage = new ArrayList<>();
360 doFollowReferencesTestNonRoot(tmpStorage);
361 tmpStorage = null;
375 private void doFollowReferencesTestNonRoot(ArrayList<Object> tmpStorage) {
379 tmpStorage.add(a);
380 v.add("0@0", "1@1000"); // tmpStorage[0] --(array-element)--> a.
385 tmpStorage.clear();
  /external/skia/include/core/
SkRegion.h 429 * is empty or a rect. In those 2 cases, we use tmpStorage to hold the
432 const RunType* getRuns(RunType tmpStorage[], int* intervals) const;
  /external/skqp/include/core/
SkRegion.h 429 * is empty or a rect. In those 2 cases, we use tmpStorage to hold the
432 const RunType* getRuns(RunType tmpStorage[], int* intervals) const;
  /external/skia/src/core/
SkRegion.cpp 416 const SkRegion::RunType* SkRegion::getRuns(RunType tmpStorage[],
418 SkASSERT(tmpStorage && intervals);
419 const RunType* runs = tmpStorage;
422 tmpStorage[0] = kRunTypeSentinel;
425 BuildRectRuns(fBounds, tmpStorage);
    [all...]
  /external/skqp/src/core/
SkRegion.cpp 416 const SkRegion::RunType* SkRegion::getRuns(RunType tmpStorage[],
418 SkASSERT(tmpStorage && intervals);
419 const RunType* runs = tmpStorage;
422 tmpStorage[0] = kRunTypeSentinel;
425 BuildRectRuns(fBounds, tmpStorage);
    [all...]

Completed in 1372 milliseconds