HomeSort by relevance Sort by last modified time
    Searched refs:LayerType (Results 1 - 25 of 37) sorted by null

1 2

  /external/chromium_org/ui/compositor/
layer_type.h 10 enum LayerType {
layer.h 68 explicit Layer(LayerType type);
110 LayerType type() const { return type_; }
405 const LayerType type_;
layer_unittest.cc 102 Layer* CreateLayer(LayerType type) {
364 virtual Layer* CreateLayer(LayerType type) {
570 virtual Layer* CreateLayer(LayerType type) OVERRIDE {
    [all...]
layer.cc 70 Layer::Layer(LayerType type)
  /external/chromium_org/cc/test/
occlusion_tracker_test_common.h 15 template <typename LayerType, typename RenderSurfaceType>
17 : public OcclusionTrackerBase<LayerType, RenderSurfaceType> {
21 : OcclusionTrackerBase<LayerType, RenderSurfaceType>(
26 return OcclusionTrackerBase<LayerType, RenderSurfaceType>::stack_.back().
30 return OcclusionTrackerBase<LayerType, RenderSurfaceType>::stack_.back().
35 OcclusionTrackerBase<LayerType, RenderSurfaceType>::stack_.back().
39 OcclusionTrackerBase<LayerType, RenderSurfaceType>::stack_.back().
  /external/chromium_org/cc/layers/
layer_iterator.h 101 template <typename LayerType> struct LayerIteratorPosition {
105 LayerType* target_render_surface_layer;
106 LayerType* current_layer;
111 template <typename LayerType,
116 typedef LayerIterator<LayerType,
144 LayerType* operator->() const { return current_layer(); }
145 LayerType* operator*() const { return current_layer(); }
159 LayerType* target_render_surface_layer() const {
163 operator const LayerIteratorPosition<LayerType>() const {
164 LayerIteratorPosition<LayerType> position
    [all...]
layer_iterator.cc 16 template <typename LayerType,
21 LayerIterator<LayerType, LayerList, RenderSurfaceType, ActionType>* it) {
29 template <typename LayerType,
34 LayerIterator<LayerType, LayerList, RenderSurfaceType, ActionType>* it) {
40 template <typename LayerType,
45 LayerIterator<LayerType, LayerList, RenderSurfaceType, ActionType>* it) {
91 template <typename LayerType,
96 LayerIterator<LayerType, LayerList, RenderSurfaceType, ActionType>* it) {
102 template <typename LayerType,
107 LayerIterator<LayerType, LayerList, RenderSurfaceType, ActionType>* it)
    [all...]
draw_properties.h 16 template <typename LayerType, typename RenderSurfaceType>
41 // DrawProperties::opacity may be different than LayerType::opacity,
64 LayerType* render_target;
  /external/chromium_org/cc/trees/
layer_tree_host_common.h 31 template <typename LayerType, typename RenderSurfaceLayerListType>
34 CalcDrawPropsInputs(LayerType* root_layer,
39 LayerType* page_scale_application_layer,
59 LayerType* root_layer;
64 LayerType* page_scale_application_layer;
73 template <typename LayerType, typename RenderSurfaceLayerListType>
75 : public CalcDrawPropsInputs<LayerType, RenderSurfaceLayerListType> {
77 LayerType* root_layer,
82 LayerType* root_layer,
113 template <typename LayerType>
    [all...]
occlusion_tracker.h 32 template <typename LayerType, typename RenderSurfaceType>
42 void EnterLayer(const LayerIteratorPosition<LayerType>& layer_iterator,
46 void LeaveLayer(const LayerIteratorPosition<LayerType>& layer_iterator);
53 bool Occluded(const LayerType* render_target,
67 const LayerType* render_target,
79 const LayerType* layer,
113 explicit StackObject(const LayerType* target) : target(target) {}
114 const LayerType* target;
139 void EnterRenderTarget(const LayerType* new_target);
144 void FinishedRenderTarget(const LayerType* finished_target)
    [all...]
occlusion_tracker.cc 20 template <typename LayerType, typename RenderSurfaceType>
21 OcclusionTrackerBase<LayerType, RenderSurfaceType>::OcclusionTrackerBase(
29 template <typename LayerType, typename RenderSurfaceType>
30 OcclusionTrackerBase<LayerType, RenderSurfaceType>::~OcclusionTrackerBase() {}
32 template <typename LayerType, typename RenderSurfaceType>
33 void OcclusionTrackerBase<LayerType, RenderSurfaceType>::EnterLayer(
34 const LayerIteratorPosition<LayerType>& layer_iterator,
36 LayerType* render_target = layer_iterator.target_render_surface_layer;
46 template <typename LayerType, typename RenderSurfaceType>
47 void OcclusionTrackerBase<LayerType, RenderSurfaceType>::LeaveLayer
    [all...]
tree_synchronizer.h 45 template <typename LayerType>
47 LayerType* layer,
tree_synchronizer.cc 40 template <typename LayerType>
42 LayerType* layer_root,
77 template <typename LayerType>
80 LayerType* layer,
91 template <typename LayerType>
95 LayerType* layer,
140 template <typename LayerType, typename ScrollbarLayerType>
143 LayerType* layer) {
149 LayerType, ScrollbarLayerType>(new_layers, layer->child_at(i));
198 template <typename LayerType>
    [all...]
quad_culler.h 15 template <typename LayerType, typename SurfaceType> class OcclusionTrackerBase;
occlusion_tracker_unittest.cc 82 template <typename LayerType, typename RenderSurfaceType>
84 : public TestOcclusionTrackerBase<LayerType, RenderSurfaceType> {
88 : TestOcclusionTrackerBase<LayerType, RenderSurfaceType>(
92 : TestOcclusionTrackerBase<LayerType, RenderSurfaceType>(viewport_rect,
95 bool OccludedLayer(const LayerType* layer, gfx::Rect content_rect) {
100 bool OccludedLayer(const LayerType* layer,
113 gfx::Rect UnoccludedLayerContentRect(const LayerType* layer,
120 const LayerType* layer,
135 typedef Layer LayerType;
168 typedef LayerImpl LayerType;
    [all...]
layer_tree_host_common.cc 91 template <typename LayerType> static inline bool IsRootLayer(LayerType* layer) {
95 template <typename LayerType>
96 static inline bool LayerIsInExisting3DRenderingContext(LayerType* layer) {
103 template <typename LayerType>
104 static bool IsRootLayerOfNewRenderingContext(LayerType* layer) {
114 template <typename LayerType>
115 static bool IsLayerBackFaceVisible(LayerType* layer) {
129 template <typename LayerType>
130 static bool IsSurfaceBackFaceVisible(LayerType* layer
    [all...]
layer_tree_host_common_unittest.cc 37 template <typename LayerType>
39 LayerType* layer,
137 template <class LayerType>
138 void ExecuteCalculateDrawProperties(LayerType* root_layer) {
139 LayerType* page_scale_application_layer = NULL;
144 template <class LayerType>
145 void ExecuteCalculateDrawProperties(LayerType* root_layer,
147 LayerType* page_scale_application_layer = NULL;
155 template <class LayerType>
156 void ExecuteCalculateDrawProperties(LayerType* root_layer
    [all...]
  /external/apache-http/src/org/apache/http/conn/routing/
RouteInfo.java 75 public enum LayerType { PLAIN, LAYERED }
168 LayerType getLayerType()
HttpRoute.java 69 private final LayerType layered;
98 TunnelType tunnelled, LayerType layered) {
112 layered = LayerType.PLAIN;
137 boolean secure, TunnelType tunnelled, LayerType layered) {
160 boolean secure, TunnelType tunnelled, LayerType layered) {
176 this(local, target, null, secure, TunnelType.PLAIN, LayerType.PLAIN);
186 this(null, target, null, false, TunnelType.PLAIN, LayerType.PLAIN);
207 secure ? LayerType.LAYERED : LayerType.PLAIN);
315 public final LayerType getLayerType()
    [all...]
RouteTracker.java 74 private LayerType layered;
95 this.layered = LayerType.PLAIN;
208 this.layered = LayerType.LAYERED;
286 public final LayerType getLayerType() {
293 return (this.layered == LayerType.LAYERED);
414 if (this.layered == LayerType.LAYERED)
  /external/chromium_org/ui/aura/
window.h 71 void Init(ui::LayerType layer_type);
window.cc 139 void Window::Init(ui::LayerType layer_type) {
    [all...]
  /external/chromium_org/ui/views/widget/
widget.h 211 ui::LayerType layer_type;
    [all...]
  /external/robolectric/lib/main/
httpclient-4.0.3.jar 
  /external/smack/asmack-master/lib/
httpclient-4.1.3.jar 

Completed in 261 milliseconds

1 2