OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Backing
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/cc/resources/
prioritized_resource.cc
95
void PrioritizedResource::Link(
Backing
*
backing
) {
96
DCHECK(
backing
);
97
DCHECK(!
backing
->owner_);
100
backing_ =
backing
;
118
PrioritizedResource::
Backing
::
Backing
(unsigned id,
135
PrioritizedResource::
Backing
::~
Backing
() {
140
void PrioritizedResource::
Backing
::DeleteResource
[
all
...]
prioritized_resource.h
39
// Texture properties. Changing these causes the
backing
texture to be lost.
57
// This returns whether we still have a
backing
texture. This can continue
61
bool have_backing_texture() const { return !!
backing
(); }
66
// a
backing
texture for use. Call this whenever the texture is actually
78
// Update pixels of
backing
resource from image. This functions will aquire
79
// the
backing
if needed.
106
class
Backing
: public Resource {
108
Backing
(unsigned id,
112
~
Backing
();
149
DISALLOW_COPY_AND_ASSIGN(
Backing
);
164
Backing*
backing
() const { return
backing
_; }
function in class:cc::PrioritizedResource
[
all
...]
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
BackingStore.java
60
private Vector<
Backing
> mBackings = new Vector<
Backing
>();
67
/** The most up-to-date data
backing
*/
68
private
Backing
mCurrentBacking = null;
70
/** The currently locked
backing
*/
71
private
Backing
mLockedBacking = null;
88
public
Backing
lockBacking(int mode, int access) {
89
Backing
backing
= fetchBacking(mode, access);
local
90
if (
backing
== null)
187
Backing
backing
= getBacking(mode, access);
local
204
final Backing
backing
= mBackings.get(i);
local
216
Backing
backing
= createBacking(mode, access);
local
226
Backing
backing
= null;
local
309
final Backing
backing
= mBackings.get(i);
local
[
all
...]
Completed in 44 milliseconds