/external/chromium_org/ui/webui/resources/css/ |
bubble.css | 22 /* When the close button is there, we need more padding on the right of the 24 .bubble-close:not([hidden]) ~ .bubble-content { 28 .bubble-close { 37 html[dir='rtl'] .bubble-close { 42 .bubble-close { 48 .bubble-close:hover { 54 .bubble-close:active { 95 .auto-close-bubble {
|
/libcore/luni/src/test/java/libcore/java/net/ |
OldServerSocketTest.java | 82 theSocket.close(); 83 servSock.close(); 84 clientSocket.close(); 92 sconn.close(); 93 s.close(); 120 cs.close(); 130 ss.close(); 145 sconn.close(); 147 s.close(); 155 sconn.close(); 373 protected void close() throws IOException { method in class:OldServerSocketTest.MockSocketImpl [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_text_file.py | 60 out_file.close() 67 in_file.close() 74 in_file.close() 81 in_file.close() 87 in_file.close() 94 in_file.close() 101 in_file.close()
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_text_file.py | 60 out_file.close() 67 in_file.close() 74 in_file.close() 81 in_file.close() 87 in_file.close() 94 in_file.close() 101 in_file.close()
|
/libcore/luni/src/test/java/libcore/java/io/ |
OldDataInputStreamTest.java | 45 os.close(); 51 dis.close(); 64 os.close(); 78 dis.close(); 95 os.close(); 110 dis.close(); 125 os.close(); 154 os.close(); 161 dis.close(); 183 os.close(); [all...] |
OldFileInputStreamTest.java | 41 is.close(); 48 is.close(); 61 fis.close(); 74 is.close(); 80 is.close(); 94 is.close(); 126 fis.close(); 143 is.close(); 157 is.close(); 162 is.close(); [all...] |
OldDataInputOutputStreamTest.java | 48 os.close(); 60 dis.close(); 80 os.close(); 92 dis.close(); 112 os.close(); 124 dis.close(); 144 os.close(); 156 dis.close(); 176 os.close(); 188 dis.close(); [all...] |
OldDataOutputStreamTest.java | 56 os.close(); 61 dis.close(); 75 os.close(); 81 dis.close(); 122 os.close(); 127 dis.close(); 140 os.close(); 145 dis.close(); 160 os.close(); 168 dis.close(); [all...] |
/libcore/luni/src/test/java/libcore/java/sql/ |
OldConnectionTest.java | 40 conn.close(); 42 fail("SQLException is not thrown after close"); 48 // Scrolling on a forward only RS not allowed. conn.close() does not wrap up 67 rs.close(); 68 st.close(); 88 rs.close(); 89 st.close(); 109 rs.close(); 110 st.close(); 134 rs.close(); [all...] |
OldPreparedStatementTest.java | 92 st.close(); 105 st.close(); 136 st.close(); 142 ps.close(); 155 ps.close(); 168 ps.close(); 194 ps.close(); 213 ps.close(); 214 st.close(); 227 ps.close(); [all...] |
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/ |
ImageReaderTest.java | 75 mReader.close(); 91 * Return the last image from the image queue, close up the rest. 98 verify(mImage1, never()).close(); 102 * Return the last image from the image queue, close up the rest. 109 verify(mImage1, atLeastOnce()).close(); 110 verify(mImage2, never()).close(); 114 * Return the last image from the image queue, close up the rest. 123 verify(mImage1, atLeastOnce()).close(); 124 verify(mImage2, atLeastOnce()).close(); 125 verify(mImage3, never()).close(); [all...] |
/libcore/luni/src/test/java/libcore/sqlite/ |
QueryTimeoutTest.java | 78 connection.close(); 89 statement.close(); 105 statement.close(); 107 resultSet.close(); 120 statement.close(); 135 resultSet.close(); 136 statement.close(); 147 statement.close(); 163 statement.close();
|
/external/chromium_org/sandbox/linux/suid/ |
process_util_linux.c | 47 close(dirfd); 51 close(dirfd); 70 close(dirfd); 77 close(fd); 104 close(file_descriptor);
|
/external/ppp/pppd/plugins/ |
passprompt.c | 47 close(p[0]); 48 close(p[1]); 56 close(p[0]); 70 close(p[1]); 86 close(p[0]);
|
/external/bison/lib/ |
spawn-pipe.c | 54 #undef close macro 59 /* EINTR handling for close(). 69 retval = close (fd); 74 #define close nonintr_close macro 172 && close (nulloutfd) >= 0)))) 178 && close (stdinfd) >= 0)))) 184 && close (stdoutfd) >= 0))))) 212 close (stdinfd); 214 close (stdoutfd); 216 close (nulloutfd) [all...] |
/bionic/libc/upstream-netbsd/libc/gen/ |
popen.c | 108 (void)close(pdes[0]); 109 (void)close(pdes[1]); 122 (void)close(pdes[0]); 123 (void)close(pdes[1]); 133 close(old->fd); /* don't allow a flush */ 135 close(fileno(old->fp)); /* don't allow a flush */ 139 (void)close(pdes[0]); 142 (void)close(pdes[1]); 147 (void)close(pdes[1]); 150 (void)close(pdes[0]) [all...] |
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/ |
OpenRandomFileTest.java | 42 fos.close(); 46 raf.close(); 56 raf.close();
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/ |
TeeInputStream.java | 51 public void close() method in class:TeeInputStream 54 this.input.close(); 55 this.output.close();
|
TeeOutputStream.java | 46 public void close() method in class:TeeOutputStream 49 this.output1.close(); 50 this.output2.close();
|
/external/guava/guava/src/com/google/common/io/ |
Closeables.java | 61 * // Close the stream. 63 * Closeables.close(stream, threw); 70 * thrown by the {@code close} methods 72 * {@code close} throws an {@code IOException}. 74 public static void close(@Nullable Closeable closeable, method in class:Closeables 80 closeable.close(); 92 * Equivalent to calling {@code close(closeable, true)}, but with no 99 close(closeable, true); method
|
/external/proguard/src/proguard/ |
FileWordReader.java | 80 public void close() throws IOException method in class:FileWordReader 82 super.close(); 86 reader.close();
|
/external/proguard/src/proguard/io/ |
CascadingDataEntryWriter.java | 86 public void close() throws IOException method in class:CascadingDataEntryWriter 88 dataEntryWriter1.close(); 89 dataEntryWriter2.close();
|
/external/replicaisland/src/com/replica/replicaisland/ |
Utils.java | 23 public final static boolean close(float a, float b) { method in class:Utils 24 return close(a, b, EPSILON); 27 public final static boolean close(float a, float b, float epsilon) { method in class:Utils
|
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/ |
InputPort.java | 49 public void close() { method in class:InputPort 51 mSourcePort.close(); 53 super.close();
|
/packages/apps/Browser/tests/src/com/android/browser/tests/ |
BookmarksTests.java | 51 c.close(); 58 c.close(); 60 if (c != null) c.close();
|