OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TestOption
(Results
1 - 15
of
15
) sorted by null
/external/guava/guava-tests/test/com/google/common/io/
TestOption.java
24
public enum
TestOption
{
TestOutputStream.java
20
import static com.google.common.io.
TestOption
.CLOSE_THROWS;
21
import static com.google.common.io.
TestOption
.OPEN_THROWS;
22
import static com.google.common.io.
TestOption
.WRITE_THROWS;
36
private final ImmutableSet<
TestOption
> options;
39
public TestOutputStream(OutputStream out,
TestOption
... options) throws IOException {
43
public TestOutputStream(OutputStream out, Iterable<
TestOption
> options) throws IOException {
74
private void throwIf(
TestOption
option) throws IOException {
TestInputStream.java
20
import static com.google.common.io.
TestOption
.CLOSE_THROWS;
21
import static com.google.common.io.
TestOption
.OPEN_THROWS;
22
import static com.google.common.io.
TestOption
.READ_THROWS;
23
import static com.google.common.io.
TestOption
.SKIP_THROWS;
37
private final ImmutableSet<
TestOption
> options;
40
public TestInputStream(InputStream in,
TestOption
... options) throws IOException {
44
public TestInputStream(InputStream in, Iterable<
TestOption
> options) throws IOException {
78
return options.contains(
TestOption
.AVAILABLE_ALWAYS_ZERO) ? 0 : in.available();
88
private void throwIf(
TestOption
option) throws IOException {
TestByteSink.java
33
private final ImmutableSet<
TestOption
> options;
38
public TestByteSink(
TestOption
... options) {
TestByteSource.java
36
private final ImmutableSet<
TestOption
> options;
41
TestByteSource(byte[] bytes,
TestOption
... options) {
ByteSinkTest.java
19
import static com.google.common.io.
TestOption
.CLOSE_THROWS;
20
import static com.google.common.io.
TestOption
.OPEN_THROWS;
21
import static com.google.common.io.
TestOption
.READ_THROWS;
22
import static com.google.common.io.
TestOption
.WRITE_THROWS;
82
for (
TestOption
option : EnumSet.of(OPEN_THROWS, READ_THROWS, CLOSE_THROWS)) {
CharSinkTest.java
19
import static com.google.common.io.
TestOption
.CLOSE_THROWS;
20
import static com.google.common.io.
TestOption
.OPEN_THROWS;
21
import static com.google.common.io.
TestOption
.READ_THROWS;
22
import static com.google.common.io.
TestOption
.WRITE_THROWS;
94
for (
TestOption
option : EnumSet.of(OPEN_THROWS, READ_THROWS, CLOSE_THROWS)) {
TestReader.java
34
public TestReader(
TestOption
... options) throws IOException {
TestCharSource.java
35
public TestCharSource(String content,
TestOption
... options) {
TestWriter.java
33
public TestWriter(
TestOption
... options) throws IOException {
CloseablesTest.java
80
new ByteArrayInputStream(new byte[1]),
TestOption
.CLOSE_THROWS);
86
TestReader in = new TestReader(
TestOption
.CLOSE_THROWS);
TestCharSink.java
36
public TestCharSink(
TestOption
... options) {
ByteSourceTest.java
20
import static com.google.common.io.
TestOption
.AVAILABLE_ALWAYS_ZERO;
21
import static com.google.common.io.
TestOption
.CLOSE_THROWS;
22
import static com.google.common.io.
TestOption
.OPEN_THROWS;
23
import static com.google.common.io.
TestOption
.READ_THROWS;
24
import static com.google.common.io.
TestOption
.SKIP_THROWS;
25
import static com.google.common.io.
TestOption
.WRITE_THROWS;
246
for (
TestOption
option : EnumSet.of(OPEN_THROWS, WRITE_THROWS, CLOSE_THROWS)) {
CharSourceTest.java
19
import static com.google.common.io.
TestOption
.CLOSE_THROWS;
20
import static com.google.common.io.
TestOption
.OPEN_THROWS;
21
import static com.google.common.io.
TestOption
.READ_THROWS;
22
import static com.google.common.io.
TestOption
.WRITE_THROWS;
171
for (
TestOption
option : EnumSet.of(OPEN_THROWS, WRITE_THROWS, CLOSE_THROWS)) {
/external/llvm/unittests/Support/
CommandLineTest.cpp
74
StackOption<int>
TestOption
("test-option", cl::desc("old description"));
86
ASSERT_EQ(&
TestOption
, Retrieved) << "Retrieved wrong option.";
108
ASSERT_EQ(cl::Hidden,
TestOption
.getOptionHiddenFlag()) <<
Completed in 235 milliseconds