HomeSort by relevance Sort by last modified time
    Searched refs:exists (Results 51 - 75 of 1845) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/jsilver/src/com/google/clearsilver/jsilver/values/
StringValue.java 41 public boolean exists() { method in class:StringValue
  /external/llvm/bindings/python/llvm/tests/
base.py 28 if os.path.exists(path):
  /external/chromium_org/content/renderer/
shared_worker_repository.cc 28 bool exists = false; local
38 params, &exists, &route_id, &url_mismatch));
44 exists,
  /external/chromium_org/third_party/sqlite/src/test/
thread_common.tcl 14 if {[info exists ::thread_procs]} {
98 if {![info exists ::tcl_platform(threaded)]} {
101 if {[info exists zProblem]} {
  /external/chromium_org/tools/
include_tracer.py 150 if os.path.exists(basename + '.proto'):
170 if os.path.exists(os.path.join(root, filename)):
175 if os.path.exists(resolved_filename):
  /external/srec/srec/Session/src/
SR_Session.c 33 ESR_BOOL exists; local
61 if (ESR_SessionExists(&exists) == ESR_SUCCESS)
63 if (exists)
  /external/protobuf/python/
setup.py 19 if os.path.exists("../src/protoc"):
21 elif os.path.exists("../src/protoc.exe"):
28 .proto file. Does nothing if the output already exists and is newer than
33 if not os.path.exists(source):
37 if (not os.path.exists(output) or
38 (os.path.exists(source) and
  /development/tools/idegen/src/com/android/idegen/
DirectorySearch.java 98 if (!file.exists()) {
122 if (!file.exists()) {
131 if (resFile.exists()) {
156 if (templateDirCurrent != null && templateDirCurrent.exists()) return templateDirCurrent;
157 if (templateDirRoot != null && templateDirRoot.exists()) return templateDirRoot;
170 if (templateDirCurrent.exists()) {
175 if (templateDirRoot.exists()) {
  /external/v8/test/test262/
testcfg.py 31 from os.path import join, exists namespace
107 if not exists(directory_name) or not exists(archive_name):
108 if not exists(archive_name):
111 if not exists(directory_name):
121 if not exists(join(self.root, 'data')):
129 if exists(status_file):
  /external/chromium_org/chrome/browser/chromeos/system/
input_device_settings.cc 49 // Executes the input control script asynchronously, if it exists.
98 scoped_refptr<RefCountedBool> exists) {
100 exists->data = false;
109 exists->data = base::GetAppOutput(CommandLine(argv), &output) &&
111 DVLOG(1) << "DeviceExistsBlockingPool:" << script << "=" << exists->data;
114 void RunCallbackUIThread(scoped_refptr<RefCountedBool> exists,
117 DVLOG(1) << "RunCallbackUIThread " << exists->data;
118 callback.Run(exists->data);
127 scoped_refptr<RefCountedBool> exists(new RefCountedBool(false));
133 base::Bind(&DeviceExistsBlockingPool, script, exists),
    [all...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
ContextTest.java 69 assertThat(dataDir.exists(), is(true));
76 assertThat(dataDir.exists(), is(false));
80 assertThat(dataDir.exists(), is(true));
93 assertTrue(context.getCacheDir().exists());
98 assertTrue(context.getExternalCacheDir().exists());
116 assertTrue(cacheTest.exists());
135 assertTrue(cacheTest.exists());
140 assertTrue(context.getFilesDir().exists());
145 assertTrue(context.getExternalFilesDir(null).exists());
151 assertTrue(f.exists());
    [all...]
  /development/testrunner/
create_test.py 90 Does nothing if tests/AndroidManifest.xml already exists.
100 # skip if file already exists
103 if os.path.exists(tests_manifest_path):
104 _PrintMessage("%s already exists, not overwritten" % tests_manifest_path)
114 if not os.path.exists(tests_path):
127 Does nothing if tests/Android.mk already exists.
137 # skip if file already exists
140 if os.path.exists(tests_mk_path):
141 _PrintMessage("%s already exists, not overwritten" % tests_mk_path)
164 if not os.path.exists(tests_path)
    [all...]
  /device/asus/deb/self-extractors/root/
device-vendor.mk 17 $(call inherit-product-if-exists, vendor/asus/$(LOCAL_STEM))
18 $(call inherit-product-if-exists, vendor/broadcom/$(LOCAL_STEM))
19 $(call inherit-product-if-exists, vendor/qcom/$(LOCAL_STEM))
  /device/asus/flo/self-extractors/root/
device-vendor.mk 17 $(call inherit-product-if-exists, vendor/asus/$(LOCAL_STEM))
18 $(call inherit-product-if-exists, vendor/broadcom/$(LOCAL_STEM))
19 $(call inherit-product-if-exists, vendor/qcom/$(LOCAL_STEM))
  /device/lge/hammerhead/self-extractors/root/
device-vendor.mk 17 $(call inherit-product-if-exists, vendor/broadcom/$(LOCAL_STEM))
18 $(call inherit-product-if-exists, vendor/lge/$(LOCAL_STEM))
19 $(call inherit-product-if-exists, vendor/qcom/$(LOCAL_STEM))
  /device/lge/mako/self-extractors/root/
device-vendor.mk 17 $(call inherit-product-if-exists, vendor/broadcom/$(LOCAL_STEM))
18 $(call inherit-product-if-exists, vendor/lge/$(LOCAL_STEM))
19 $(call inherit-product-if-exists, vendor/qcom/$(LOCAL_STEM))
  /device/samsung/manta/self-extractors/root/
device-vendor.mk 17 $(call inherit-product-if-exists, vendor/audience/$(LOCAL_STEM))
18 $(call inherit-product-if-exists, vendor/broadcom/$(LOCAL_STEM))
19 $(call inherit-product-if-exists, vendor/samsung/$(LOCAL_STEM))
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/
FileUtils.java 121 * An exception is thrown if the file object exists but is a directory.
122 * An exception is thrown if the file exists but cannot be read.
132 if (file.exists()) {
134 throw new IOException("File '" + file + "' exists but is a directory");
155 * An exception is thrown if the file object exists but is a directory.
156 * An exception is thrown if the file exists but cannot be written to.
167 if (file.exists()) {
169 throw new IOException("File '" + file + "' exists but is a directory");
176 if (parent != null && parent.exists() == false) {
211 * a new file with size 0 or, if the file exists already, it is opened and
    [all...]
  /external/chromium_org/third_party/sqlite/src/tool/
fragck.tcl 14 if {![file exists $file_to_analyze]} {
35 # The first argument is the name of an array variable that exists in
86 if {![info exists rootpage]} {
111 if {[info exists seen($pg)]} return
  /external/libselinux/src/
init.c 34 int exists = 0; local
58 exists = 1;
63 if (!exists)
  /external/llvm/
copy-diff.py 40 if not os.path.exists(src):
45 if not os.path.exists(destdir):
53 if not os.path.exists(dest) or is_file_different(src, dest):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_py_compile.py 35 self.assertTrue(os.path.exists(self.pyc_path))
43 self.assertTrue(os.path.exists(self.pyc_path))
48 self.assertTrue(os.path.exists(self.pyc_path))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_py_compile.py 35 self.assertTrue(os.path.exists(self.pyc_path))
43 self.assertTrue(os.path.exists(self.pyc_path))
48 self.assertTrue(os.path.exists(self.pyc_path))
  /cts/tests/tests/security/src/android/security/cts/
KeystoreExploitTest.java 58 new File("/proc/" + pid + "/cmdline").exists());
  /device/asus/flo/
device.mk 40 $(call inherit-product-if-exists, vendor/asus/flo/device-vendor.mk)

Completed in 1777 milliseconds

1 23 4 5 6 7 8 91011>>