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

1 2

  /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/webkit/Source/WebCore/fileapi/
DOMFileSystem.idl 37 readonly attribute DirectoryEntry root;
DirectoryEntry.h 50 class DirectoryEntry : public Entry {
52 static PassRefPtr<DirectoryEntry> create(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath)
54 return adoptRef(new DirectoryEntry(fileSystem, fullPath));
64 DirectoryEntry(PassRefPtr<DOMFileSystemBase>, const String& fullPath);
DirectoryEntry.cpp 32 #include "DirectoryEntry.h"
44 DirectoryEntry::DirectoryEntry(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath)
49 PassRefPtr<DirectoryReader> DirectoryEntry::createReader()
54 void DirectoryEntry::getFile(const String& path, PassRefPtr<WebKitFlags> flags, PassRefPtr<EntryCallback> successCallback, PassRefPtr<ErrorCallback> errorCallbackRef)
61 void DirectoryEntry::getDirectory(const String& path, PassRefPtr<WebKitFlags> flags, PassRefPtr<EntryCallback> successCallback, PassRefPtr<ErrorCallback> errorCallbackRef)
68 void DirectoryEntry::removeRecursively(PassRefPtr<VoidCallback> successCallback, PassRefPtr<ErrorCallback> errorCallbackRef) const
Entry.h 43 class DirectoryEntry;
55 void moveTo(PassRefPtr<DirectoryEntry> parent, const String& name = String(), PassRefPtr<EntryCallback> successCallback = 0, PassRefPtr<ErrorCallback> errorCallback = 0) const;
56 void copyTo(PassRefPtr<DirectoryEntry> parent, const String& name = String(), PassRefPtr<EntryCallback> successCallback = 0, PassRefPtr<ErrorCallback> errorCallback = 0) const;
Entry.idl 44 void moveTo(in DirectoryEntry parent, in [Optional, ConvertUndefinedOrNullToNullString] DOMString name, in [Optional, Callback] EntryCallback successCallback, in [Optional, Callback] ErrorCallback errorCallback);
45 void copyTo(in DirectoryEntry parent, in [Optional, ConvertUndefinedOrNullToNullString] DOMString name, in [Optional, Callback] EntryCallback successCallback, in [Optional, Callback] ErrorCallback errorCallback);
DirectoryEntry.idl 37 ] DirectoryEntry : Entry {
DOMFileSystem.h 42 class DirectoryEntry;
55 PassRefPtr<DirectoryEntry> root();
Entry.cpp 36 #include "DirectoryEntry.h"
61 void Entry::moveTo(PassRefPtr<DirectoryEntry> parent, const String& name, PassRefPtr<EntryCallback> successCallback, PassRefPtr<ErrorCallback> errorCallbackRef) const
68 void Entry::copyTo(PassRefPtr<DirectoryEntry> parent, const String& name, PassRefPtr<EntryCallback> successCallback, PassRefPtr<ErrorCallback> errorCallbackRef) const
FileSystemCallbacks.cpp 40 #include "DirectoryEntry.h"
132 m_successCallback->handleEvent(DirectoryEntry::create(m_fileSystem, m_expectedPath).get());
159 m_entries->append(DirectoryEntry::create(m_directoryReader->filesystem(), DOMFilePath::append(m_basePath, name)));
201 static PassRefPtr<ErrorCallbackWrapper> create(PassRefPtr<EntryCallback> successCallback, PassRefPtr<ErrorCallback> errorCallback, PassRefPtr<DirectoryEntry> root, const String& filePath)
217 ErrorCallbackWrapper(PassRefPtr<EntryCallback> successCallback, PassRefPtr<ErrorCallback> errorCallback, PassRefPtr<DirectoryEntry> root, const String& filePath)
228 RefPtr<DirectoryEntry> m_root;
250 RefPtr<DirectoryEntry> root = DOMFileSystem::create(m_scriptExecutionContext.get(), name, asyncFileSystem.leakPtr())->root();
DOMFileSystem.cpp 38 #include "DirectoryEntry.h"
59 PassRefPtr<DirectoryEntry> DOMFileSystem::root()
61 return DirectoryEntry::create(this, DOMFilePath::root);
  /external/clang/include/clang/Lex/
DirectoryLookup.h 22 class DirectoryEntry;
42 const DirectoryEntry *Dir;
67 DirectoryLookup(const DirectoryEntry *dir, SrcMgr::CharacteristicKind DT,
94 const DirectoryEntry *getDir() const { return isNormalDir() ? u.Dir : 0; }
98 const DirectoryEntry *getFrameworkDir() const {
ModuleMap.h 31 class DirectoryEntry;
46 const DirectoryEntry *BuiltinIncludeDir;
66 llvm::DenseMap<const DirectoryEntry *, Module *> UmbrellaDirs;
111 void setBuiltinIncludeDir(const DirectoryEntry *Dir) {
177 const DirectoryEntry *FrameworkDir,
215 void setUmbrellaDir(Module *Mod, const DirectoryEntry *UmbrellaDir);
HeaderSearch.h 126 const DirectoryEntry *Directory;
183 llvm::DenseMap<const DirectoryEntry *, bool> DirectoryHasModuleMap;
342 /// framework cache, returning the DirectoryEntry it is in if we know,
437 bool hasModuleMap(StringRef Filename, const DirectoryEntry *Root);
471 const DirectoryEntry *Dir,
553 LoadModuleMapResult loadModuleMapFile(const DirectoryEntry *Dir);
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8EntryCustom.cpp 56 return toV8(static_cast<DirectoryEntry*>(impl));
  /external/clang/include/clang/Basic/
FileManager.h 43 /// DirectoryEntry - Cached information about one directory (either on
46 class DirectoryEntry {
50 DirectoryEntry() : Name(0) {}
62 const DirectoryEntry *Dir; // Directory file lives in.
101 const DirectoryEntry *getDir() const { return Dir; }
128 SmallVector<DirectoryEntry*, 4> VirtualDirectoryEntries;
139 llvm::StringMap<DirectoryEntry*, llvm::BumpPtrAllocator> SeenDirEntries;
185 const DirectoryEntry *getDirectory(StringRef DirName,
Module.h 33 class DirectoryEntry;
56 llvm::PointerUnion<const DirectoryEntry *, const FileEntry *> Umbrella;
232 const DirectoryEntry *getUmbrellaDir() const;
243 return Umbrella && Umbrella.is<const DirectoryEntry *>();
  /external/webkit/Source/WebCore/bindings/js/
JSEntryCustom.cpp 56 return getDOMObjectWrapper<JSDirectoryEntry>(exec, globalObject, static_cast<DirectoryEntry*>(entry));
JSDirectoryEntryCustom.cpp 50 DirectoryEntry* imp = static_cast<DirectoryEntry*>(impl());
96 DirectoryEntry* imp = static_cast<DirectoryEntry*>(impl());
  /external/clang/lib/Basic/
FileManager.cpp 47 #define NON_EXISTENT_DIR reinterpret_cast<DirectoryEntry*>((intptr_t)-1)
81 llvm::StringMap<DirectoryEntry> UniqueDirs;
84 /// getDirectory - Return an existing DirectoryEntry with the given
86 /// default-constructed DirectoryEntry.
87 DirectoryEntry &getDirectory(const char *Name,
124 std::map<std::pair<dev_t, ino_t>, DirectoryEntry> UniqueDirs;
127 /// getDirectory - Return an existing DirectoryEntry with the given
129 /// default-constructed DirectoryEntry.
130 DirectoryEntry &getDirectory(const char * /*Name*/,
218 static const DirectoryEntry *getDirectoryFromFile(FileManager &FileMgr
    [all...]
  /external/clang/unittests/Basic/
FileManagerTest.cpp 81 const DirectoryEntry *dir = file->getDir();
114 const DirectoryEntry *dir = manager.getDirectory("virtual/dir");
135 const DirectoryEntry *dir = file->getDir();
150 const DirectoryEntry *dir = file->getDir();
  /external/icu4c/test/letest/
FontObject.h 21 struct DirectoryEntry
36 DirectoryEntry tableDirectory[ANY_NUMBER];
204 DirectoryEntry *findTable(LETag tag);
sfnt.h 19 struct DirectoryEntry
28 typedef struct DirectoryEntry DirectoryEntry;
38 DirectoryEntry tableDirectory[ANY_NUMBER];

Completed in 417 milliseconds

1 2