OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:SnapshotArray
(Results
1 - 2
of
2
) sorted by null
/external/skia/src/core/
SkBigPicture.h
25
class
SnapshotArray
: ::SkNoncopyable {
27
SnapshotArray
(const SkPicture* pics[], int count) : fPics(pics), fCount(count) {}
28
~
SnapshotArray
() { for (int i = 0; i < fCount; i++) { fPics[i]->unref(); } }
39
SnapshotArray
*, // We take exclusive ownership.
84
SkAutoTDelete<const
SnapshotArray
> fDrawablePicts;
/external/libgdx/gdx/src/com/badlogic/gdx/utils/
SnapshotArray.java
22
* will not be modified until {@link #end()} is called. If modification of the
SnapshotArray
occurs between begin/end, the backing
29
*
SnapshotArray
array = new
SnapshotArray
();
40
public class
SnapshotArray
<T> extends Array<T> {
44
public
SnapshotArray
() {
48
public
SnapshotArray
(Array array) {
52
public
SnapshotArray
(boolean ordered, int capacity, Class arrayType) {
56
public
SnapshotArray
(boolean ordered, int capacity) {
60
public
SnapshotArray
(boolean ordered, T[] array, int startIndex, int count) {
64
public
SnapshotArray
(Class arrayType) {
[
all
...]
Completed in 95 milliseconds