OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:outcomename
(Results
1 - 7
of
7
) sorted by null
/cts/libs/vogar-expect/src/vogar/
Outcome.java
33
private final String
outcomeName
;
38
public Outcome(String
outcomeName
, Result result, List<String> outputLines) {
39
this.
outcomeName
=
outcomeName
;
45
public Outcome(String
outcomeName
, Result result, String outputLine, Date date) {
46
this.
outcomeName
=
outcomeName
;
52
public Outcome(String
outcomeName
, Result result, String outputLine) {
53
this.
outcomeName
=
outcomeName
;
[
all
...]
/external/vogar/src/vogar/
Outcome.java
33
private final String
outcomeName
;
38
public Outcome(String
outcomeName
, Result result, List<String> outputLines) {
39
this.
outcomeName
=
outcomeName
;
45
public Outcome(String
outcomeName
, Result result, String outputLine, Date date) {
46
this.
outcomeName
=
outcomeName
;
52
public Outcome(String
outcomeName
, Result result, String outputLine) {
53
this.
outcomeName
=
outcomeName
;
[
all
...]
Console.java
146
public abstract void streamOutput(String
outcomeName
, String output);
151
protected void flushBufferedOutput(String
outcomeName
) {}
157
String
outcomeName
, Result result, ResultValue resultValue, Expectation expectation) {
161
streamOutput(
outcomeName
, "\n" + colorString(expectation.getDescription(), Color.COMMENT));
164
streamOutput(
outcomeName
, "\n" + colorString("http://b/" + expectation.getBug(), Color.COMMENT));
168
flushBufferedOutput(
outcomeName
);
174
out.print(indent +
outcomeName
+ " ");
467
@Override public synchronized void streamOutput(String
outcomeName
, String output) {
479
@Override public synchronized void streamOutput(String
outcomeName
, String output) {
480
StringBuilder buffer = bufferedOutputByOutcome.get(
outcomeName
);
[
all
...]
OutcomeStore.java
98
String
outcomeName
= in.nextName();
99
AnnotatedOutcome annotatedOutcome = map.get(
outcomeName
);
117
annotatedOutcome.add(fileDate, new Outcome(
outcomeName
, result,
/external/vogar/src/vogar/tasks/
RunActionTask.java
178
@Override public void start(String
outcomeName
, String runnerClass) {
179
outcomeName
= toQualifiedOutcomeName(
outcomeName
);
180
lastStartedOutcome =
outcomeName
;
187
run.console.verbose("running " +
outcomeName
+ " with unlimited timeout");
198
@Override public void output(String
outcomeName
, String output) {
199
outcomeName
= toQualifiedOutcomeName(
outcomeName
);
200
run.console.outcome(
outcomeName
);
201
run.console.streamOutput(
outcomeName
, output)
[
all
...]
/external/vogar/src/vogar/monitor/
TargetMonitor.java
67
public void outcomeStarted(Class<? extends Runner> runnerClass, String
outcomeName
) {
69
jsonObject.addProperty("outcome",
outcomeName
);
HostMonitor.java
157
void start(String
outcomeName
, String runnerClass);
167
void output(String
outcomeName
, String output);
Completed in 85 milliseconds