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

<<11121314151617181920>>

  /external/clang/tools/libclang/
CIndexCodeCompletion.cpp 226 std::vector<llvm::sys::Path> TemporaryFiles;
  /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:__anon13309::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:__anon13309::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/Serialization/
ASTReader.cpp 46 #include "llvm/Support/Path.h"
    [all...]
  /external/clang/lib/CodeGen/
CGVTables.cpp 39 /// VirtualBase - If the path from the derived class to the base class
45 /// path from the derived class to the base class involves a virtual base
218 const CXXBasePath &Path) {
225 for (unsigned I = 0, E = Path.size(); I != E; ++I) {
226 const CXXBasePathElement &Element = Path[I];
230 // (If we can't, can't we just iterate over the path in reverse order?)
239 for (unsigned I = NonVirtualStart, E = Path.size(); I != E; ++I) {
240 const CXXBasePathElement &Element = Path[I];
647 // Fast-path matches in the canonical types.
    [all...]
  /external/clang/lib/Frontend/
CompilerInvocation.cpp 30 #include "llvm/Support/Path.h"
541 Res.push_back(E.Path);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
GraphicalEditorPart.java 84 import org.eclipse.core.runtime.Path;
618 String path = res.getLocation().toOSString(); local
620 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 89 import org.eclipse.core.runtime.Path;
188 // in the SDK data directory (path found via
535 /** Opens a path (which may not be in the workspace) */
559 // It's not a path in the workspace; look externally
560 // (this is probably an @android: path)
1512 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/chromium/chrome/browser/ui/views/tabs/
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/lib/AST/
Expr.cpp     [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;
SVGUseElement.cpp 671 void SVGUseElement::toClipPath(Path& path) const
673 ASSERT(path.isEmpty());
682 document()->accessSVGExtensions()->reportError("Not allowed to use indirect reference in <clip-path>");
684 static_cast<SVGStyledTransformableElement*>(n)->toClipPath(path);
685 path.translate(FloatSize(x().value(this), y().value(this)));
686 path.transform(animatedLocalTransform());
    [all...]
  /external/iproute2/doc/
ip-tunnels.tex 89 inner packet to outer one. It means that path traversed by tunneled
247 \item \verb|nopmtudisc| --- disable Path MTU Discovery on this tunnel.
333 and to enable reversed path filter (\verb|rp_filter| sysctl option) on
  /external/webkit/Tools/Scripts/
old-run-webkit-tests 60 use File::Path;
280 --additional-platform-directory path/to/directory
282 --complex-text Use the complex text code path for all text (Mac OS X and Windows only)
307 --root Path to root tools build
760 # Format expected hash into a suffix string that is appended to the path / URL passed to DRT
780 my $path = canonpath($test);
785 $path =~ s/^http\/tests\///;
786 print OUT "http://127.0.0.1:$httpdPort/$path\n";
797 my $path = canonpath($test);
798 $path =~ s/^http\/tests\///
    [all...]

Completed in 4723 milliseconds

<<11121314151617181920>>