HomeSort by relevance Sort by last modified time
    Searched refs:Path (Results 501 - 525 of 897) sorted by null

<<21222324252627282930>>

  /cts/tests/tests/graphics/src/android/graphics/cts/
PaintTest.java 27 import android.graphics.Path;
599 Path path1 = new Path();
600 Path path2 = new Path();
944 Path path = new Path();
946 assertTrue(path.isEmpty());
947 p.getTextPath(chars, 0, 7, 0, 0, path);
    [all...]
RegionTest.java 19 import android.graphics.Path;
1392 Path path = new Path(); local
1401 Path path = new Path(); local
1427 Path path = new Path(); local
    [all...]
CanvasTest.java 28 import android.graphics.Path;
36 import android.graphics.Path.Direction;
958 final Path p = new Path();
964 final Path p = new Path();
1028 final Path p = new Path();
1748 final Path path = new Path(); local
1775 final Path path = new Path(); local
    [all...]
  /external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
js_fs_test.cc 492 ASSERT_EQ(true, SetDictKeyValue(&expected, "path", "/foo"));
509 EXPECT_EQ(0, fs_->Open(Path("/foo"), O_RDONLY, &node_));
528 ASSERT_EQ(true, SetDictKeyValue(&expected, "path", "/foo"));
539 EXPECT_EQ(0, fs_->Access(Path("/foo"), a_mode));
547 ASSERT_EQ(true, SetDictKeyValue(&expected, "path", "/foo"));
560 EXPECT_EQ(0, fs_->Open(Path("/foo"), O_RDONLY, &node));
569 ASSERT_EQ(true, SetDictKeyValue(&expected, "path", "/foo"));
579 EXPECT_EQ(0, fs_->Unlink(Path("/foo")));
587 ASSERT_EQ(true, SetDictKeyValue(&expected, "path", "/foo"));
598 EXPECT_EQ(0, fs_->Mkdir(Path("/foo"), 0644))
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
FingerPaint.java 65 private Path mPath;
71 mPath = new Path();
111 // commit the path to our offscreen
  /external/chromium_org/chrome/browser/browsing_data/
browsing_data_cookie_helper.cc 208 cookie->Path() == add_cookie.Path()) {
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderEmbeddedObject.cpp 41 #include "platform/graphics/Path.h"
138 Path path; local
143 if (!getReplacementTextGeometry(paintOffset, contentRect, path, replacementTextRect, font, run, textWidth))
150 context->fillPath(path);
162 bool RenderEmbeddedObject::getReplacementTextGeometry(const LayoutPoint& accumulatedOffset, FloatRect& contentRect, Path& path, FloatRect& replacementTextRect, Font& font, TextRun& run, float& textWidth) const
186 path.addRoundedRect(replacementTextRect, FloatSize(replacementTextRoundedRectRadius, replacementTextRoundedRectRadius));
  /external/lldb/examples/test/
usage-pre-post-flight 12 Path: /Volumes/data/lldb/svn/ToT
  /external/llvm/include/llvm/ProfileData/
InstrProfReader.h 97 static std::error_code create(std::string Path,
297 create(std::string Path, std::unique_ptr<IndexedInstrProfReader> &Result);
  /external/llvm/lib/Support/
Android.mk 48 Path.cpp \
  /frameworks/compile/mclinker/tools/mcld/lib/
TripleOptions.cpp 12 #include <mcld/Support/Path.h>
55 std::string ProgName(mcld::sys::fs::Path(pProgName).stem().native());
  /frameworks/compile/mclinker/unittests/
ELFReaderTest.cpp 17 #include <mcld/Support/Path.h>
63 Path path(TOPDIR);
64 path.append("unittests/test_x86_64.o");
66 m_pInput = m_pIRBuilder->ReadInput("test_x86_64", path);
FactoriesTest.cpp 187 sys::fs::Path(string(path_name)),
204 sys::fs::Path(string(path_name)),
  /packages/apps/Gallery2/src/com/android/photos/shims/
MediaItemsLoader.java 35 import com.android.gallery3d.data.Path;
67 String path = mDataManager.getTopSetPath(DataManager.INCLUDE_ALL); local
68 mMediaSet = mDataManager.getMediaSet(path);
173 public void deleteItemWithPath(Object path) {
174 MediaObject o = mDataManager.getMediaObject((Path) path);
MediaSetLoader.java 31 import com.android.gallery3d.data.Path;
65 String path = mDataManager.getTopSetPath(DataManager.INCLUDE_ALL); local
66 mMediaSet = mDataManager.getMediaSet(path);
69 public MediaSetLoader(Context context, String path) {
72 mMediaSet = mDataManager.getMediaSet(path);
175 public void deleteItemWithPath(Object path) {
176 MediaObject o = mDataManager.getMediaObject((Path) path);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
GestureTrailDrawingPoints.java 22 import android.graphics.Path;
205 final Path path = roundedLine.makePath(p1x, p1y, body1, p2x, p2y, body2); local
206 if (!path.isEmpty()) {
218 canvas.drawPath(path, paint);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
virtdisk.h 289 PCWSTR Path,
348 PCWSTR Path,
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/actions/
DexDumpAction.java 37 import org.eclipse.core.runtime.Path;
228 EFS.getLocalFileSystem().getStore(new Path(dstPath));
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
RenderScriptLauncher.java 33 import org.eclipse.core.runtime.Path;
49 * Single line llvm-rs-cc error: {@code <path>:<line>:<col>: <error>}
197 // get the file path. This may, or may not be the main file being compiled.
208 // remove starting separator since we want the path to be relative
214 IFile f = mProject.getFile(new Path(filePath));
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
AndroidClasspathContainerPage.java 26 import org.eclipse.core.runtime.Path;
67 IPath path = new Path(AdtConstants.CONTAINER_FRAMEWORK); local
75 path = path.append(selectedProjectName);
79 return JavaCore.newContainerEntry(path);
84 final IPath path = cpentry == null ? null : cpentry.getPath(); local
86 if (path == null || path.segmentCount() == 1) {
91 this.mLibsProjectName = path.segment(1)
    [all...]
ProjectHelper.java 49 import org.eclipse.core.runtime.Path;
78 * Adds the given ClasspathEntry object to the class path entries.
81 * @param entries The class path entries to read. A copy will be returned.
82 * @param newEntry The new class path entry to add.
83 * @return A new class path entries array.
97 * If the classpath does not yet exists (Check is based on entry path), then it is added.
99 * @param entries The class path entries to read. The same array (replace) or a copy (add)
101 * @param newEntry The new class path entry to add.
109 IPath path = newEntry.getPath(); local
111 if (path.equals(entries[i].getPath()))
216 IPath path = entry.getPath(); local
253 IPath path = entry.getPath(); local
339 IPath path = entry.getPath(); local
348 String path = entry.getPath().toString(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
NewProjectWizardState.java 33 import org.eclipse.core.runtime.Path;
83 /** The package path */
106 /** Path to the currently chosen sample */
197 * @param path the path to the project to extract information from
199 public void extractFromAndroidManifest(Path path) {
200 String osPath = path.append(SdkConstants.FN_ANDROID_MANIFEST_XML).toOSString();
286 updateSdkTargetToMatchProject(path.toFile());
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/mock/
Mocks.java 40 import org.eclipse.core.runtime.Path;
128 expect(file.getLocation()).andReturn(new Path(fileName)).anyTimes();
145 // expect(file.getLocation()).andReturn(new Path(name)).anyTimes();
154 // expect(file.getLocation()).andReturn(new Path(name)).anyTimes();
182 public static IClasspathEntry createClasspathEntry(IPath path, int kind) {
185 expect(entry.getPath()).andReturn(path).anyTimes();
  /external/lzma/CPP/7zip/UI/Common/
OpenArchive.cpp 115 const UString fileName = ExtractFileNameFromPath(Path);
342 if (!fileStreamSpec->Open(Path))
405 arc.Path = filePath;
444 RINOK(arc.GetItemPath(mainSubfile, arc2.Path));
449 setSubArchiveName->SetSubArchiveName(arc2.Path);
  /packages/apps/Browser/src/com/android/browser/view/
PieMenu.java 28 import android.graphics.Path;
85 private Path mPath;
351 private Path makeSlice(float start, float end, int outer, int inner, Point center) {
358 Path path = new Path(); local
359 path.arcTo(bb, start, end - start, true);
360 path.arcTo(bbi, end, start - end);
361 path.close();
362 return path;
    [all...]

Completed in 1867 milliseconds

<<21222324252627282930>>