OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Reflector
(Results
1 - 8
of
8
) sorted by null
/external/chromium_org/ui/compositor/
reflector.h
12
class COMPOSITOR_EXPORT
Reflector
13
: public base::RefCountedThreadSafe<
Reflector
> {
15
Reflector
() {}
20
friend class base::RefCountedThreadSafe<
Reflector
>;
21
virtual ~
Reflector
() {}
23
DISALLOW_COPY_AND_ASSIGN(
Reflector
);
compositor.h
59
class
Reflector
;
87
// Creates a
reflector
that copies the content of the |mirrored_compositor|
89
virtual scoped_refptr<
Reflector
> CreateReflector(
92
// Removes the
reflector
, which stops the mirroring.
93
virtual void RemoveReflector(scoped_refptr<
Reflector
>
reflector
) = 0;
120
virtual scoped_refptr<
Reflector
> CreateReflector(
123
virtual void RemoveReflector(scoped_refptr<
Reflector
>
reflector
) OVERRIDE;
159
virtual scoped_refptr<
Reflector
> CreateReflector
[
all
...]
compositor.cc
30
#include "ui/compositor/
reflector
.h"
120
scoped_refptr<
Reflector
> DefaultContextFactory::CreateReflector(
127
scoped_refptr<
Reflector
>
reflector
) {
193
scoped_refptr<
Reflector
> TestContextFactory::CreateReflector(
196
return new
Reflector
();
199
void TestContextFactory::RemoveReflector(scoped_refptr<
Reflector
>
reflector
) {
/external/chromium_org/ash/display/
mirror_window_controller.h
25
class
Reflector
;
79
scoped_refptr<ui::
Reflector
> reflector_;
/libcore/luni/src/test/java/libcore/java/net/
OldAndroidDatagramTest.java
40
class
Reflector
extends Thread {
88
public
Reflector
(int port, InetAddress address) {
94
"Creating datagram
reflector
failed", ex);
120
Reflector
reflector
= null;
local
124
// Setup the
reflector
, so we have a partner to send to
125
reflector
= new
Reflector
(1234, InetAddress.getLocalHost());
126
reflector
.start();
157
if (
reflector
!= null)
[
all
...]
/external/chromium_org/content/browser/aura/
gpu_process_transport_factory.h
43
virtual scoped_refptr<ui::
Reflector
> CreateReflector(
47
scoped_refptr<ui::
Reflector
>
reflector
) OVERRIDE;
reflector_impl.h
12
#include "ui/compositor/
reflector
.h"
28
// A
reflector
implementation that copies the framebuffer content
32
public ui::
Reflector
{
52
// ui::
Reflector
implementation.
74
// called before the
reflector
is attached to OutputSurface to avoid
95
static void DeleteOnMainThread(scoped_refptr<ReflectorImpl>
reflector
) {}
98
// the
reflector
is attached to the output surface. Once
gpu_process_transport_factory.cc
50
scoped_refptr<ReflectorImpl>
reflector
;
member in struct:content::GpuProcessTransportFactory::PerCompositorData
263
if (data->
reflector
.get()) {
264
data->
reflector
->CreateSharedTexture();
265
data->
reflector
->AttachToOutputSurface(surface.get());
271
scoped_refptr<ui::
Reflector
> GpuProcessTransportFactory::CreateReflector(
277
if (data->
reflector
.get())
278
RemoveObserver(data->
reflector
.get());
280
data->
reflector
= new ReflectorImpl(
282
AddObserver(data->
reflector
.get());
283
return data->
reflector
;
[
all
...]
Completed in 84 milliseconds