/external/webkit/PerformanceTests/SunSpider/ |
sunspider-compare-results | 39 Usage: $programName --shell=[path] [options] FILE FILE 41 --shell Path to javascript shell 109 my ($contents, $path) = @_; 110 open FILE, ">", $path or die; 117 my ($path) = @_; 118 open FILE, "<", $path or die;
|
/external/webkit/Source/WebCore/platform/graphics/cairo/ |
CairoUtilities.cpp | 35 #include "Path.h" 78 void appendWebCorePathToCairoContext(cairo_t* context, const Path& path) 80 appendPathToCairoContext(context, path.platformPath()->context());
|
/external/webkit/Source/WebCore/platform/graphics/win/ |
GraphicsContextWin.cpp | 39 #include "Path.h" 159 void GraphicsContextPlatformPrivate::clip(const Path&)
|
/external/webkit/Source/WebCore/svg/ |
SVGCircleElement.cpp | 145 void SVGCircleElement::toPathData(Path& path) const 147 ASSERT(path.isEmpty()); 154 path.addEllipse(FloatRect(cx().value(this) - radius, cy().value(this) - radius, radius * 2, radius * 2));
|
SVGEllipseElement.cpp | 156 void SVGEllipseElement::toPathData(Path& path) const 158 ASSERT(path.isEmpty()); 168 path.addEllipse(FloatRect(cx().value(this) - radiusX, cy().value(this) - radiusY, radiusX * 2, radiusY * 2));
|
SVGLineElement.cpp | 152 void SVGLineElement::toPathData(Path& path) const 154 ASSERT(path.isEmpty()); 156 path.moveTo(FloatPoint(x1().value(this), y1().value(this))); 157 path.addLineTo(FloatPoint(x2().value(this), y2().value(this)));
|
SVGPathElement.h | 96 virtual void toPathData(Path&) const;
|
/external/webkit/Tools/Scripts/ |
run-sunspider | 58 --root Path to root tools build
|
/packages/apps/Gallery2/src/com/android/gallery3d/ui/ |
AlbumSetSlidingWindow.java | 28 import com.android.gallery3d.data.Path; 72 public Path setPath; 392 Path path = set.setPath; local 400 getRotation(), path, sourceType, mMediaType, 451 Path path = set.getPath(); local 452 if (MediaSetUtils.isCameraSource(path)) { 457 String prefix = path.getPrefix();
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/ |
ProjectHelper.java | 40 import org.eclipse.core.runtime.Path; 64 * Adds the corresponding source folder to the class path entries. 67 * @param entries The class path entries to read. A copy will be returned. 68 * @param newEntry The new class path entry to add. 69 * @return A new class path entries array. 81 * Adds the corresponding source folder to the project's class path entries. 84 * @param javaProject The java project of which path entries to update. 85 * @param newEntry The new class path entry to add. 97 * Checks whether the given class path entry is already defined in the project. 99 * @param javaProject The java project of which path entries to check 176 IPath path = entry.getPath(); local 213 IPath path = entry.getPath(); local 280 IPath path = entry.getPath(); local 289 String path = entry.getPath().toString(); local [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/ |
ProjectNamePage.java | 35 import org.eclipse.core.runtime.Path; 278 * the location path is enabled when using the "existing source" mode (i.e. not new project) 296 * Display a directory browser and update the location path field with the selected path 302 // Disable the path if it doesn't exist 346 * Updates the location directory path field. 355 * @param absDir A new absolute directory path or null to use the default. 369 // the exact same path. 399 mValues.extractFromAndroidManifest(new Path(mValues.projectLocation.getPath())); 438 Path path = new Path(mValues.projectLocation.getPath()) local [all...] |
/external/clang/lib/Driver/ |
Driver.cpp | 39 #include "llvm/Support/Path.h" 81 Name = llvm::sys::path::stem(ClangExecutable); 82 Dir = llvm::sys::path::parent_path(ClangExecutable); 84 // Compute the path to the resource directory. 88 llvm::sys::path::append(P, ClangResourceDir); 90 llvm::sys::path::append(P, "..", "lib", "clang", CLANG_VERSION_STRING); 470 const char *path = it->c_str(); local 471 if (path[0] == '=') 472 llvm::outs() << sysroot << path + 1; local 474 llvm::outs() << path; [all...] |
/frameworks/base/core/java/android/text/ |
Layout.java | 22 import android.graphics.Path; 189 * Draw this Layout on the specified canvas, with the highlight path drawn 193 * @param highlight the path of the highlight or cursor; can be null 198 public void draw(Canvas c, Path highlight, Paint highlightPaint, [all...] |
BoringLayout.java | 21 import android.graphics.Path; 395 public void draw(Canvas c, Path highlight, Paint highlightpaint,
|
/external/chromium/chrome/browser/automation/ |
automation_util.cc | 74 cookie.Path(), cookie.ExpiryDate(), cookie.IsSecure(), 217 cookie_dict->SetString("path", cookie.Path()); 277 std::string path = "/"; local 294 if (cookie_dict->HasKey("path") && 295 !cookie_dict->GetString("path", &path)) { 296 reply.SendError("optional 'path' invalid"); 321 GURL(url), name, value, domain, path, base::Time(),
|
/external/clang/include/clang/Frontend/ |
ASTUnit.h | 30 #include "llvm/Support/Path.h" 163 llvm::SmallVector<llvm::sys::Path, 4> TemporaryFiles; 428 void addTemporaryFile(const llvm::sys::Path &TempFile) { 628 /// \param ResourceFilesPath - The path to the compiler resource files.
|
/external/llvm/lib/Support/ |
MemoryBuffer.cpp | 19 #include "llvm/Support/Path.h" 180 /// sys::Path::MapInFilePages method. When destroyed, it calls the 181 /// sys::Path::UnMapFilePages method. 195 sys::Path::UnMapFilePages(reinterpret_cast<const char*>(RealStart), 209 // Ensure the path is null terminated. 249 // file descriptor is cheaper than stat on a random path. 286 // file descriptor is cheaper than stat on a random path. 304 if (const char *Pages = sys::Path::MapInFilePages(FD,
|
/external/qemu/distrib/sdl-1.2.12/src/cdrom/beos/ |
SDL_syscdrom.cc | 37 #include <Path.h> 216 BPath path; local 220 if(entry.GetPath(&path) != B_NO_ERROR) 222 name = path.Path();
|
/external/webkit/Source/WebCore/platform/graphics/mac/ |
GraphicsContextMac.mm | 60 void GraphicsContext::drawFocusRing(const Path& path, int width, int /*offset*/, const Color& color) 70 drawFocusRingToContext(platformContext(), path.platformPath(), colorRef, radius);
|
/external/webkit/Source/WebCore/rendering/svg/ |
RenderSVGResourceClipper.cpp | 109 // If the current clip-path gets clipped itself, we have to fallback to masking. 113 Path clipPath = Path(); 115 // If clip-path only contains one visible shape or path, we can use path-based clipping. Invisible 116 // shapes don't affect the clipping and can be ignored. If clip-path contains more than one 134 // Current shape in clip-path gets clipped too. Fallback to masking. 137 // Fallback to masking, if there is more than one clipping path. 144 // Only one visible shape/path was found. Directly continue clipping and transform the content to userspace if necessary [all...] |
/external/webkit/Source/WebCore/xml/ |
XPathGrammar.y | 434 $$ = new Path(static_cast<Filter*>($1), $3); 444 $$ = new Path(static_cast<Filter*>($1), $3);
|
/frameworks/compile/libbcc/runtime/make/ |
lib_platforms.mk | 24 $(call Set,$(PlatformKey).Path,$(1))
|
/frameworks/compile/slang/ |
slang.cpp | 63 #include "llvm/Support/Path.h" 125 llvm::sys::path::parent_path(OutputFile), Error)) { 328 llvm::sys::Path OutputFilePath(OutputFile); 366 llvm::sys::Path OutputFilePath(OutputFile);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/actions/ |
DexDumpAction.java | 31 import org.eclipse.core.runtime.Path; 183 EFS.getLocalFileSystem().getStore(new Path(dstPath));
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/assetstudio/ |
CreateAssetSetWizard.java | 34 import org.eclipse.core.runtime.Path; 108 IPath dest = new Path(relativePath); 212 TreePath path = new TreePath(segments.toArray()); local 213 pathList.add(path);
|