HomeSort by relevance Sort by last modified time
    Searched full:directoryentry (Results 1 - 25 of 134) sorted by null

1 2 3 4 5 6

  /development/samples/HoneycombGallery/src/com/example/android/hcgallery/
Directory.java 24 new DirectoryCategory("Balloons", new DirectoryEntry[] {
25 new DirectoryEntry("Red Balloon", R.drawable.red_balloon),
26 new DirectoryEntry("Green Balloon", R.drawable.green_balloon),
27 new DirectoryEntry("Blue Balloon", R.drawable.blue_balloon)}),
28 new DirectoryCategory("Bikes", new DirectoryEntry[] {
29 new DirectoryEntry("Old school huffy", R.drawable.blue_bike),
30 new DirectoryEntry("New Bikes", R.drawable.rainbow_bike),
31 new DirectoryEntry("Chrome Fast", R.drawable.chrome_wheel)}),
32 new DirectoryCategory("Androids", new DirectoryEntry[] {
33 new DirectoryEntry("Steampunk Android", R.drawable.punk_droid)
    [all...]
DirectoryCategory.java 21 private DirectoryEntry[] entries;
23 public DirectoryCategory(String name, DirectoryEntry[] entries) {
36 public DirectoryEntry getEntry(int i) {
DirectoryEntry.java 24 public class DirectoryEntry {
28 public DirectoryEntry(String name, int resID) {
  /external/chromium_org/ppapi/cpp/
directory_entry.h 22 /// The <code>DirectoryEntry</code> class represents information about
24 class DirectoryEntry {
26 /// Default constructor for creating an is_null() <code>DirectoryEntry</code>
28 DirectoryEntry();
35 DirectoryEntry(PassRef, const PP_DirectoryEntry& data);
37 /// A copy constructor for <code>DirectoryEntry</code>. This constructor
39 /// DirectoryEntry.
41 /// @param[in] other A pointer to a <code>DirectoryEntry</code>.
42 DirectoryEntry(const DirectoryEntry& other)
    [all...]
directory_entry.cc 14 DirectoryEntry::DirectoryEntry() {
18 DirectoryEntry::DirectoryEntry(
24 DirectoryEntry::DirectoryEntry(const DirectoryEntry& other) {
31 DirectoryEntry::~DirectoryEntry() {
36 DirectoryEntry& DirectoryEntry::operator=
    [all...]
  /external/chromium_org/webkit/common/fileapi/
directory_entry.cc 9 DirectoryEntry::DirectoryEntry() : is_directory(false), size(0) {}
11 DirectoryEntry::DirectoryEntry(const std::string& name,
directory_entry.h 18 struct WEBKIT_STORAGE_COMMON_EXPORT DirectoryEntry {
24 DirectoryEntry();
25 DirectoryEntry(const std::string& name,
  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
DirectoryEntry.cpp 32 #include "modules/filesystem/DirectoryEntry.h"
42 DirectoryEntry::DirectoryEntry(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath)
48 PassRefPtr<DirectoryReader> DirectoryEntry::createReader()
53 void DirectoryEntry::getFile(const String& path, const Dictionary& options, PassOwnPtr<EntryCallback> successCallback, PassOwnPtr<ErrorCallback> errorCallback)
59 void DirectoryEntry::getDirectory(const String& path, const Dictionary& options, PassOwnPtr<EntryCallback> successCallback, PassOwnPtr<ErrorCallback> errorCallback)
65 void DirectoryEntry::removeRecursively(PassOwnPtr<VoidCallback> successCallback, PassOwnPtr<ErrorCallback> errorCallback) const
DirectoryEntry.h 48 class DirectoryEntry : public Entry {
50 static PassRefPtr<DirectoryEntry> create(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath)
52 return adoptRef(new DirectoryEntry(fileSystem, fullPath));
62 DirectoryEntry(PassRefPtr<DOMFileSystemBase>, const String& fullPath);
65 DEFINE_TYPE_CASTS(DirectoryEntry, Entry, entry, entry->isDirectory(), entry.isDirectory());
Entry.cpp 36 #include "modules/filesystem/DirectoryEntry.h"
57 void Entry::moveTo(PassRefPtr<DirectoryEntry> parent, const String& name, PassOwnPtr<EntryCallback> successCallback, PassOwnPtr<ErrorCallback> errorCallback) const
62 void Entry::copyTo(PassRefPtr<DirectoryEntry> parent, const String& name, PassOwnPtr<EntryCallback> successCallback, PassOwnPtr<ErrorCallback> errorCallback) const
Entry.h 42 class DirectoryEntry;
54 void moveTo(PassRefPtr<DirectoryEntry> parent, const String& name = String(), PassOwnPtr<EntryCallback> successCallback = nullptr, PassOwnPtr<ErrorCallback> = nullptr) const;
55 void copyTo(PassRefPtr<DirectoryEntry> parent, const String& name = String(), PassOwnPtr<EntryCallback> successCallback = nullptr, PassOwnPtr<ErrorCallback> = nullptr) const;
Entry.idl 42 void moveTo(DirectoryEntry parent, [TreatNullAs=NullString, TreatUndefinedAs=NullString] optional DOMString name, optional EntryCallback successCallback, optional ErrorCallback errorCallback);
43 void copyTo(DirectoryEntry parent, [TreatNullAs=NullString, TreatUndefinedAs=NullString] optional DOMString name, optional EntryCallback successCallback, optional ErrorCallback errorCallback);
HTMLInputElementFileSystem.cpp 38 #include "modules/filesystem/DirectoryEntry.h"
71 entries.append(DirectoryEntry::create(filesystem, virtualPath));
  /external/chromium_org/chrome/browser/resources/chromeos/wallpaper_manager/js/
wallpaper_directories.js 54 * @param {function(DirectoryEntry):void} success Call success with requested
55 * DirectoryEntry.
79 * Gets DirectoryEntry associated with dirName from cache. If not in cache try
82 * @param {function(DirectoryEntry):void} success Call success with requested
83 * DirectoryEntry.
  /external/chromium_org/chrome/browser/media_galleries/fileapi/
itunes_file_util.cc 24 using fileapi::DirectoryEntry;
164 file_list->push_back(DirectoryEntry(kITunesLibraryXML,
165 DirectoryEntry::FILE,
167 file_list->push_back(DirectoryEntry(kITunesMediaDir,
168 DirectoryEntry::DIRECTORY,
181 file_list->push_back(DirectoryEntry(kITunesAutoAddDir,
182 DirectoryEntry::DIRECTORY,
185 file_list->push_back(DirectoryEntry(kITunesMusicDir,
186 DirectoryEntry::DIRECTORY,
204 file_list->push_back(DirectoryEntry(*it, DirectoryEntry::DIRECTORY
    [all...]
picasa_file_util.cc 27 using fileapi::DirectoryEntry;
186 DirectoryEntry(kPicasaDirAlbums, DirectoryEntry::DIRECTORY, 0,
189 DirectoryEntry(kPicasaDirFolders, DirectoryEntry::DIRECTORY, 0,
202 DirectoryEntry(it->first, DirectoryEntry::DIRECTORY, 0,
213 DirectoryEntry(it->first, DirectoryEntry::DIRECTORY, 0,
235 fileapi::DirectoryEntry entry
    [all...]
iphoto_file_util.cc 26 using fileapi::DirectoryEntry;
217 file_list->push_back(DirectoryEntry(kIPhotoAlbumsDir,
218 DirectoryEntry::DIRECTORY,
230 file_list->push_back(DirectoryEntry(*it, DirectoryEntry::DIRECTORY,
242 file_list->push_back(DirectoryEntry(kIPhotoOriginalsDir,
243 DirectoryEntry::DIRECTORY,
254 file_list->push_back(DirectoryEntry(it->first, DirectoryEntry::FILE,
269 file_list->push_back(DirectoryEntry(it->first, DirectoryEntry::FILE
    [all...]
  /external/chromium_org/chrome/browser/resources/file_manager/foreground/js/
directory_contents.js 41 * @param {DirectoryEntry} entry The directory to be read.
184 * @param {DirectoryEntry} entry The root of the search target directory tree.
439 * @param {DirectoryEntry} directoryEntry The entry of the current directory.
440 * @param {DirectoryEntry} lastNonSearchDirectoryEntry The entry of the last
447 function DirectoryContents(context, isSearch, directoryEntry,
454 this.directoryEntry_ = directoryEntry;
520 * @return {DirectoryEntry} A DirectoryEntry for current directory. In case of
528 * @return {DirectoryEntry} A DirectoryEntry for the last non search contents
    [all...]
directory_tree.js 17 * @return {Array.<DirectoryEntry>} Entries for the top level on the tree.
59 * Updates sub-elements of {@code this} reading {@code DirectoryEntry}.
60 * The list of {@code DirectoryEntry} are not updated by this method.
108 * @param {DirectoryEntry|Object} entry The entry to be searched for. Can be
131 * @param {DirectoryEntry} dirEntry DirectoryEntry of this item.
145 * @param {DirectoryEntry} dirEntry DirectoryEntry of this item.
160 * The DirectoryEntry corresponding to this DirectoryItem. This may be
161 * a dummy DirectoryEntry
    [all...]
  /external/chromium_org/webkit/browser/fileapi/
file_system_dir_url_request_job.h 22 struct DirectoryEntry;
53 const std::vector<DirectoryEntry>& entries,
file_system_dir_url_request_job.cc 89 std::vector<DirectoryEntry>(),
104 const std::vector<DirectoryEntry>& entries,
127 typedef std::vector<DirectoryEntry>::const_iterator EntryIterator;
  /external/chromium_org/third_party/icu/source/test/letest/
FontObject.h 21 struct DirectoryEntry
36 DirectoryEntry tableDirectory[ANY_NUMBER];
204 DirectoryEntry *findTable(LETag tag);
  /external/icu4c/test/letest/
FontObject.h 21 struct DirectoryEntry
36 DirectoryEntry tableDirectory[ANY_NUMBER];
204 DirectoryEntry *findTable(LETag tag);
  /external/clang/include/clang/Basic/
FileManager.h 47 class DirectoryEntry {
51 DirectoryEntry() : Name(0) {}
64 const DirectoryEntry *Dir; // Directory file lives in.
103 const DirectoryEntry *getDir() const { return Dir; }
137 SmallVector<DirectoryEntry*, 4> VirtualDirectoryEntries;
149 llvm::StringMap<DirectoryEntry*, llvm::BumpPtrAllocator> SeenDirEntries;
158 llvm::DenseMap<const DirectoryEntry *, llvm::StringRef> CanonicalDirNames;
211 const DirectoryEntry *getDirectory(StringRef DirName,
274 StringRef getCanonicalName(const DirectoryEntry *Dir);
  /external/clang/include/clang/Lex/
DirectoryLookup.h 23 class DirectoryEntry;
43 const DirectoryEntry *Dir;
68 DirectoryLookup(const DirectoryEntry *dir, SrcMgr::CharacteristicKind DT,
95 const DirectoryEntry *getDir() const { return isNormalDir() ? u.Dir : 0; }
99 const DirectoryEntry *getFrameworkDir() const {

Completed in 1866 milliseconds

1 2 3 4 5 6