/frameworks/compile/mclinker/include/mcld/Support/ |
FileHandle.h | 11 #include <mcld/Support/Path.h> 76 bool open(const sys::fs::Path& pPath, 100 const sys::fs::Path& path() const function in class:mcld::FileHandle 131 sys::fs::Path m_Path;
|
/frameworks/compile/mclinker/lib/Support/ |
ToolOutputFile.cpp | 11 #include <mcld/Support/Path.h> 20 #include <llvm/Support/Path.h> 28 ToolOutputFile::CleanupInstaller::CleanupInstaller(const sys::fs::Path& pPath) 38 // FIXME: In Windows, some path in CJK characters can not be removed by LLVM 39 // llvm::sys::Path 54 ToolOutputFile::ToolOutputFile(const sys::fs::Path& pPath,
|
/frameworks/compile/mclinker/unittests/ |
FileHandleTest.cpp | 10 #include <mcld/Support/Path.h> 46 mcld::sys::fs::Path path(TOPDIR); 47 path.append("unittests/test.txt"); 48 ASSERT_TRUE(m_pTestee->open(path, FileHandle::ReadOnly)); 63 mcld::sys::fs::Path path(TOPDIR); 64 path.append("unittests/test.txt"); 66 int fd = ::open(path.native().c_str(), O_RDONLY); 87 mcld::sys::fs::Path path(TOPDIR) [all...] |
MCRegionFragmentTest.cpp | 14 #include <mcld/Support/Path.h> 46 Path path(TOPDIR); 47 path.append("unittests/test3.txt"); 49 MemoryArea* area = areaFactory->produce(path, MemoryArea::ReadWrite); 61 Path path(TOPDIR); 62 path.append("unittests/test3.txt"); 64 MemoryArea* area = areaFactory->produce(path, MemoryArea::ReadWrite);
|
/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
SnailAlbum.java | 27 public SnailAlbum(Path path, SnailItem item) { 28 super(path, item);
|
SizeClustering.java | 31 private ArrayList<Path>[] mClusters; 56 final ArrayList<Path>[] group = new ArrayList[SIZE_LEVELS.length]; 69 ArrayList<Path> list = group[i]; 71 list = new ArrayList<Path>(); 129 public ArrayList<Path> getCluster(int index) {
|
LocalAlbumSet.java | 37 // The path should be "/local/image", "local/video" or "/local/all" 43 public static final Path PATH_ALL = Path.fromString("/local/all"); 44 public static final Path PATH_IMAGE = Path.fromString("/local/image"); 45 public static final Path PATH_VIDEO = Path.fromString("/local/video"); 61 public LocalAlbumSet(Path path, GalleryApp application) { 62 super(path, nextVersionNumber()) 139 Path path = parent.getChild(id); local [all...] |
SecureAlbum.java | 42 private ArrayList<Path> mAllItems = new ArrayList<Path>(); 45 private ArrayList<Path> mExistingItems = new ArrayList<Path>(); 56 public SecureAlbum(Path path, GalleryApp application, MediaItem unlock) { 57 super(path, nextVersionNumber()); 67 Path pathBase; 77 Path path = pathBase.getChild(id) local 177 Path path = mAllItems.get(i); local [all...] |
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/ |
html5_fs_test.cc | 146 ASSERT_EQ(0, fs->Access(Path("/foo"), R_OK | W_OK | X_OK)); 159 ASSERT_EQ(0, fs->Access(Path("/bar"), R_OK | W_OK | X_OK)); 160 ASSERT_EQ(ENOENT, fs->Access(Path("/foo/bar"), F_OK)); 169 ASSERT_EQ(0, fs->Access(Path("/foo"), R_OK | W_OK | X_OK)); 170 ASSERT_EQ(ENOENT, fs->Access(Path("/bar"), F_OK)); 178 EXPECT_EQ(EEXIST, fs->Mkdir(Path("/"), 0644)); 180 Path path("/foo"); 181 ASSERT_EQ(ENOENT, fs->Access(path, F_OK)); 182 ASSERT_EQ(0, fs->Mkdir(path, 0644)) [all...] |
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/html5fs/ |
html5_fs.cc | 32 Error Html5Fs::Access(const Path& path, int a_mode) { 35 return Open(path, O_RDONLY, &node); 38 Error Html5Fs::Open(const Path& path, int open_flags, ScopedNode* out_node) { 45 filesystem_resource_, GetFullPath(path).Join().c_str()); 58 Path Html5Fs::GetFullPath(const Path& path) { 59 Path full_path(path) [all...] |
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/fake_ppapi/ |
fake_pepper_interface_html5_fs.h | 28 // "/some/path"); 64 typedef std::string Path; 67 Path path; member in struct:FakeHtml5FsFilesystem::DirectoryEntry 78 bool AddEmptyFile(const Path& path, FakeHtml5FsNode** out_node); 79 bool AddFile(const Path& path, 82 bool AddFile(const Path& path, [all...] |
/external/chromium_org/third_party/WebKit/Source/core/xml/ |
XPathPath.h | 74 class Path FINAL : public Expression { 76 Path(Expression*, LocationPath*); 77 virtual ~Path();
|
/external/nist-sip/java/gov/nist/javax/sip/header/ims/ |
Path.java | 43 public class Path 51 public Path(AddressImpl address) { 59 public Path()
|
/external/nist-sip/java/gov/nist/javax/sip/parser/ims/ |
PathParser.java | 33 import gov.nist.javax.sip.header.ims.Path; 51 public PathParser(String path) { 52 super(path); 78 this.lexer.match(TokenTypes.PATH); 83 Path path = new Path(); local 84 super.parse(path); 85 pathList.add(path);
|
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/ |
PathOffsetActivity.java | 24 import android.graphics.Path; 39 private Path mPath; 49 mPath = new Path();
|
PathDestructionActivity.java | 23 import android.graphics.Path; 31 * scheme in particular, because we should be able to have the Java-level path finalized 32 * without destroying the underlying native path object until we are done referencing it 58 private Path getRandomPath() { 64 Path path = new Path(); local 65 path.moveTo(left, top); 66 path.lineTo(right, top); 67 path.lineTo(right, bottom) 82 Path path; local [all...] |
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/setup/ |
SetupStepIndicatorView.java | 22 import android.graphics.Path; 30 private final Path mIndicatorPath = new Path();
|
/cts/tests/tests/graphics/src/android/graphics/cts/ |
CornerPathEffectTest.java | 24 import android.graphics.Path; 42 Path path = new Path(); local 43 path.moveTo(0, PADDING); 44 path.lineTo(BITMAP_WIDTH - PADDING, PADDING); 45 path.lineTo(BITMAP_WIDTH - PADDING, BITMAP_HEIGHT); 58 // draw the path using the corner path effect 59 canvas.drawPath(path, pathPaint) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/ |
RenderSVGShape.h | 46 RenderSVGShape(SVGGraphicsElement*, Path*, bool); 57 Path& path() const function in class:WebCore::RenderSVGShape 65 virtual bool isShapeEmpty() const { return path().isEmpty(); } 74 Path* nonScalingStrokePath(const Path*, const AffineTransform&) const; 116 OwnPtr<Path> m_path;
|
/external/clang/lib/Basic/ |
Version.cpp | 48 // Trim path prefix off, assuming path came from standard cfe path. 64 // Trim path prefix off, assuming path came from standard llvm path. 93 std::string Path = getClangRepositoryPath(); 95 if (!Path.empty() || !Revision.empty()) { 97 if (!Path.empty()) 98 OS << Path; [all...] |
VirtualFileSystem.cpp | 20 #include "llvm/Support/Path.h" 163 ErrorOr<Status> status(const Twine &Path) override; 164 std::error_code openFileForRead(const Twine &Path, 170 ErrorOr<Status> RealFileSystem::status(const Twine &Path) { 172 if (std::error_code EC = sys::fs::status(Path, RealStatus)) 175 Result.setName(Path.str()); 196 std::string Path; 200 : Path(_Path.str()), Iter(Path, EC) { 206 CurrentEntry.setName(Iter->path()); [all...] |
/packages/apps/Gallery2/src_pd/com/android/gallery3d/picasasource/ |
PicasaSource.java | 29 import com.android.gallery3d.data.Path; 46 public static final Path ALBUM_PATH = Path.fromString("/picasa/all"); 59 public EmptyAlbumSet(Path path, long version) { 60 super(path, version); 75 public MediaObject createMediaObject(Path path) { 76 switch (mMatcher.match(path)) { 78 return new EmptyAlbumSet(path, MediaObject.nextVersionNumber()) [all...] |
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/memfs/ |
mem_fs.cc | 18 #include "nacl_io/path.h" 41 Error MemFs::FindNode(const Path& path, int type, ScopedNode* out_node) { 49 // We are expecting an "absolute" path from this mount point. 50 if (!path.IsAbsolute()) 53 // Starting at the root, traverse the path parts. 54 for (size_t index = 1; node && index < path.Size(); index++) { 60 Error error = node->FindChild(path.Part(index), &node); 78 Error MemFs::Access(const Path& path, int a_mode) [all...] |
/external/clang/unittests/Basic/ |
FileManagerTest.cpp | 26 // Maps a file/directory path to its desired stat result. Anything 30 void InjectFileOrDirectory(const char *Path, ino_t INode, bool IsFile) { 32 Data.Name = Path; 39 StatCalls[Path] = Data; 44 void InjectFile(const char *Path, ino_t INode) { 45 InjectFileOrDirectory(Path, INode, /*IsFile=*/true); 49 void InjectDirectory(const char *Path, ino_t INode) { 50 InjectFileOrDirectory(Path, INode, /*IsFile=*/false); 54 LookupResult getStat(const char *Path, FileData &Data, bool isFile, 57 if (StatCalls.count(Path) != 0) [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/app/ |
FilterUtils.java | 21 import com.android.gallery3d.data.Path; 41 // newPath operation: create a new path based on a source path and put an extra 52 // For all fixed set in the path defined above, if some clusterType and 80 public static void setupMenuItems(GalleryActionBar actionBar, Path path, boolean inAlbum) { 82 getAppliedFilters(path, result); 117 // Gets the filters applied in the path. 118 private static void getAppliedFilters(Path path, int[] result) [all...] |