HomeSort by relevance Sort by last modified time
    Searched refs:Output (Results 1 - 25 of 671) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/av/media/img_utils/src/
Output.cpp 18 #include <img_utils/Output.h>
23 Output::~Output() {}
24 status_t Output::open() { return OK; }
25 status_t Output::close() { return OK; }
  /external/icu/android_icu4j/src/main/java/android/icu/util/
Output.java 11 * Simple struct-like class for output parameters.
14 public class Output<T> {
28 * Constructs an empty <code>Output</code>
30 public Output() {
35 * Constructs an <code>Output</code> with the given value.
38 public Output(T value) {
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
Output.java 10 * Simple struct-like class for output parameters.
14 public class Output<T> {
30 * Constructs an empty <code>Output</code>
33 public Output() {
38 * Constructs an <code>Output</code> with the given value.
42 public Output(T value) {
  /external/messageformat/java/com/ibm/icu/util/
Output.java 10 * Simple struct-like class for output parameters.
14 public class Output<T> {
30 * Constructs an empty <code>Output</code>
33 public Output() {
38 * Constructs an <code>Output</code> withe the given value.
42 public Output(T value) {
  /external/llvm/test/
Makefile.tests 22 # output from gccas and gccld.
31 .PRECIOUS: Output/%.bc Output/%.ll
32 .PRECIOUS: Output/%.tbc Output/%.tll
33 .PRECIOUS: Output/.dir
34 .PRECIOUS: Output/%.llvm.bc
35 .PRECIOUS: Output/%.llvm
48 $(RM) -rf Output/
50 # LLVM Assemble from Output/X.ll to Output/X.bc. Output/X.ll must have com
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/util/
FallbackStrategies.java 49 public class FallbackStrategies<Input, Output> {
50 public interface Strategy<Input, Output> {
51 Output execute(Input params) throws Exception;
54 private final List<Strategy<Input, Output>> mChainedStrategies;
56 private FallbackStrategies(final Strategy<Input, Output> primaryStrategy) {
57 mChainedStrategies = new ArrayList<Strategy<Input, Output>>();
61 public static <Input, Output> FallbackStrategies<Input, Output> startWith(
62 final Strategy<Input, Output> primaryStrategy) {
63 return new FallbackStrategies<Input, Output>(primaryStrategy)
    [all...]
  /prebuilts/go/darwin-x86/src/encoding/csv/
writer_test.go 15 Output string
18 {Input: [][]string{{"abc"}}, Output: "abc\n"},
19 {Input: [][]string{{"abc"}}, Output: "abc\r\n", UseCRLF: true},
20 {Input: [][]string{{`"abc"`}}, Output: `"""abc"""` + "\n"},
21 {Input: [][]string{{`a"b`}}, Output: `"a""b"` + "\n"},
22 {Input: [][]string{{`"a"b"`}}, Output: `"""a""b"""` + "\n"},
23 {Input: [][]string{{" abc"}}, Output: `" abc"` + "\n"},
24 {Input: [][]string{{"abc,def"}}, Output: `"abc,def"` + "\n"},
25 {Input: [][]string{{"abc", "def"}}, Output: "abc,def\n"},
26 {Input: [][]string{{"abc"}, {"def"}}, Output: "abc\ndef\n"}
    [all...]
reader_test.go 16 Output [][]string
34 Output: [][]string{{"a", "b", "c"}},
39 Output: [][]string{{"a", "b"}, {"c", "d"}},
44 Output: [][]string{{"a", "b\rc", "d"}},
55 Output: [][]string{
65 Output: [][]string{{"a", "b", "c"}},
71 Output: [][]string{{"a", "b", "c"}},
79 Output: [][]string{{"two\nline", "one line", "three\nline\nfield"}},
84 Output: [][]string{
93 Output: [][]string
    [all...]
  /prebuilts/go/linux-x86/src/encoding/csv/
writer_test.go 15 Output string
18 {Input: [][]string{{"abc"}}, Output: "abc\n"},
19 {Input: [][]string{{"abc"}}, Output: "abc\r\n", UseCRLF: true},
20 {Input: [][]string{{`"abc"`}}, Output: `"""abc"""` + "\n"},
21 {Input: [][]string{{`a"b`}}, Output: `"a""b"` + "\n"},
22 {Input: [][]string{{`"a"b"`}}, Output: `"""a""b"""` + "\n"},
23 {Input: [][]string{{" abc"}}, Output: `" abc"` + "\n"},
24 {Input: [][]string{{"abc,def"}}, Output: `"abc,def"` + "\n"},
25 {Input: [][]string{{"abc", "def"}}, Output: "abc,def\n"},
26 {Input: [][]string{{"abc"}, {"def"}}, Output: "abc\ndef\n"}
    [all...]
reader_test.go 16 Output [][]string
34 Output: [][]string{{"a", "b", "c"}},
39 Output: [][]string{{"a", "b"}, {"c", "d"}},
44 Output: [][]string{{"a", "b\rc", "d"}},
55 Output: [][]string{
65 Output: [][]string{{"a", "b", "c"}},
71 Output: [][]string{{"a", "b", "c"}},
79 Output: [][]string{{"two\nline", "one line", "three\nline\nfield"}},
84 Output: [][]string{
93 Output: [][]string
    [all...]
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
PairedTask.java 34 * @template Output output type
36 abstract class PairedTask<Owner extends Activity, Input, Output>
37 extends AsyncTask<Input, Void, Output> {
49 abstract Output run(Input... input);
52 abstract void finish(Output output);
63 final protected Output doInBackground(Input... input) {
71 final protected void onPostExecute(Output result) {
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/algorithm/string/detail/
find_format.hpp 34 OutputIteratorT Output,
52 Output = std::copy( ::boost::begin(Input), ::boost::end(Input), Output );
53 return Output;
57 Output = std::copy( ::boost::begin(Input), ::boost::begin(M), Output );
60 Output = std::copy( ::boost::begin(M.format_result()), ::boost::end(M.format_result()), Output );
62 Output = std::copy( M.end(), ::boost::end(Input), Output );
    [all...]
  /external/clang/include/clang/Basic/
MacroBuilder.h 27 MacroBuilder(raw_ostream &Output) : Out(Output) {}
  /external/rmi4utils/f54test/
display.h 29 virtual void Output(const char * buf);
40 virtual void Output(const char * buf);
  /frameworks/av/media/img_utils/include/img_utils/
Output.h 28 * Utility class used to output bytes.
30 class ANDROID_API Output {
32 virtual ~Output();
35 * Open this Output.
51 * Close this Output. It is not valid to call open on a previously closed Output.
StripSource.h 20 #include <img_utils/Output.h>
42 virtual status_t writeToStream(Output& stream, uint32_t count) = 0;
  /prebuilts/go/darwin-x86/src/path/
example_test.go 14 // Output: b
31 // Output:
42 // Output: /a/b
47 // Output: .css
52 // Output: true
57 // Output: a/b/c
62 // Output: static/ myfile.css
  /prebuilts/go/linux-x86/src/path/
example_test.go 14 // Output: b
31 // Output:
42 // Output: /a/b
47 // Output: .css
52 // Output: true
57 // Output: a/b/c
62 // Output: static/ myfile.css
  /dalvik/dexgen/src/com/android/dexgen/util/
AnnotatedOutput.java 20 * Interface for a binary output destination that may be augmented
24 extends Output {
42 * Add an annotation for the subsequent output. Any previously
44 * annotation marks all subsequent output until another annotation
53 * output. Any previously open annotation will be closed by this
55 * previous calls to this method, the new call "consumes" output
56 * after all the output covered by the previous calls.
58 * @param amt {@code >= 0;} the amount of output for this annotation to
65 * End the most recent annotation. Subsequent output will be unannotated,
71 * Get the maximum width of the annotated output. This is advisory
    [all...]
  /dalvik/dx/src/com/android/dx/util/
AnnotatedOutput.java 20 * Interface for a binary output destination that may be augmented
24 extends Output {
42 * Add an annotation for the subsequent output. Any previously
44 * annotation marks all subsequent output until another annotation
53 * output. Any previously open annotation will be closed by this
55 * previous calls to this method, the new call "consumes" output
56 * after all the output covered by the previous calls.
58 * @param amt {@code >= 0;} the amount of output for this annotation to
65 * End the most recent annotation. Subsequent output will be unannotated,
71 * Get the maximum width of the annotated output. This is advisory
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/util/
AnnotatedOutput.java 20 * Interface for a binary output destination that may be augmented
24 extends Output {
42 * Add an annotation for the subsequent output. Any previously
44 * annotation marks all subsequent output until another annotation
53 * output. Any previously open annotation will be closed by this
55 * previous calls to this method, the new call "consumes" output
56 * after all the output covered by the previous calls.
58 * @param amt {@code >= 0;} the amount of output for this annotation to
65 * End the most recent annotation. Subsequent output will be unannotated,
71 * Get the maximum width of the annotated output. This is advisory
    [all...]
  /external/vboot_reference/scripts/keygeneration/
make_pair.sh 15 Output: <out_keypair>.vbprivk and <out_keypair>.vbpubk
  /external/llvm/unittests/Support/
SourceMgrTest.cpp 23 std::string Output;
43 raw_string_ostream OS(Output);
57 Output);
67 Output);
77 Output);
87 Output);
97 Output);
107 Output);
117 Output);
127 Output);
    [all...]
  /prebuilts/go/darwin-x86/src/strings/
example_test.go 15 // Output: Fields are: ["foo" "bar" "baz"]
23 // Output: Fields are: ["foo1" "bar2" "baz3"]
31 // Output:
43 // Output:
53 // Output:
60 // Output: true
66 // Output:
77 // Output:
85 // Output:
93 // Output
    [all...]
  /prebuilts/go/linux-x86/src/strings/
example_test.go 15 // Output: Fields are: ["foo" "bar" "baz"]
23 // Output: Fields are: ["foo1" "bar2" "baz3"]
31 // Output:
43 // Output:
53 // Output:
60 // Output: true
66 // Output:
77 // Output:
85 // Output:
93 // Output
    [all...]

Completed in 632 milliseconds

1 2 3 4 5 6 7 8 91011>>