HomeSort by relevance Sort by last modified time
    Searched refs:Path (Results 476 - 500 of 531) sorted by null

<<11121314151617181920>>

  /cts/tests/tests/text/src/android/text/cts/
BoringLayoutTest.java 508 args = {android.graphics.Canvas.class, android.graphics.Path.class,
  /external/chromium/chrome/browser/ui/views/frame/
app_panel_browser_frame_view.cc 20 #include "ui/gfx/path.h"
180 gfx::Path* window_mask) {
  /external/chromium/chrome/browser/ui/views/tabs/
tab.cc 23 #include "ui/gfx/path.h"
327 void Tab::GetHitTestMask(gfx::Path* path) const {
328 DCHECK(path);
333 path->moveTo(0, h);
336 path->lineTo(kTabBottomCurveWidth, h - kTabBottomCurveWidth);
337 path->lineTo(kTabCapWidth - kTabTopCurveWidth, kTabTopCurveWidth);
338 path->lineTo(kTabCapWidth, 0);
341 path->lineTo(w - kTabCapWidth, 0);
344 path->lineTo(w - kTabCapWidth + kTabTopCurveWidth, kTabTopCurveWidth)
    [all...]
tab_strip.cc 25 #include "ui/gfx/path.h"
87 virtual void GetHitTestMask(gfx::Path* path) const {
88 DCHECK(path);
95 path->moveTo(0, 1);
96 path->lineTo(w - 7, 1);
97 path->lineTo(w - 4, 4);
98 path->lineTo(w, 16);
99 path->lineTo(w - 1, 17);
100 path->lineTo(7, 17)
    [all...]
  /external/clang/include/clang/AST/
ExprCXX.h 219 const CXXCastPath *Path,
250 const CXXCastPath *Path,
285 Expr *Op, const CXXCastPath *Path,
    [all...]
  /external/icu4c/tools/gensprep/
filterRFC3454.pl 20 use File::Path;
  /external/llvm/tools/bugpoint/
CrashDebugger.cpp 65 sys::Path PrefixOutput;
  /external/llvm/tools/lto/
LTOModule.cpp 27 #include "llvm/Support/Path.h"
54 bool LTOModule::isBitcodeFile(const char *path) {
55 return llvm::sys::Path(path).isBitcodeFile();
67 bool LTOModule::isBitcodeFileForTarget(const char *path,
70 if (MemoryBuffer::getFile(path, buffer))
89 LTOModule *LTOModule::makeLTOModule(const char *path,
92 if (error_code ec = MemoryBuffer::getFile(path, buffer)) {
99 LTOModule *LTOModule::makeLTOModule(int fd, const char *path,
102 return makeLTOModule(fd, path, size, size, 0, errMsg)
    [all...]
  /external/skia/src/xml/
SkJSDisplayable.cpp 161 JS_INIT(SkDraw, Path)
  /external/webkit/Source/WebCore/rendering/
RenderImage.cpp 358 Path path = areaElement->computePath(this);
359 if (path.isEmpty())
362 // FIXME: Do we need additional code to clip the path to the image's bounding box?
369 paintInfo.context->drawFocusRing(path, outlineWidth,
RenderObject.h 52 class Path;
    [all...]
  /external/webkit/Source/WebCore/rendering/svg/
SVGTextLayoutEngine.cpp 231 m_textPath = Path();
317 // Chunk layouting is only performed for line layout boxes, not for path layout, where it has already been done.
332 fprintf(stderr, "Path layout: ");
529 // If there's an absolute y position available, it marks the beginning of a new position along the path.
540 // If there's an absolute x position available, it marks the beginning of a new position along the path.
552 // Calculate current offset along path.
558 // Skip character, if we're before the path.
565 // Stop processing, if the next character lies behind the path.
578 // For vertical text on path, the actual angle has to be rotated 90 degrees anti-clockwise, not the orientation angle!
  /external/webkit/Source/WebKit/chromium/tests/
KURLTest.cpp 58 const char* path; member in struct:__anon13501::ComponentCase
121 // url protocol host port user pass path lastPath query ref
123 // Old WebKit allows references and queries in what we call "path" URLs
124 // like javascript, so the path here will only consist of "hello!".
128 // disagree with us about where the path is for this URL.
170 // Reproduce code path in FrameLoader.cpp -- equalIgnoringCase implicitly
200 const char* path; member in struct:__anon13501::ExpectedComponentCase
214 // url protocol host port user pass path query ref
254 kurl.setPath(cases[i].path);
395 TEST(KURLTest, Path)
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
PositionController.java 22 import com.android.gallery3d.data.Path;
  /prebuilt/common/eclipse/
org.eclipse.equinox.common_3.4.0.v20080421-2006.jar 
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
CropImage.java 53 import com.android.gallery3d.data.Path;
894 Path path = manager.findPathByUri(uri); local
    [all...]
  /external/clang/lib/Frontend/
CompilerInvocation.cpp 30 #include "llvm/Support/Path.h"
579 Res.push_back(E.Path);
587 Res.push_back("-fmodule-cache-path");
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm_ocaml.c     [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
GraphicalEditorPart.java 85 import org.eclipse.core.runtime.Path;
622 String path = res.getLocation().toOSString(); local
624 File newLayoutFolder = new File(path + File.separator + folderName);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/xml/
Hyperlinks.java 87 import org.eclipse.core.runtime.Path;
186 // in the SDK data directory (path found via
533 /** Opens a path (which may not be in the workspace) */
547 // It's not a path in the workspace; look externally
548 // (this is probably an @android: path)
1500 IPath path = new Path(file.getAbsolutePath()); local
    [all...]
  /external/chromium/chrome/browser/ui/gtk/
gtk_chrome_cookie_view.cc 475 cookie.Path().c_str());
  /external/clang/lib/AST/
Expr.cpp     [all...]
  /external/clang/tools/libclang/
CIndexCodeCompletion.cpp 245 std::vector<llvm::sys::Path> TemporaryFiles;
    [all...]
  /external/webkit/Source/WebCore/dom/
make_names.pl 36 use File::Path;
186 # which should follow the default path below.
    [all...]
  /external/webkit/Source/WebCore/svg/
SVGFont.cpp 546 Path glyphPath = identifier.pathData;

Completed in 456 milliseconds

<<11121314151617181920>>