HomeSort by relevance Sort by last modified time
    Searched defs:Shelf (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/ash/shelf/
shelf.h 9 #include "ash/shelf/shelf_constants.h"
10 #include "ash/shelf/shelf_types.h"
46 class ASH_EXPORT Shelf {
50 Shelf(ShelfModel* model, ShelfDelegate* delegate, ShelfWidget* widget);
51 virtual ~Shelf();
53 // Return the shelf for the primary display. NULL if no user is logged in yet.
54 static Shelf* ForPrimaryDisplay();
56 // Return the shelf for the display that |window| is currently on, or a shelf
57 // on primary display if the shelf per display feature is disabled. NULL i
    [all...]
shelf.cc 5 #include "ash/shelf/shelf.h"
13 #include "ash/shelf/shelf_delegate.h"
14 #include "ash/shelf/shelf_item_delegate.h"
15 #include "ash/shelf/shelf_item_delegate_manager.h"
16 #include "ash/shelf/shelf_layout_manager.h"
17 #include "ash/shelf/shelf_model.h"
18 #include "ash/shelf/shelf_navigator.h"
19 #include "ash/shelf/shelf_util.h"
20 #include "ash/shelf/shelf_view.h
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
shelve.py 3 A "shelf" is a persistent, dictionary-like object. The difference
4 with dbm databases is that the values (not the keys!) in a shelf can
73 __all__ = ["Shelf","BsdDbShelf","DbfilenameShelf","open"]
79 raise ValueError('invalid operation on closed shelf')
85 class Shelf(UserDict.DictMixin):
86 """Base class for shelf implementations.
172 class BsdDbShelf(Shelf):
173 """Shelf implementation using the "BSD" db interface.
186 Shelf.__init__(self, dict, protocol, writeback)
214 class DbfilenameShelf(Shelf)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
shelve.py 3 A "shelf" is a persistent, dictionary-like object. The difference
4 with dbm databases is that the values (not the keys!) in a shelf can
73 __all__ = ["Shelf","BsdDbShelf","DbfilenameShelf","open"]
79 raise ValueError('invalid operation on closed shelf')
85 class Shelf(UserDict.DictMixin):
86 """Base class for shelf implementations.
172 class BsdDbShelf(Shelf):
173 """Shelf implementation using the "BSD" db interface.
186 Shelf.__init__(self, dict, protocol, writeback)
214 class DbfilenameShelf(Shelf)
    [all...]

Completed in 121 milliseconds