/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/java/src/org/webrtc/ |
VideoTrack.java | 34 private final LinkedList<VideoRenderer> renderers = field in class:VideoTrack 42 renderers.add(renderer); 47 if (!renderers.remove(renderer)) { 55 while (!renderers.isEmpty()) { 56 removeRenderer(renderers.getFirst());
|
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/ |
RTCVideoTrack.mm | 50 NSAssert1(![self.renderers containsObject:renderer], 51 @"renderers already contains object [%@]", 58 NSUInteger index = [self.renderers indexOfObjectIdenticalTo:renderer]; 65 - (NSArray *)renderers {
|
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/public/ |
RTCVideoTrack.h | 35 // The currently registered renderers. 36 @property(nonatomic, strong, readonly) NSArray *renderers; variable
|
/external/chromium/chrome/browser/renderer_host/ |
web_cache_manager.h | 43 // freeing the manager to assign its cache resources to other renderers. 55 // Periodically, renderers should inform the cache manager of their current 100 // Recomputes the allocation of cache resources among the renderers. Also 101 // informs the renderers of their new allocation. 138 // Add up all the stats from the given set of renderers and place the result 140 void GatherStats(const std::set<int>& renderers, 162 // For each renderer in |renderers|, computes its allocation according to 164 // is divided evenly among the renderers. 165 void AddToStrategy(const std::set<int>& renderers, 170 // Enact an allocation strategy by informing the renderers of thei [all...] |
web_cache_manager.cc | 165 void WebCacheManager::GatherStats(const std::set<int>& renderers, 171 std::set<int>::const_iterator iter = renderers.begin(); 172 while (iter != renderers.end()) { 229 // renderers. 232 // The inactive renderers get one share of the extra memory to be divided 240 // The remaining memory is allocated to the active renderers. 251 void WebCacheManager::AddToStrategy(const std::set<int>& renderers, 257 // Nothing to do if there are no renderers. It is common for there to be no 258 // inactive renderers if there is a single active tab. 259 if (renderers.empty() [all...] |
web_cache_manager_unittest.cc | 50 std::set<int> renderers, 52 h->GatherStats(renderers, stats); 73 std::set<int> renderers, 77 h->AddToStrategy(renderers,
|
/external/chromium_org/chrome/browser/renderer_host/ |
web_cache_manager.h | 45 // freeing the manager to assign its cache resources to other renderers. 57 // Periodically, renderers should inform the cache manager of their current 111 // Recomputes the allocation of cache resources among the renderers. Also 112 // informs the renderers of their new allocation. 149 // Add up all the stats from the given set of renderers and place the result 151 void GatherStats(const std::set<int>& renderers, 173 // For each renderer in |renderers|, computes its allocation according to 175 // is divided evenly among the renderers. 176 void AddToStrategy(const std::set<int>& renderers, 181 // Enact an allocation strategy by informing the renderers of thei [all...] |
web_cache_manager.cc | 197 void WebCacheManager::GatherStats(const std::set<int>& renderers, 203 std::set<int>::const_iterator iter = renderers.begin(); 204 while (iter != renderers.end()) { 261 // renderers. 264 // The inactive renderers get one share of the extra memory to be divided 272 // The remaining memory is allocated to the active renderers. 283 void WebCacheManager::AddToStrategy(const std::set<int>& renderers, 289 // Nothing to do if there are no renderers. It is common for there to be no 290 // inactive renderers if there is a single active tab. 291 if (renderers.empty() [all...] |
web_cache_manager_unittest.cc | 51 std::set<int> renderers, 53 h->GatherStats(renderers, stats); 74 std::set<int> renderers, 78 h->AddToStrategy(renderers,
|
/external/chromium/chrome/browser/ui/views/tabs/ |
dragged_tab_view.h | 21 // Creates a new DraggedTabView using |renderers| as the Views. DraggedTabView 22 // takes ownership of the views in |renderers| and |photobooth|. 23 DraggedTabView(const std::vector<views::View*>& renderers, 66 // Bounds of the renderers.
|
dragged_tab_view.cc | 29 DraggedTabView::DraggedTabView(const std::vector<views::View*>& renderers, 34 : renderers_(renderers),
|
dragged_tab_controller.cc | 1351 std::vector<views::View*> renderers; local [all...] |
/external/chromium_org/chrome/browser/ui/views/tabs/ |
dragged_tab_view.h | 20 // Creates a new DraggedTabView using |renderers| as the Views. DraggedTabView 21 // takes ownership of the views in |renderers| and |photobooth|. 22 DraggedTabView(const std::vector<views::View*>& renderers, 65 // Bounds of the renderers.
|
dragged_tab_view.cc | 29 DraggedTabView::DraggedTabView(const std::vector<views::View*>& renderers, 34 : renderers_(renderers),
|
tab_drag_controller.cc | 2054 std::vector<views::View*> renderers; local [all...] |
/external/chromium_org/chrome/renderer/resources/extensions/ |
unload_event.js | 7 // Chrome will terminate renderers on shutdown (SuddenTermination).
|
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/javatests/src/org/webrtc/ |
PeerConnectionTest.java | 78 private Map<MediaStream, WeakReference<VideoRenderer>> renderers = field in class:PeerConnectionTest.ObserverExpectations 209 assertNull(renderers.put( 220 WeakReference<VideoRenderer> renderer = renderers.remove(stream);
|
/external/chromium_org/third_party/freetype/src/base/ |
ftobjs.c | [all...] |
ftoutln.c | 619 node = library->renderers.head;
|
/external/freetype/src/base/ |
ftobjs.c | [all...] |
ftoutln.c | 619 node = library->renderers.head;
|
/external/chromium_org/third_party/freetype/include/freetype/internal/ |
ftobjs.h | 865 FT_ListRec renderers; \/* list of renderers *\/ member in struct:FT_LibraryRec_ [all...] |
/external/freetype/include/freetype/internal/ |
ftobjs.h | 865 FT_ListRec renderers; \/* list of renderers *\/ member in struct:FT_LibraryRec_ [all...] |
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/ |
webrtcsession_unittest.cc | [all...] |
/external/chromium_org/third_party/libjingle/source/talk/media/base/ |
fakemediaengine.h | 457 const std::map<uint32, VideoRenderer*>& renderers() const { function in class:cricket::FakeVideoMediaChannel [all...] |