HomeSort by relevance Sort by last modified time
    Searched defs:path (Results 401 - 425 of 4009) sorted by null

<<11121314151617181920>>

  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/xpath/
XMPPathParser.java 77 * @param path
84 public static XMPPath expandXPath(String schemaNS, String path) throws XMPException
86 if (schemaNS == null || path == null)
93 pos.path = path;
100 while (pos.stepEnd < path.length())
104 skipPathDelimiter(path, pos);
110 if (path.charAt(pos.stepBegin) != '[')
139 verifyQualName(pos.path.substring(pos.nameStart, pos.nameEnd));
157 verifyQualName(pos.path.substring(pos.nameStart, pos.nameEnd))
527 public String path = null; field in class:PathPosition
    [all...]
  /frameworks/rs/java/tests/HealingBrush/src/rs/example/android/com/healingbrush/
Region.java 24 import android.graphics.Path;
64 final Path path = new Path(); local
68 path.moveTo(mPointsXY[i] - bounds.left + mCutOffsetX,
71 path.lineTo(mPointsXY[i] - bounds.left + mCutOffsetX,
75 path.close();
90 canvas.drawPath(path, paint1);
91 canvas.drawPath(path, paint2);
114 final Path path = new Path(); local
    [all...]
  /art/runtime/native/
java_lang_VMClassLoader.cc 79 const std::vector<const DexFile*>& path = local
82 jobjectArray array = env->NewObjectArray(path.size(), stringClass, nullptr);
83 for (size_t i = 0; i < path.size(); ++i) {
84 const DexFile* dex_file = path[i];
  /art/test/068-classloader/src/
FancyLoader.java 141 File path = new File(pathName); local
145 raf = new RandomAccessFile(path, "r");
  /art/test/138-duplicate-classes-check2/src/
FancyLoader.java 142 File path = new File(pathName); local
146 raf = new RandomAccessFile(path, "r");
  /bionic/libc/tools/
generate-NOTICE.py 17 def IsUninteresting(path):
18 path = path.lower()
19 if path.endswith(".mk") or path.endswith(".py") or path.endswith(".pyc") or path.endswith(".txt") or path.endswith(".3"):
21 if path.endswith("/notice") or path.endswith("/readme") or path.endswith("/caveats")
116 path = os.path.join(directory, filename) variable
    [all...]
genversion-scripts.py 7 import os.path namespace
13 bionic_libc_root = os.path.join(os.environ["ANDROID_BUILD_TOP"], "bionic/libc")
14 bionic_libm_root = os.path.join(os.environ["ANDROID_BUILD_TOP"], "bionic/libm")
15 bionic_libdl_root = os.path.join(os.environ["ANDROID_BUILD_TOP"], "bionic/libdl")
16 libc_script = os.path.join(bionic_libc_root, "libc.map.txt")
17 libm_script = os.path.join(bionic_libm_root, "libm.map.txt")
18 libdl_script = os.path.join(bionic_libdl_root, "libdl.map.txt")
27 bionic_libc_root = os.path.join(os.environ["ANDROID_BUILD_TOP"], "bionic/libc")
36 basename = os.path.basename(script)
37 dirname = os.path.dirname(script
    [all...]
  /cts/apps/CameraITS/pymodules/its/
target.py 19 import os.path namespace
120 if os.path.isfile(CACHE_FILENAME):
  /cts/apps/CameraITS/tests/dng_noise_model/
dng_noise_model.py 19 import os.path namespace
41 NAME = os.path.basename(__file__).split(".")[0]
  /cts/apps/CameraITS/tests/scene1/
test_capture_result.py 19 import os.path namespace
33 NAME = os.path.basename(__file__).split(".")[0]
  /cts/suite/audio_quality/lib/src/
FileUtil.cpp 64 android::String8 path; local
65 if (path.appendFormat("%s/%s", reportTopDir, reportTime.string()) != 0) {
68 result = mkdir(path.string(), S_IRWXU);
73 mDirPath = path;
74 dirPath = path;
  /cts/tests/tests/rscpp/librscpptest/
rs_jni_type.cpp 65 const char * path = env->GetStringUTFChars(pathObj, nullptr); local
67 mRS->init(path);
68 env->ReleaseStringUTFChars(pathObj, path);
106 const char * path = env->GetStringUTFChars(pathObj, nullptr); local
108 mRS->init(path);
109 env->ReleaseStringUTFChars(pathObj, path);
173 const char * path = env->GetStringUTFChars(pathObj, nullptr); local
175 mRS->init(path);
176 env->ReleaseStringUTFChars(pathObj, path);
  /developers/build/prebuilts/gradle/BeamLargeFiles/Application/src/main/java/com/example/android/common/assetprovider/
AssetProvider.java 62 // interface. Looks up the file indicated by /res/assets/{uri.path}, and returns the MIME
66 String path = uri.getPath(); local
69 if (!fileExists(path)) {
83 // /res/assets/{uri.path} will be returned.
92 String path = uri.getPath(); local
94 return mAssets.openFd(path);
103 * @param path Fully qualified path to file.
106 private boolean fileExists(String path) {
109 mAssets.openFd(path).close()
    [all...]
  /developers/samples/android/common/src/java/com/example/android/common/assetprovider/
AssetProvider.java 62 // interface. Looks up the file indicated by /res/assets/{uri.path}, and returns the MIME
66 String path = uri.getPath(); local
69 if (!fileExists(path)) {
83 // /res/assets/{uri.path} will be returned.
92 String path = uri.getPath(); local
94 return mAssets.openFd(path);
103 * @param path Fully qualified path to file.
106 private boolean fileExists(String path) {
109 mAssets.openFd(path).close()
    [all...]
  /development/samples/Obb/src/com/example/android/obbapp/
ObbMountActivity.java 62 mPath = (TextView) findViewById(R.id.path);
69 mPath.setText(state.path);
80 public void onObbStateChange(String path, int state) {
81 Log.d(TAG, "path=" + path + "; state=" + state);
140 public CharSequence path; field in class:ObbMountActivity.ObbState
142 ObbState(StorageManager storageManager, CharSequence status, CharSequence path) {
145 this.path = path;
  /development/samples/Support4Demos/src/com/example/android/supportv4/content/
SharingSupportProvider.java 76 String path = uri.getPath(); local
78 (path.equals("/foo.txt") || path.equals("/bar.txt"))) {
81 new File(getContext().getFilesDir() + path),
  /development/samples/browseable/BeamLargeFiles/src/com.example.android.common/assetprovider/
AssetProvider.java 62 // interface. Looks up the file indicated by /res/assets/{uri.path}, and returns the MIME
66 String path = uri.getPath(); local
69 if (!fileExists(path)) {
83 // /res/assets/{uri.path} will be returned.
92 String path = uri.getPath(); local
94 return mAssets.openFd(path);
103 * @param path Fully qualified path to file.
106 private boolean fileExists(String path) {
109 mAssets.openFd(path).close()
    [all...]
  /device/google/dragon/recovery/updater/
flash_mtd.c 44 const char *path = params ? params : DEFAULT_MTD_FILE; local
49 dev->fd = open(path, O_RDWR);
51 ALOGE("No MTD device %s : %d\n", path, errno);
56 ALOGE("Cannot get MTD info for %s : %d\n", path, errno);
66 path, dev->info.size, dev->info.erasesize, dev->info.writesize);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/
ClassPathsTest.java 75 String path = reply.getNextValueAsString(); local
76 logWriter.println("\t" + path);
77 if(!(path.length() > 0)){
78 logWriter.println("Path length = "+path.length());
86 String path = reply.getNextValueAsString(); local
87 logWriter.println("\t" + path);
88 assertTrue("Invalid path", path.length() > 0);
  /external/apache-http/src/org/apache/http/cookie/
CookieOrigin.java 52 private final String path; field in class:CookieOrigin
55 public CookieOrigin(final String host, int port, final String path, boolean secure) {
68 if (path == null) {
70 "Path of origin may not be null.");
74 if (path.trim().length() != 0) {
75 this.path = path;
77 this.path = "/";
87 return this.path;
108 buffer.append(this.path);
    [all...]
  /external/autotest/client/bin/
test_config.py 9 from os import path namespace
25 * A valid file path inside the filesystem
42 self.cfg = path.join(tmpdir, path.basename(cfg))
45 # Config is a valid filesystem path to a file.
46 elif path.exists(path.abspath(cfg)):
47 if path.isfile(cfg):
48 self.cfg = path.abspath(cfg)
51 e_msg = 'Invalid config file path: %s' % cf
    [all...]
  /external/autotest/client/deps/fakegudev/src/
gudev-exercise.c 53 printf (" Sysfs path: %s\n", g_udev_device_get_sysfs_path (device));
77 const char *path = data; local
82 if (path[0] == '=') {
84 parts = g_strsplit (path+1, ",", 2);
89 } else if (strncmp (path, "/sys/", 5) == 0) {
90 device = g_udev_client_query_by_sysfs_path (guclient, path);
92 device = g_udev_client_query_by_device_file (guclient, path);
  /external/autotest/client/site_tests/hardware_VideoOutSemiAuto/
hardware_VideoOutSemiAuto.py 6 import os.path namespace
87 if not os.path.isfile(self.XRANDR_PATH):
99 if not os.path.isfile(self.RECONFIG_PATH):
  /external/autotest/client/site_tests/security_RestartJob/
security_RestartJob.py 7 import os.path namespace
60 if os.path.exists(self._FLAGFILE):
  /external/autotest/server/site_tests/network_WiFi_AttenuatedPerf/
network_WiFi_AttenuatedPerf.py 7 import os.path namespace
139 os.mkdir(os.path.join(self.resultsdir, self.TSV_OUTPUT_DIR))
150 result_file = os.path.join(

Completed in 688 milliseconds

<<11121314151617181920>>