/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
FilterEmptyPromptSet.java | 28 public FilterEmptyPromptSet(Path path, MediaSet baseSet, MediaItem emptyItem) { 29 super(path, INVALID_DATA_VERSION);
|
SingleItemAlbum.java | 27 public SingleItemAlbum(Path path, MediaItem item) { 28 super(path, nextVersionNumber());
|
PathMatcher.java | 33 String[] segments = Path.split(pattern); 41 public int match(Path path) { 42 String[] segments = path.split();
|
LocalAlbum.java | 58 private final Path mItemPath; 61 public LocalAlbum(Path path, GalleryApp application, int bucketId, 63 super(path, nextVersionNumber()); 89 public LocalAlbum(Path path, GalleryApp application, int bucketId, 91 this(path, application, bucketId, isImage, 133 Path childPath = mItemPath.getChild(id); 144 private static MediaItem loadOrUpdateItem(Path path, Cursor cursor 314 String path = GalleryUtils.searchDirForPath(extStorage, bucketId); local [all...] |
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/devfs/ |
dev_fs.cc | 291 Error DevFs::Access(const Path& path, int a_mode) { 293 int error = root_->FindChild(path.Join(), &node); 304 Error DevFs::Open(const Path& path, int open_flags, ScopedNode* out_node) { 307 if (path.Part(1) == "fs") { 308 if (path.Size() == 3) 309 error = fs_dir_->FindChild(path.Part(2), out_node); 313 error = root_->FindChild(path.Join(), out_node); 323 Error DevFs::Unlink(const Path& path) 345 char path[32]; local 353 char path[32]; local [all...] |
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/ |
kernel_object.h | 18 #include "nacl_io/path.h" 29 // All calls are assumed to be a relative path. 36 : handle(h), flags(0), path(open_path) {} 40 std::string path; member in struct:nacl_io::KernelObject::Descriptor_t 48 // Attach the given Filesystem object at the specified path. 49 Error AttachFsAtPath(const ScopedFilesystem& fs, const std::string& path); 51 // Unmap the Filesystem object from the specified path and release it. 52 Error DetachFsAtPath(const std::string& path, ScopedFilesystem* out_fs); 54 // Find the filesystem for the given path, and acquires it and return a 55 // path relative to the filesystem [all...] |
kernel_object.cc | 34 const std::string& path) { 35 std::string abs_path = GetAbsParts(path).Join(); 45 Error KernelObject::DetachFsAtPath(const std::string& path, 47 std::string abs_path = GetAbsParts(path).Join(); 64 // Uses longest prefix to find the filesystem for the give path, then 65 // acquires the filesystem and returns it with a relative path. 66 Error KernelObject::AcquireFsAndRelPath(const std::string& path, 68 Path* rel_parts) { 69 Path abs_parts = GetAbsParts(path); [all...] |
/external/llvm/lib/Support/ |
FileOutputBuffer.cpp | 24 StringRef Path, StringRef TmpPath) 26 , FinalPath(Path)
|
/frameworks/compile/mclinker/include/mcld/LD/ |
MsgHandler.h | 14 #include <mcld/Support/Path.h> 60 operator<<(const MsgHandler& pHandler, const sys::fs::Path& pPath)
|
/frameworks/compile/mclinker/include/mcld/ |
LinkerScript.h | 69 const sys::fs::Path& sysroot() const; 71 void setSysroot(const sys::fs::Path &pPath);
|
/frameworks/compile/mclinker/lib/Support/ |
Android.mk | 13 Path.cpp \
|
MemoryAreaFactory.cpp | 26 MemoryArea* MemoryAreaFactory::produce(const sys::fs::Path& pPath, 40 MemoryArea* MemoryAreaFactory::produce(const sys::fs::Path& pPath,
|
CommandLine.cpp | 61 // parser<mcld::sys::fs::Path> 63 bool parser<mcld::sys::fs::Path>::parse(llvm::cl::Option &O, 66 mcld::sys::fs::Path &Val) 72 void parser<mcld::sys::fs::Path>::printOptionDiff(const llvm::cl::Option &O, 73 const mcld::sys::fs::Path &V, 74 parser<mcld::sys::fs::Path>::OptVal Default, 89 void parser<mcld::sys::fs::Path>::anchor()
|
/frameworks/compile/mclinker/unittests/ |
UniqueGCFactoryBaseTest.cpp | 12 #include <mcld/Support/Path.h> 74 sys::fs::Path path1(TOPDIR), path2(TOPDIR);
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/ |
SlidingKeyInputDrawingPreview.java | 22 import android.graphics.Path; 89 final Path path = mRoundedLine.makePath( local 92 canvas.drawPath(path, mPaint);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.traceview/src/com/android/ide/eclipse/traceview/ |
TraceviewLauncher.java | 25 import org.eclipse.core.runtime.Path; 39 final IFileStore fileStore = EFS.getLocalFileSystem().getStore(new Path(osPath));
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/ |
BasicShapes.h | 45 class Path; 61 virtual void path(Path&, const FloatRect&) = 0; 173 virtual void path(Path&, const FloatRect&) OVERRIDE; 203 virtual void path(Path&, const FloatRect&) OVERRIDE; 230 virtual void path(Path&, const FloatRect&) OVERRIDE; 272 virtual void path(Path&, const FloatRect&) OVERRIDE [all...] |
/external/chromium_org/third_party/WebKit/Source/core/xml/ |
XPathPath.cpp | 209 Path::Path(Expression* filter, LocationPath* path) 211 , m_path(adoptPtrWillBeNoop(path)) 218 Path::~Path() 222 void Path::trace(Visitor* visitor) 229 Value Path::evaluate() const
|
/packages/apps/Gallery2/src/com/android/gallery3d/ui/ |
PhotoFallbackEffect.java | 25 import com.android.gallery3d.data.Path; 39 public Path path; field in class:PhotoFallbackEffect.Entry 44 public Entry(Path path, Rect source, RawTexture texture) { 45 this.path = path; 53 public int getItemIndex(Path path); 68 public void addEntry(Path path, Rect rect, RawTexture texture) [all...] |
/external/clang/lib/Frontend/ |
InitHeaderSearch.cpp | 28 #include "llvm/Support/Path.h" 37 /// a HeaderSearch object. InitHeaderSearch stores several search path lists 56 /// AddPath - Add the specified path to the specified group list, prefixing 58 void AddPath(const Twine &Path, IncludeDirGroup Group, bool isFramework); 60 /// AddUnmappedPath - Add the specified path to the specified group list, 62 void AddUnmappedPath(const Twine &Path, IncludeDirGroup Group, 105 /// Realize - Merges all search path lists into one list and send it to 112 static bool CanPrefixSysroot(StringRef Path) { 114 return !Path.empty() && llvm::sys::path::is_separator(Path[0]) [all...] |
CompilerInstance.cpp | 43 #include "llvm/Support/Path.h" 332 // Set up the module path, including the hash for the 337 llvm::sys::path::append(SpecificModuleCache, 389 StringRef Path, bool DisablePCHValidation, bool AllowPCHWithCompilerErrors, 394 Path, getHeaderSearchOpts().Sysroot, DisablePCHValidation, 403 StringRef Path, const std::string &Sysroot, bool DisablePCHValidation, 421 switch (Reader->ReadAST(Path, 614 SmallString<128> Path(InFile); 615 llvm::sys::path::replace_extension(Path, Extension) [all...] |
/external/clang/lib/Driver/ |
ToolChain.cpp | 326 const Twine &Path) { 328 CC1Args.push_back(DriverArgs.MakeArgString(Path)); 341 const Twine &Path) { 343 CC1Args.push_back(DriverArgs.MakeArgString(Path)); 348 const Twine &Path) { 349 if (llvm::sys::fs::exists(Path)) 350 addExternCSystemInclude(DriverArgs, CC1Args, Path); 414 std::string Path = GetFilePath("crtfastmath.o"); 415 if (Path == "crtfastmath.o") // Not found. 418 CmdArgs.push_back(Args.MakeArgString(Path)); [all...] |
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/ |
fuse_fs_test.cc | 40 bool IsValidPath(const char* path) { 41 if (path == NULL) 44 if (strlen(path) <= 1) 47 if (path[0] != '/') 53 File* FindFile(const char* path) { 54 if (!IsValidPath(path)) 58 if (iter->name == &path[1]) 65 int testfs_getattr(const char* path, struct stat* stbuf) { 68 if (strcmp(path, "/") == 0) { 73 File* file = FindFile(path); [all...] |
/packages/apps/Settings/src/com/android/settings/widget/ |
ChartNetworkSeriesView.java | 29 import android.graphics.Path; 59 private Path mPathStroke; 60 private Path mPathFill; 61 private Path mPathEstimate; 105 mPathStroke = new Path(); 106 mPathFill = new Path(); 107 mPathEstimate = new Path(); 166 * Erase any existing {@link Path} and generate series outline based on 310 // haven't generated path yet; fall back to raw data
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/ |
TextDecoratorUi.java | 25 import android.graphics.Path; 188 private final Path mPath; 189 private final Path mTmpPath = new Path(); 222 private static Path createPath(final Resources resources, final int pathResourceId, 228 final Path path = new Path(); local 231 path.moveTo(array[i] * normalizationFactor, array[i + 1] * normalizationFactor); 233 path.lineTo(array[i] * normalizationFactor, array[i + 1] * normalizationFactor) [all...] |