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

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/src/internal/poll/
fd_poll_nacl.go 28 func (pd *pollDesc) prepare(mode int, isFile bool) error {
30 return errClosing(isFile)
35 func (pd *pollDesc) prepareRead(isFile bool) error { return pd.prepare('r', isFile) }
37 func (pd *pollDesc) prepareWrite(isFile bool) error { return pd.prepare('w', isFile) }
39 func (pd *pollDesc) wait(mode int, isFile bool) error {
41 return errClosing(isFile)
46 func (pd *pollDesc) waitRead(isFile bool) error { return pd.wait('r', isFile) }
    [all...]
fd_poll_runtime.go 65 func (pd *pollDesc) prepare(mode int, isFile bool) error {
70 return convertErr(res, isFile)
73 func (pd *pollDesc) prepareRead(isFile bool) error {
74 return pd.prepare('r', isFile)
77 func (pd *pollDesc) prepareWrite(isFile bool) error {
78 return pd.prepare('w', isFile)
81 func (pd *pollDesc) wait(mode int, isFile bool) error {
86 return convertErr(res, isFile)
89 func (pd *pollDesc) waitRead(isFile bool) error {
90 return pd.wait('r', isFile)
    [all...]
fd_unix.go 42 isFile bool
56 fd.isFile = true
81 return errClosing(fd.isFile)
88 // attempts to block in the pollDesc will return errClosing(fd.isFile).
146 if err := fd.pd.prepareRead(fd.isFile); err != nil {
157 if err = fd.pd.waitRead(fd.isFile); err == nil {
199 if err := fd.pd.prepareRead(fd.isFile); err != nil {
207 if err = fd.pd.waitRead(fd.isFile); err == nil {
223 if err := fd.pd.prepareRead(fd.isFile); err != nil {
231 if err = fd.pd.waitRead(fd.isFile); err == nil
    [all...]
  /prebuilts/go/linux-x86/src/internal/poll/
fd_poll_nacl.go 28 func (pd *pollDesc) prepare(mode int, isFile bool) error {
30 return errClosing(isFile)
35 func (pd *pollDesc) prepareRead(isFile bool) error { return pd.prepare('r', isFile) }
37 func (pd *pollDesc) prepareWrite(isFile bool) error { return pd.prepare('w', isFile) }
39 func (pd *pollDesc) wait(mode int, isFile bool) error {
41 return errClosing(isFile)
46 func (pd *pollDesc) waitRead(isFile bool) error { return pd.wait('r', isFile) }
    [all...]
fd_poll_runtime.go 65 func (pd *pollDesc) prepare(mode int, isFile bool) error {
70 return convertErr(res, isFile)
73 func (pd *pollDesc) prepareRead(isFile bool) error {
74 return pd.prepare('r', isFile)
77 func (pd *pollDesc) prepareWrite(isFile bool) error {
78 return pd.prepare('w', isFile)
81 func (pd *pollDesc) wait(mode int, isFile bool) error {
86 return convertErr(res, isFile)
89 func (pd *pollDesc) waitRead(isFile bool) error {
90 return pd.wait('r', isFile)
    [all...]
fd_unix.go 42 isFile bool
56 fd.isFile = true
81 return errClosing(fd.isFile)
88 // attempts to block in the pollDesc will return errClosing(fd.isFile).
146 if err := fd.pd.prepareRead(fd.isFile); err != nil {
157 if err = fd.pd.waitRead(fd.isFile); err == nil {
199 if err := fd.pd.prepareRead(fd.isFile); err != nil {
207 if err = fd.pd.waitRead(fd.isFile); err == nil {
223 if err := fd.pd.prepareRead(fd.isFile); err != nil {
231 if err = fd.pd.waitRead(fd.isFile); err == nil
    [all...]
  /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/python/cpython2/RISCOS/
unixstuff.h 12 int isfile(char *fn);
  /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 51 bool CheckPath(const UStringVector &pathParts, bool isFile) const;
58 bool CheckPathCurrent(bool include, const UStringVector &pathParts, bool isFile) const;
61 bool CheckPathVect(const UStringVector &pathParts, bool isFile, bool &include) const;
82 // bool CheckPath2(bool isAltStream, const UString &path, bool isFile, bool &include) const;
83 // bool CheckPath(bool isAltStream, const UString &path, bool isFile) const;
85 bool CheckPathToRoot(bool include, UStringVector &pathParts, bool isFile) const;
86 // bool CheckPathToRoot(const UString &path, bool isFile, bool include) const;
131 // bool CheckPath(bool isAltStream, const UString &path, bool isFile) const;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/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_isfile
323 def isfile(_): function in function:TestDiscovery.test_detect_module_clash
    [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/jacoco/org.jacoco.cli.test/src/org/jacoco/cli/internal/commands/
ReportTest.java 97 assertTrue(xml.isFile());
109 assertTrue(csv.isFile());
123 "org.jacoco.cli.internal.commands/ReportTest.html").isFile());
126 .isFile());
145 "org.jacoco.cli.internal.commands/ReportTest.html").isFile());
148 .isFile());
  /external/autotest/client/site_tests/performance_Tracker/
performance_Tracker.py 52 if os.path.isfile(TERMINATE_PATH):
62 if os.path.isfile(TERMINATE_PATH):
77 if os.path.isfile(TERMINATE_PATH):
  /external/jacoco/jacoco-maven-plugin.test/it/it-report-aggregate/
verify.bsh 34 if ( !reportChild1.isFile() ) {
39 if ( reportChild1test.isFile() ) {
44 if ( !reportChild2.isFile() ) {
  /external/skia/bin/
sync 29 if not os.path.isfile(DEPS_FILE):
39 if os.path.isfile(HASH_FILE):
44 if os.path.isfile(HASH_FILE):
  /external/skqp/bin/
sync 29 if not os.path.isfile(DEPS_FILE):
39 if os.path.isfile(HASH_FILE):
44 if os.path.isfile(HASH_FILE):
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/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))
  /external/autotest/site_utils/
pubsub_utils_unittest.py 79 self.mox.StubOutWithMock(os.path, 'isfile')
87 self.mox.StubOutWithMock(os.path, 'isfile')
88 os.path.isfile(_TEST_CLOUD_SERVICE_ACCOUNT_FILE).AndReturn(False)
96 self.mox.StubOutWithMock(os.path, 'isfile')
98 os.path.isfile(_TEST_CLOUD_SERVICE_ACCOUNT_FILE).AndReturn(True)
109 self.mox.StubOutWithMock(os.path, 'isfile')
111 os.path.isfile(_TEST_CLOUD_SERVICE_ACCOUNT_FILE).AndReturn(True)
133 self.mox.StubOutWithMock(os.path, 'isfile')
135 os.path.isfile(_TEST_CLOUD_SERVICE_ACCOUNT_FILE).AndReturn(True)
  /external/clang/
compiler_wrapper 19 if gomacc and os.path.isfile(gomacc):

Completed in 385 milliseconds

1 2 3 4 5 6 7 8 91011>>