HomeSort by relevance Sort by last modified time
    Searched full:isfile (Results 1 - 25 of 2107) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/jacoco/jacoco-maven-plugin.test/it/it-site-failsafe/
verify.bsh 21 if ( !htmlReportFile.isFile() ) {
26 if ( !xmlReportFile.isFile() ) {
31 if ( !csvReportFile.isFile() ) {
40 if ( !htmlReportFile.isFile() ) {
45 if ( !xmlReportFile.isFile() ) {
50 if ( !csvReportFile.isFile() ) {
  /external/jacoco/jacoco-maven-plugin.test/it/it-multi-module/
verify.bsh 21 if ( dump2.isFile() ) {
30 if ( !file.isFile() )
36 if ( !xmlReport.isFile() )
42 if ( !csvReport.isFile() )
48 if ( !htmlReport.isFile() )
  /external/autotest/client/site_tests/desktopui_SimpleLogin/
desktopui_SimpleLogin.py 24 if os.path.isfile(terminate_path):
32 if os.path.isfile(terminate_path):
  /external/lzma/CPP/Common/
Wildcard.h 60 bool CheckPath(const UStringVector &pathParts, bool isFile) const;
67 bool CheckPathCurrent(bool include, const UStringVector &pathParts, bool isFile) const;
69 bool CheckPathVect(const UStringVector &pathParts, bool isFile, bool &include) const;
90 bool CheckPath2(bool isAltStream, const UString &path, bool isFile, bool &include) const;
91 bool CheckPath(bool isAltStream, const UString &path, bool isFile) const;
93 bool CheckPathToRoot(bool include, UStringVector &pathParts, bool isFile) const;
94 // bool CheckPathToRoot(const UString &path, bool isFile, bool include) const;
139 bool CheckPath(bool isAltStream, const UString &path, bool isFile) const;
Wildcard.cpp 211 bool CItem::CheckPath(const UStringVector &pathParts, bool isFile) const
213 if (!isFile && !ForDir)
221 if (isFile)
237 if (isFile && !ForFile)
349 bool CCensorNode::CheckPathCurrent(bool include, const UStringVector &pathParts, bool isFile) const
353 if (items[i].CheckPath(pathParts, isFile))
358 bool CCensorNode::CheckPathVect(const UStringVector &pathParts, bool isFile, bool &include) const
360 if (CheckPathCurrent(false, pathParts, isFile))
366 bool finded = CheckPathCurrent(true, pathParts, isFile);
374 if (SubNodes[index].CheckPathVect(pathParts2, isFile, include))
    [all...]
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
gUnitTestInput.java 33 public boolean isFile; // if true, the input represents a filename
36 public gUnitTestInput(String input, boolean isFile, int line) {
38 this.isFile = isFile;
  /external/jacoco/jacoco-maven-plugin.test/it/it-multiple-executions/
verify.bsh 16 if ( file.isFile() )
22 if ( file.isFile() )
28 if ( !file.isFile() )
  /external/jacoco/jacoco-maven-plugin.test/it/it-offline-instrumentation/
verify.bsh 16 if ( !file.isFile() ) {
20 if ( file.isFile() ) {
25 if ( !file.isFile() )
  /external/jacoco/jacoco-maven-plugin.test/it/it-site/
verify.bsh 21 if ( !htmlReportFile.isFile() ) {
26 if ( !xmlReportFile.isFile() ) {
31 if ( !csvReportFile.isFile() ) {
  /external/proguard/src/proguard/io/
DirectoryWriter.java 37 private final boolean isFile;
49 boolean isFile)
52 this.isFile = isFile;
61 if (!isFile &&
90 if (!isFile &&
137 return isFile ?
  /external/autotest/client/site_tests/performance_Tracker/
performance_Tracker.py 53 if os.path.isfile(TERMINATE_PATH):
63 if os.path.isfile(TERMINATE_PATH):
78 if os.path.isfile(TERMINATE_PATH):
  /external/skia/experimental/mojo/
generate.py 22 if os.path.isfile(path):
27 assert os.path.isfile(sha_path)
50 assert os.path.isfile(path)
54 assert os.path.isfile(exe)
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_compileall.py 66 self.assertTrue(os.path.isfile(self.bc_path) \
67 and not os.path.isfile(self.bc_path2))
70 self.assertTrue(os.path.isfile(self.bc_path) \
71 and os.path.isfile(self.bc_path2))
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_compileall.py 66 self.assertTrue(os.path.isfile(self.bc_path) \
67 and not os.path.isfile(self.bc_path2))
70 self.assertTrue(os.path.isfile(self.bc_path) \
71 and os.path.isfile(self.bc_path2))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_compileall.py 66 self.assertTrue(os.path.isfile(self.bc_path) \
67 and not os.path.isfile(self.bc_path2))
70 self.assertTrue(os.path.isfile(self.bc_path) \
71 and os.path.isfile(self.bc_path2))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_compileall.py 66 self.assertTrue(os.path.isfile(self.bc_path) \
67 and not os.path.isfile(self.bc_path2))
70 self.assertTrue(os.path.isfile(self.bc_path) \
71 and os.path.isfile(self.bc_path2))
  /prebuilts/gdb/darwin-x86/lib/python2.7/unittest/test/
test_discovery.py 31 original_isfile = os.path.isfile
33 os.path.isfile = original_isfile
49 def isfile(path): function in function:TestDiscovery.test_find_tests
52 os.path.isfile = isfile
74 original_isfile = os.path.isfile
76 os.path.isfile = original_isfile
89 os.path.isfile = lambda path: os.path.basename(path) not in directories
136 original_isfile = os.path.isfile
139 os.path.isfile = original_isfil
337 def isfile(_): function in function:TestDiscovery.test_detect_module_clash
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/unittest/test/
test_discovery.py 31 original_isfile = os.path.isfile
33 os.path.isfile = original_isfile
49 def isfile(path): function in function:TestDiscovery.test_find_tests
52 os.path.isfile = isfile
74 original_isfile = os.path.isfile
76 os.path.isfile = original_isfile
89 os.path.isfile = lambda path: os.path.basename(path) not in directories
136 original_isfile = os.path.isfile
139 os.path.isfile = original_isfil
337 def isfile(_): function in function:TestDiscovery.test_detect_module_clash
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/test/
test_discovery.py 31 original_isfile = os.path.isfile
33 os.path.isfile = original_isfile
49 def isfile(path): function in function:TestDiscovery.test_find_tests
52 os.path.isfile = isfile
74 original_isfile = os.path.isfile
76 os.path.isfile = original_isfile
89 os.path.isfile = lambda path: os.path.basename(path) not in directories
136 original_isfile = os.path.isfile
139 os.path.isfile = original_isfil
337 def isfile(_): function in function:TestDiscovery.test_detect_module_clash
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/test/
test_discovery.py 31 original_isfile = os.path.isfile
33 os.path.isfile = original_isfile
49 def isfile(path): function in function:TestDiscovery.test_find_tests
52 os.path.isfile = isfile
74 original_isfile = os.path.isfile
76 os.path.isfile = original_isfile
89 os.path.isfile = lambda path: os.path.basename(path) not in directories
136 original_isfile = os.path.isfile
139 os.path.isfile = original_isfil
337 def isfile(_): function in function:TestDiscovery.test_detect_module_clash
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/internal/util/
path_set.py 31 if os.path.isfile(path):
36 if os.path.isfile(file_path):
  /external/jacoco/jacoco-maven-plugin.test/it/it-includes-excludes/
verify.bsh 23 if ( !databaseUtilReportFile.isFile() )
29 if ( testUtilReportFile.isFile() )
  /frameworks/support/core-utils/tests/java/android/support/v4/provider/
DocumentFileTest.java 124 assertFalse("isFile", doc.isFile());
144 assertTrue("isFile", foo.isFile());
154 assertTrue("isFile", cat.isFile());
155 assertTrue("isFile", dog.isFile());
236 assertTrue("isFile", newFile.isFile());
    [all...]
  /external/chromium-trace/catapult/dependency_manager/dependency_manager/
dependency_manager_util_unittest.py 64 if os.path.isfile(self.archive_path):
78 self.assertTrue(os.path.isfile(read_only_path))
79 self.assertTrue(os.path.isfile(writable_path))
80 self.assertTrue(os.path.isfile(executable_path))
81 self.assertTrue(os.path.isfile(sub_read_only_path))
82 self.assertTrue(os.path.isfile(sub_writable_path))
83 self.assertTrue(os.path.isfile(sub_executable_path))
113 if os.path.isfile(archive_path):
125 self.assertFalse(os.path.isfile(self.executable_path))
128 self.assertFalse(os.path.isfile(self.sub_executable_path)
    [all...]
  /external/clang/include/clang/Basic/
FileSystemStatCache.h 66 /// If isFile is true, then this lookup should only return success for files
71 static bool get(const char *Path, FileData &Data, bool isFile,
95 virtual LookupResult getStat(const char *Path, FileData &Data, bool isFile,
99 LookupResult statChained(const char *Path, FileData &Data, bool isFile,
102 return Next->getStat(Path, Data, isFile, F, FS);
106 return get(Path, Data, isFile, F, nullptr, FS) ? CacheMissing : CacheExists;
124 LookupResult getStat(const char *Path, FileData &Data, bool isFile,

Completed in 468 milliseconds

1 2 3 4 5 6 7 8 91011>>