/external/chromium/chrome/browser/ui/views/frame/ |
glass_browser_frame_view.h | 45 virtual void GetWindowMask(const gfx::Size& size, gfx::Path* window_mask)
|
/external/chromium/chrome/browser/ui/views/tabs/ |
tab.h | 71 virtual void GetHitTestMask(gfx::Path* path) const OVERRIDE;
|
/external/llvm/tools/llvm-ranlib/ |
llvm-ranlib.cpp | 67 // Check the path name of the archive 68 sys::Path ArchivePath;
|
/external/webkit/Source/WebCore/inspector/ |
DOMNodeHighlighter.cpp | 49 Path quadToPath(const FloatQuad& quad) 51 Path quadPath; 65 Path quadPath = quadToPath(quad); 88 Path clipQuadPath = quadToPath(clipQuad); 236 // RenderSVGRoot should be highlighted through the isBox() code path, all other SVG elements should just dump their absoluteQuads().
|
/external/webkit/Source/WebCore/svg/ |
SVGUseElement.h | 73 virtual void toClipPath(Path&) const;
|
SVGPathParserFactory.cpp | 40 static SVGPathBuilder* globalSVGPathBuilder(Path& result) 129 bool SVGPathParserFactory::buildPathFromString(const String& d, Path& result) 158 bool SVGPathParserFactory::buildPathFromByteStream(SVGPathByteStream* stream, Path& result)
|
/external/webkit/Source/WebKit2/Scripts/ |
generate-forwarding-headers.pl | 33 use File::Path qw(mkpath);
|
/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
ComboAlbum.java | 32 public ComboAlbum(Path path, MediaSet[] mediaSets, String name) { 33 super(path, nextVersionNumber());
|
LocationClustering.java | 55 Path path; field in class:LocationClustering.SmallItem 75 s.path = item.getPath(); 184 public ArrayList<Path> getCluster(int index) { 186 ArrayList<Path> result = new ArrayList<Path>(items.size()); 188 result.add(items.get(i).path);
|
MediaSet.java | 56 public MediaSet(Path path, long version) { 57 super(path, version); 106 public int getIndexOfItem(Path path, int hint) { 113 int index = getIndexOf(path, list); 120 index = getIndexOf(path, list); 128 protected int getIndexOf(Path path, ArrayList<MediaItem> list) { 130 if (list.get(i).mPath == path) return i [all...] |
/external/clang/lib/Frontend/ |
CompilerInstance.cpp | 38 #include "llvm/Support/Path.h" 245 // Set up the module path, including the hash for the 250 llvm::sys::path::append(SpecificModuleCache, 286 void CompilerInstance::createPCHExternalASTSource(StringRef Path, 292 Source.reset(createPCHExternalASTSource(Path, getHeaderSearchOpts().Sysroot, 303 CompilerInstance::createPCHExternalASTSource(StringRef Path, 318 switch (Reader->ReadAST(Path, 442 llvm::sys::Path(it->Filename).eraseFromDisk(); 499 llvm::sys::Path Path(InFile) [all...] |
InitHeaderSearch.cpp | 30 #include "llvm/Support/Path.h" 42 /// a HeaderSearch object. InitHeaderSearch stores several search path lists 60 /// AddPath - Add the specified path to the specified group list. 61 void AddPath(const Twine &Path, IncludeDirGroup Group, 99 /// Realize - Merges all search path lists into one list and send it to 106 void InitHeaderSearch::AddPath(const Twine &Path, 110 assert(!Path.isTriviallyEmpty() && "can't handle empty path here"); 113 // Compute the actual path, taking into consideration -isysroot. 115 StringRef MappedPathStr = Path.toStringRef(MappedPathStorage) [all...] |
/external/clang/tools/driver/ |
driver.cpp | 35 #include "llvm/Support/Path.h" 45 llvm::sys::Path GetExecutablePath(const char *Argv0, bool CanonicalPrefixes) { 47 return llvm::sys::Path(Argv0); 52 return llvm::sys::Path::GetMainExecutable(Argv0, P); 292 std::string ProgName(llvm::sys::path::stem(ArgVector[0])); 372 llvm::sys::Path Path = GetExecutablePath(argv[0], CanonicalPrefixes); 376 DiagClient->setPrefix(llvm::sys::path::stem(Path.str())); 385 Driver TheDriver(Path.str(), llvm::sys::getHostTriple() [all...] |
/external/llvm/lib/Archive/ |
Archive.cpp | 35 result += path.str().length() + 1; 47 : parent(0), path("--invalid--"), flags(0), data(0) 62 : parent(PAR), path(), flags(0), data(0) 69 bool ArchiveMember::replaceWith(const sys::Path& newFile, std::string* ErrMsg) { 78 path = newFile; 81 if (path.str() == ARFILE_SVR4_SYMTAB_NAME) 87 if (path.str() == ARFILE_BSD4_SYMTAB_NAME) 93 if (path.str() == ARFILE_LLVM_SYMTAB_NAME) 99 if (path.str() == ARFILE_STRTAB_NAME) 104 // If it has a slash then it has a path [all...] |
/external/webkit/Source/WebCore/rendering/ |
RenderEmbeddedObject.cpp | 45 #include "Path.h" 161 Path path; local 166 if (!getReplacementTextGeometry(tx, ty, contentRect, path, replacementTextRect, font, run, textWidth)) 173 context->fillPath(path); 184 bool RenderEmbeddedObject::getReplacementTextGeometry(int tx, int ty, FloatRect& contentRect, Path& path, FloatRect& replacementTextRect, Font& font, TextRun& run, float& textWidth) 209 path.addRoundedRect(replacementTextRect, FloatSize(replacementTextRoundedRectRadius, replacementTextRoundedRectRadius)); 256 Path path; local [all...] |
/external/webkit/Source/WebCore/rendering/mathml/ |
RenderMathMLRoot.cpp | 159 Path root; 176 Path mask; 189 Path line;
|
/frameworks/base/graphics/java/android/graphics/drawable/ |
GradientDrawable.java | 30 import android.graphics.Path; 122 private final Path mPath = new Path(); 128 private Path mRingPath; 333 mPath.addRoundRect(mRect, st.mRadiusArray, Path.Direction.CW); 375 Path path = buildRing(st); field in class:GradientDrawable 376 canvas.drawPath(path, mFillPaint); 378 canvas.drawPath(path, mStrokePaint); 393 private Path buildRing(GradientState st) [all...] |
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/ |
PathsActivity.java | 26 import android.graphics.Path; 46 private final Path mPath; 85 mPath = new Path();
|
/packages/apps/Gallery2/src/com/android/gallery3d/gadget/ |
LocalPhotoSource.java | 24 import com.android.gallery3d.data.Path; 64 private static final Path LOCAL_IMAGE_ROOT = Path.fromString("/local/image/item");
|
/sdk/anttasks/src/com/android/ant/ |
MultiFilesTask.java | 22 import org.apache.tools.ant.types.Path; 48 protected void processFiles(SourceProcessor processor, List<Path> paths, String genFolder) { 56 for (Path p : paths) { 139 for (String path : depsToRemove) { 140 if (new File(path).delete() == false) { 141 System.err.println("Failed to remove " + path);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/ |
SampleSelectionPage.java | 23 import org.eclipse.core.runtime.Path; 128 String path = file.getPath(); 130 if (path.length() > n) { 131 path = path.substring(n); 132 if (path.charAt(0) == File.separatorChar) { 133 path = path.substring(1); 135 if (path.endsWith(File.separator)) { 136 path = path.substring(0, path.length() - 1) 227 Path path = new Path(mValues.chosenSample.getPath()); local [all...] |
/external/clang/lib/Driver/ |
ToolChains.cpp | 36 #include "llvm/Support/Path.h" 285 std::string Path = getDriver().Dir; 286 Path += "/../llvm-gcc-4.2/libexec/gcc/"; 287 Path += ToolChainDir; 288 getProgramPaths().push_back(Path); 290 Path = "/usr/llvm-gcc-4.2/libexec/gcc/"; 291 Path += ToolChainDir; 292 getProgramPaths().push_back(Path); 301 // libstdc++.dylib). For now, hardcode the path to the known install location. 302 llvm::sys::Path P(getDriver().Dir) [all...] |
/packages/apps/Gallery/src/com/android/camera/ |
HighlightView.java | 24 import android.graphics.Path; 82 Path path = new Path(); local 92 path.addCircle(mDrawRect.left + (width / 2), 95 Path.Direction.CW); 98 path.addRect(new RectF(mDrawRect), Path.Direction.CW); 101 canvas.clipPath(path, Region.Op.DIFFERENCE); 106 canvas.drawPath(path, mOutlinePaint) [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/app/ |
ManageCachePage.java | 23 import com.android.gallery3d.data.Path; 60 public static final String KEY_MEDIA_PATH = "media-path"; 148 Path path = (set == null) ? null : set.getPath(); local 149 mSelectionManager.setPressedPath(path); 170 Path path = targetSet.getPath(); local 173 boolean isSelected = mSelectionManager.isItemSelected(path); 190 mSelectionManager.toggle(path); 335 ArrayList<Path> ids = mSelectionManager.getSelected(false) [all...] |
/external/webkit/Source/WebCore/platform/graphics/wx/ |
GraphicsContextWx.cpp | 286 void GraphicsContext::drawFocusRing(const Path& path, int width, int offset, const Color& color) 324 void GraphicsContext::clipOut(const Path&) 334 void GraphicsContext::clipPath(const Path&, WindRule) 364 void GraphicsContext::clip(const Path&) 369 void GraphicsContext::canvasClip(const Path& path) 371 clip(path); 526 void GraphicsContext::fillPath(const Path& path) [all...] |