HomeSort by relevance Sort by last modified time
    Searched refs:Output (Results 1 - 25 of 429) 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...]
  /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...]
find_format_all.hpp 35 OutputIteratorT Output,
60 Output = std::copy( LastMatch, M.begin(), Output );
62 Output = std::copy( ::boost::begin(M.format_result()), ::boost::end(M.format_result()), Output );
70 Output = std::copy( LastMatch, ::boost::end(Input), Output );
72 return Output;
82 OutputIteratorT Output,
90 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;
ByteArrayOutput.h 20 #include <img_utils/Output.h>
34 class ANDROID_API ByteArrayOutput : public Output {
FileOutput.h 20 #include <img_utils/Output.h>
30 class ANDROID_API FileOutput : public Output {
  /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...]
  /development/tools/mkstubs/src/com/android/mkstubs/sourcer/
Output.java 23 * An {@link Output} objects is an helper to write to a character stream {@link Writer}.
28 public class Output {
33 * Creates a new {@link Output} object that wraps the given {@link Writer}.
39 public Output(Writer writer) {
  /external/llvm/lib/Support/
YAMLTraits.cpp 396 // Output
399 Output::Output(raw_ostream &yout, void *context, int WrapColumn)
412 Output::~Output() {
415 bool Output::outputting() {
419 void Output::beginMapping() {
424 bool Output::mapTag(StringRef Tag, bool Use) {
426 this->output(" ");
427 this->output(Tag)
651 void Output::output(StringRef s) { function in class:Output
731 void ScalarTraits<bool>::output(const bool &Val, void *, raw_ostream &Out) { function in class:ScalarTraits
746 void ScalarTraits<StringRef>::output(const StringRef &Val, void *, function in class:ScalarTraits
757 void ScalarTraits<std::string>::output(const std::string &Val, void *, function in class:ScalarTraits
768 void ScalarTraits<uint8_t>::output(const uint8_t &Val, void *, function in class:ScalarTraits
785 void ScalarTraits<uint16_t>::output(const uint16_t &Val, void *, function in class:ScalarTraits
801 void ScalarTraits<uint32_t>::output(const uint32_t &Val, void *, function in class:ScalarTraits
817 void ScalarTraits<uint64_t>::output(const uint64_t &Val, void *, function in class:ScalarTraits
831 void ScalarTraits<int8_t>::output(const int8_t &Val, void *, raw_ostream &Out) { function in class:ScalarTraits
847 void ScalarTraits<int16_t>::output(const int16_t &Val, void *, function in class:ScalarTraits
862 void ScalarTraits<int32_t>::output(const int32_t &Val, void *, function in class:ScalarTraits
877 void ScalarTraits<int64_t>::output(const int64_t &Val, void *, function in class:ScalarTraits
890 void ScalarTraits<double>::output(const double &Val, void *, raw_ostream &Out) { function in class:ScalarTraits
903 void ScalarTraits<float>::output(const float &Val, void *, raw_ostream &Out) { function in class:ScalarTraits
916 void ScalarTraits<Hex8>::output(const Hex8 &Val, void *, raw_ostream &Out) { function in class:ScalarTraits
931 void ScalarTraits<Hex16>::output(const Hex16 &Val, void *, raw_ostream &Out) { function in class:ScalarTraits
946 void ScalarTraits<Hex32>::output(const Hex32 &Val, void *, raw_ostream &Out) { function in class:ScalarTraits
961 void ScalarTraits<Hex64>::output(const Hex64 &Val, void *, raw_ostream &Out) { function in class:ScalarTraits
    [all...]
  /device/google/contexthub/util/nanotool/
log.h 40 // Interface for a log output method
44 virtual void Output(const char *str) = 0;
45 virtual void Output(const char *format, va_list arg_list) = 0;
48 // Singleton used to log messages to an arbitrary output
92 void Output(const char *str);
93 void Output(const char *format, va_list arg_list);
  /external/llvm/lib/Option/
Arg.cpp 82 void Arg::renderAsInput(const ArgList &Args, ArgStringList &Output) const {
84 render(Args, Output);
88 Output.append(Values.begin(), Values.end());
91 void Arg::render(const ArgList &Args, ArgStringList &Output) const {
94 Output.append(Values.begin(), Values.end());
105 Output.push_back(Args.MakeArgString(OS.str()));
110 Output.push_back(Args.GetOrMakeJoinedArgString(
112 Output.append(Values.begin() + 1, Values.end());
116 Output.push_back(Args.MakeArgString(getSpelling()));
117 Output.append(Values.begin(), Values.end())
    [all...]
  /external/v8/src/interpreter/
bytecode-array-builder.cc 113 void BytecodeArrayBuilder::Output(Bytecode bytecode, uint32_t operand0,
122 void BytecodeArrayBuilder::Output(Bytecode bytecode, uint32_t operand0,
130 void BytecodeArrayBuilder::Output(Bytecode bytecode, uint32_t operand0,
138 void BytecodeArrayBuilder::Output(Bytecode bytecode, uint32_t operand0) {
145 void BytecodeArrayBuilder::Output(Bytecode bytecode) {
154 Output(BytecodeForBinaryOperation(op), RegisterOperand(reg));
159 Output(BytecodeForCountOperation(op));
164 Output(Bytecode::kToBooleanLogicalNot);
170 Output(Bytecode::kTypeOf);
176 Output(BytecodeForCompareOperation(op), RegisterOperand(reg))
    [all...]

Completed in 1022 milliseconds

1 2 3 4 5 6 7 8 91011>>