Home
last modified time | relevance | path

Searched full:path (Results 1 – 25 of 2072) sorted by relevance

12345678910>>...83

/frameworks/base/docs/html/guide/
D_book.yaml3 path: /guide/index.html
6 path: /guide/components/fundamentals.html
8 path: /guide/practices/compatibility.html
10 path: /guide/topics/security/permissions.html
13 path: /guide/components/index.html
16 path: /guide/components/intents-filters.html
19 path: /guide/components/intents-common.html
21 path: /guide/components/activities.html
24 path: /guide/components/fragments.html
26 path: /guide/components/loaders.html
[all …]
/frameworks/base/docs/html/training/
D_book.yaml3 path: /training/index.html
6 path: /training/basics/firstapp/index.html
12 path: /training/basics/firstapp/creating-project.html
14 path: /training/basics/firstapp/running-app.html
16 path: /training/basics/firstapp/building-ui.html
18 path: /training/basics/firstapp/starting-activity.html
20 path: /training/basics/supporting-devices/index.html
26 path: /training/basics/supporting-devices/languages.html
28 path: /training/basics/supporting-devices/screens.html
30 path: /training/basics/supporting-devices/platforms.html
[all …]
/frameworks/av/services/audiopolicy/engineconfigurable/parameter-framework/examples/Settings/
DPolicyConfigurableDomains.xml11 <ConfigurableElement Path="/Policy/policy/strategies/media/selected_output_devices/mask/fm"/>
12 …<ConfigurableElement Path="/Policy/policy/strategies/media/selected_output_devices/mask/speaker_sa…
13 …<ConfigurableElement Path="/Policy/policy/strategies/media/selected_output_devices/mask/earpiece"/>
14 …<ConfigurableElement Path="/Policy/policy/strategies/media/selected_output_devices/mask/bluetooth_…
15 …<ConfigurableElement Path="/Policy/policy/strategies/media/selected_output_devices/mask/bluetooth_…
16 …<ConfigurableElement Path="/Policy/policy/strategies/media/selected_output_devices/mask/bluetooth_…
17 …<ConfigurableElement Path="/Policy/policy/strategies/media/selected_output_devices/mask/telephony_…
18 <ConfigurableElement Path="/Policy/policy/strategies/media/selected_output_devices/mask/ip"/>
19 <ConfigurableElement Path="/Policy/policy/strategies/media/selected_output_devices/mask/bus"/>
20 … <ConfigurableElement Path="/Policy/policy/strategies/media/selected_output_devices/mask/stub"/>
[all …]
/frameworks/compile/mclinker/lib/Support/
DPath.cpp1 //===- Path.cpp -----------------------------------------------------------===//
9 #include "mcld/Support/Path.h"
34 const Path::StringType separator_str("/");
41 const Path::StringType separator_str("/");
47 // Path
49 Path::Path() : m_PathName() { in Path() function in mcld::sys::fs::Path
52 Path::Path(const Path::ValueType* s) : m_PathName(s) { in Path() function in mcld::sys::fs::Path
55 Path::Path(const Path::StringType& s) : m_PathName(s) { in Path() function in mcld::sys::fs::Path
58 Path::Path(const Path& pCopy) : m_PathName(pCopy.m_PathName) { in Path() function in mcld::sys::fs::Path
61 Path::~Path() { in ~Path()
[all …]
/frameworks/base/docs/html/ndk/guides/
D_book.yaml3 path: /ndk/guides/index.html
6 path: /ndk/guides/setup.html
8 path: /ndk/guides/concepts.html
11 path: /ndk/guides/build.html
14 path: /ndk/guides/android_mk.html
16 path: /ndk/guides/application_mk.html
18 path: /ndk/guides/ndk-build.html
20 path: /ndk/guides/standalone_toolchain.html
23 path: /ndk/guides/arch.html
26 path: /ndk/guides/abis.html
[all …]
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
DPathsCacheActivity.java23 import android.graphics.Path;
33 private Path mPath;
37 private final ArrayList<Path> mPathList = new ArrayList<Path>();
49 private static Path makePath() { in makePath()
50 Path path = new Path(); in makePath() local
51 buildPath(path); in makePath()
52 return path; in makePath()
55 private static void buildPath(Path path) { in buildPath() argument
56 path.moveTo(0.0f, 0.0f); in buildPath()
57 path.cubicTo(0.0f, 0.0f, 100.0f, 150.0f, 100.0f, 200.0f); in buildPath()
[all …]
DPathDestructionActivity.java23 import android.graphics.Path;
31 * scheme in particular, because we should be able to have the Java-level path finalized
32 * without destroying the underlying native path object until we are done referencing it
58 private Path getRandomPath() { in getRandomPath()
64 Path path = new Path(); in getRandomPath() local
65 path.moveTo(left, top); in getRandomPath()
66 path.lineTo(right, top); in getRandomPath()
67 path.lineTo(right, bottom); in getRandomPath()
68 path.lineTo(left, bottom); in getRandomPath()
69 path.close(); in getRandomPath()
[all …]
DTextOnPathActivity.java23 import android.graphics.Path;
30 private Path mPath;
31 private Path mStraightPath;
44 private static Path makePath() { in makePath()
45 Path path = new Path(); in makePath() local
46 buildPath(path); in makePath()
47 return path; in makePath()
50 private static void buildPath(Path path) { in buildPath() argument
51 path.moveTo(0.0f, 0.0f); in buildPath()
52 path.cubicTo(0.0f, 0.0f, 100.0f, 150.0f, 100.0f, 200.0f); in buildPath()
[all …]
/frameworks/base/graphics/java/android/graphics/
DPath.java23 * The Path class encapsulates compound (multiple contour) geometric paths
25 * It can be drawn with canvas.drawPath(path, paint), either filled or stroked
27 * text on a path.
29 public class Path { class
46 * Create an empty path
48 public Path() { in Path() method in Path
53 * Create a new path, copying the contents from the src path.
55 * @param src The path to copy from when initializing the new path
57 public Path(Path src) { in Path() method in Path
70 * Clear any lines and curves from the path, making it empty.
[all …]
DPathMeasure.java20 private Path mPath;
24 * of a path, and/or to find the position and tangent along it, call
27 * Note that once a path is associated with the measure object, it is
28 * undefined if the path is subsequently modified and the the measure object
29 * is used. If the path is modified, you must call setPath with the path.
37 * Create a PathMeasure object associated with the specified path object
39 * path's length, and the position and tangent of any position along the
40 * path.
42 * Note that once a path is associated with the measure object, it is
43 * undefined if the path is subsequently modified and the the measure object
[all …]
/frameworks/base/docs/html/design/
D_book.yaml3 path: /design/get-started/creative-vision.html
6 path: /design/get-started/principles.html
23 path: /design/patterns/new.html
26 path: /design/material/index.html
38 path: /design/devices.html
41 path: /design/handhelds/index.html
43 path: /design/wear/index.html
46 path: /design/wear/creative-vision.html
48 path: /design/wear/principles.html
50 path: /design/wear/structure.html
[all …]
/frameworks/base/docs/html/ndk/reference/
D_book.yaml3 path: /ndk/reference/group___asset.html
6 path: /ndk/reference/asset__manager_8h.html
8 path: /ndk/reference/asset__manager__jni_8h.html
11 path: /ndk/reference/group___bitmap.html
14 path: /ndk/reference/bitmap_8h.html
17 path: /ndk/reference/group___configuration.html
20 path: /ndk/reference/configuration_8h.html
23 path: /ndk/reference/group___input.html
26 path: /ndk/reference/input_8h.html
28 path: /ndk/reference/keycodes_8h.html
[all …]
/frameworks/compile/mclinker/include/mcld/Support/
DPath.h1 //===- Path.h -------------------------------------------------------------===//
9 // This file declares the mcld::sys::fs::Path. It follows TR2/boost
11 // path class.
40 /** \class Path
41 * \brief Path provides an abstraction for the path to a file or directory in
44 class Path {
50 Path();
51 explicit Path(const ValueType* s);
52 explicit Path(const StringType& s);
53 Path(const Path& pCopy);
[all …]
/frameworks/native/cmds/installd/tests/
Dinstalld_utils_test.cpp54 android_app_dir.path = (char*) TEST_APP_DIR; in SetUp()
57 android_app_private_dir.path = (char*) TEST_APP_PRIVATE_DIR; in SetUp()
60 android_data_dir.path = (char*) TEST_DATA_DIR; in SetUp()
63 android_asec_dir.path = (char*) TEST_ASEC_DIR; in SetUp()
66 android_mnt_expand_dir.path = (char*) TEST_EXPAND_DIR; in SetUp()
72 android_system_dirs.dirs[0].path = (char*) TEST_SYSTEM_DIR1; in SetUp()
75 android_system_dirs.dirs[1].path = (char*) TEST_SYSTEM_DIR2; in SetUp()
88 << badprefix1 << " should be allowed as a valid path"; in TEST_F()
92 << badprefix2 << " should be allowed as a valid path"; in TEST_F()
96 << badprefix3 << " should be allowed as a valid path"; in TEST_F()
[all …]
/frameworks/base/core/java/android/view/animation/
DPathInterpolator.java22 import android.graphics.Path;
30 * An interpolator that can traverse a Path that extends from <code>Point</code>
31 * <code>(0, 0)</code> to <code>(1, 1)</code>. The x coordinate along the <code>Path</code>
33 * This means that the Path must conform to a function <code>y = f(x)</code>.
35 * <p>The <code>Path</code> must not have gaps in the x direction and must not
39 * Path path = new Path();
40 * path.lineTo(0.25f, 0.25f);
41 * path.moveTo(0.25f, 0.5f);
42 * path.lineTo(1f, 1f);
47 // This governs how accurate the approximation of the Path is.
[all …]
/frameworks/base/docs/html/google/
D_book.yaml3 path: /google/play/billing/index.html
9 path: /google/play/billing/billing_overview.html
14 path: /google/play/billing/api.html
20 path: /google/play/billing/billing_integrate.html
22 path: /google/play/billing/billing_reference.html
24 path: /google/play/billing/billing_subscriptions.html
26 path: /google/play/billing/billing_promotions.html
28 path: /google/play/billing/billing_best_practices.html
33 path: /google/play/billing/billing_testing.html
38 path: /google/play/billing/billing_admin.html
[all …]
/frameworks/base/docs/html/reference/android/support/test/
D_book.yaml4 path: /reference/android/support/test/package-summary.html
7 path: /reference/android/support/test/annotation/package-summary.html
10 path: /reference/android/support/test/espresso/package-summary.html
13 path: /reference/android/support/test/espresso/action/package-summary.html
16 path: /reference/android/support/test/espresso/assertion/package-summary.html
19 path: /reference/android/support/test/espresso/base/package-summary.html
22 path: /reference/android/support/test/espresso/contrib/package-summary.html
25 path: /reference/android/support/test/espresso/idling/package-summary.html
28 path: /reference/android/support/test/espresso/intent/package-summary.html
31 path: /reference/android/support/test/espresso/intent/matcher/package-summary.html
[all …]
/frameworks/base/core/tests/coretests/src/android/os/storage/
DStorageManagerBaseTest.java81 * @param obbFilePath path to the OBB image file
82 * @param pathToContentsFile path to a file on the mounted OBB volume to open after the OBB
88 assertTrue("path to contents file cannot be null!", pathToContentsFile != null); in MountingObbThread()
100 // the official OBB file path and the mount-request file path should be the same, but in run()
140 * Returns the official path of the OBB file that was mounted
142 * This is not the mount path, but the normalized path to the actual OBB file
144 * @return a {@link String} representation of the path to the OBB file that was mounted
171 public void onObbStateChange(String path, int state) { in onObbStateChange() argument
175 Log.i(LOG_TAG, "OfficialPath is now: " + path); in onObbStateChange()
177 mOfficialPath = path; in onObbStateChange()
[all …]
/frameworks/av/media/libmedia/
DMediaScanner.cpp69 char * path = strtok(skipList, ","); in loadSkipList() local
71 while (path) { in loadSkipList()
72 mSkipIndex[i++] = strlen(path); in loadSkipList()
73 path = strtok(NULL, ","); in loadSkipList()
82 const char *path, MediaScannerClient &client) { in processDirectory() argument
83 int pathLength = strlen(path); in processDirectory()
93 strcpy(pathBuffer, path); in processDirectory()
109 bool MediaScanner::shouldSkipDirectory(char *path) { in shouldSkipDirectory() argument
110 if (path && mSkipList && mSkipIndex) { in shouldSkipDirectory()
111 int len = strlen(path); in shouldSkipDirectory()
[all …]
/frameworks/base/docs/html/wear/
D_book.yaml3 path: /wear/preview/start.html
6 path: /wear/design/user-interface.html
9 path: /wear/design/index.html
12 path: /wear/notifications/creating.html
15 path: /wear/notifications/remote-input.html
18 path: /wear/notifications/pages.html
21 path: /wear/notifications/stacks.html
24 path: /reference/android/preview/support/package-summary.html
29 path: /reference/android/preview/support/v4/app/NotificationManagerCompat.html
33 path: /reference/android/preview/support/wearable/notifications/RemoteInput.html
[all …]
/frameworks/base/docs/html/about/
D_book.yaml3 path: /about/versions/marshmallow/index.html
6 path: /about/versions/marshmallow/android-6.0.html
8 path: /about/versions/marshmallow/android-6.0-changes.html
10 path: /about/versions/marshmallow/samples.html
13 path: /about/versions/lollipop.html
16 path: /about/versions/android-5.1.html
18 path: /about/versions/android-5.0.html
33 path: /about/versions/android-5.0-changes.html
36 path: /about/versions/kitkat.html
39 path: /about/versions/android-4.4.html
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/misc/
DFreePathInterpolator.java19 import android.graphics.Path;
24 * An interpolator that can traverse a Path. The x coordinate along the <code>Path</code>
26 * This means that the Path must conform to a function <code>y = f(x)</code>.
28 * <p>The <code>Path</code> must not have gaps in the x direction and must not
32 * Path path = new Path();
33 * path.lineTo(0.25f, 0.25f);
34 * path.moveTo(0.25f, 0.5f);
35 * path.lineTo(1f, 1f);
40 // This governs how accurate the approximation of the Path is.
48 * Create an interpolator for an arbitrary <code>Path</code>.
[all …]
/frameworks/base/core/java/android/util/
DPathParser.java17 import android.graphics.Path;
26 * @param pathString The string representing a path, the same as "d" string in svg file.
27 * @return the generated Path object.
29 public static Path createPathFromPathData(String pathString) { in createPathFromPathData()
31 throw new IllegalArgumentException("Path string can not be null."); in createPathFromPathData()
33 Path path = new Path(); in createPathFromPathData() local
34 nParseStringForPath(path.mNativePath, pathString, pathString.length()); in createPathFromPathData()
35 return path; in createPathFromPathData()
39 * Interpret PathData as path commands and insert the commands to the given path.
42 * @param outPath The Path object where path commands will be inserted.
[all …]
/frameworks/support/v4/donut/android/support/v4/view/animation/
DPathInterpolatorDonut.java19 import android.graphics.Path;
24 * A path interpolator implementation compatible with API 4+.
29 * Governs the accuracy of the approximation of the {@link Path}.
36 public PathInterpolatorDonut(Path path) { in PathInterpolatorDonut() argument
37 final PathMeasure pathMeasure = new PathMeasure(path, false /* forceClosed */); in PathInterpolatorDonut()
98 private static Path createQuad(float controlX, float controlY) { in createQuad()
99 final Path path = new Path(); in createQuad() local
100 path.moveTo(0.0f, 0.0f); in createQuad()
101 path.quadTo(controlX, controlY, 1.0f, 1.0f); in createQuad()
102 return path; in createQuad()
[all …]
/frameworks/base/core/tests/coretests/src/android/app/backup/
DFullBackupTest.java60 "<include path=\"onlyInclude.txt\" domain=\"file\"/>" + in testparseBackupSchemeFromXml_onlyInclude()
71 assertEquals("Invalid path parsed for <include/>", in testparseBackupSchemeFromXml_onlyInclude()
79 "<exclude path=\"onlyExclude.txt\" domain=\"file\"/>" + in testparseBackupSchemeFromXml_onlyExclude()
87 assertEquals("Invalid path parsed for <exclude/>", in testparseBackupSchemeFromXml_onlyExclude()
95 "<exclude path=\"exclude.txt\" domain=\"file\"/>" + in testparseBackupSchemeFromXml_includeAndExclude()
96 "<include path=\"include.txt\" domain=\"file\"/>" + in testparseBackupSchemeFromXml_includeAndExclude()
104 assertEquals("Invalid path parsed for <include/>", in testparseBackupSchemeFromXml_includeAndExclude()
109 assertEquals("Invalid path parsed for <exclude/>", in testparseBackupSchemeFromXml_includeAndExclude()
117 "<exclude path=\"exclude1.txt\" domain=\"file\"/>" + in testparseBackupSchemeFromXml_lotsOfIncludesAndExcludes()
118 "<include path=\"include1.txt\" domain=\"file\"/>" + in testparseBackupSchemeFromXml_lotsOfIncludesAndExcludes()
[all …]

12345678910>>...83