Searched defs:Input (Results 1 - 13 of 13) sorted by last modified time

/frameworks/rs/support/java/src/android/support/v8/renderscript/
H A DScriptGroup.java221 if (obj instanceof Input) {
222 Input unbound = (Input)obj;
356 public static final class Input { class in class:ScriptGroup
364 Input() { method in class:ScriptGroup.Input
396 private List<Input> mInputs2;
404 List<Input> inputs, Future[] outputs) {
445 if (obj instanceof Future || obj instanceof Input) {
450 Input unbound = mInputs2.get(i);
460 if (output instanceof Input) {
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DInput.java27 public class Input implements Parcelable { class in inherits:Parcelable
42 Input() { method in class:Input
58 private Input(Parcel in) { method in class:Input
96 public static final Parcelable.Creator<Input> CREATOR = new Parcelable.Creator<Input>() {
98 public Input createFromParcel(Parcel in) {
99 return new Input(in);
103 public Input[] newArray(int size) {
104 return new Input[size];
/frameworks/compile/libbcc/lib/
H A DRSKernelExpand.cpp749 llvm::Value *Input; local
764 Input = TemporarySlot;
766 Input = InputLoad;
769 RootArgs.push_back(Input);
/frameworks/compile/mclinker/include/mcld/MC/
H A DInput.h1 //===- Input.h ------------------------------------------------------------===//
10 // Input class inherits MCLDFile, which is used to represent a input file
26 /** \class Input
27 * \brief Input provides the information of a input file.
29 class Input { class in namespace:mcld
46 explicit Input(llvm::StringRef pName);
48 Input(llvm::StringRef pName, const AttributeProxy& pAttr);
50 Input(llvm::StringRef pName,
55 Input(llvm::StringRef pName,
61 ~Input();
[all...]
/frameworks/compile/mclinker/include/mcld/Object/
H A DSectionMap.h31 class Input { class in class:mcld::SectionMap
37 Input(const std::string& pName, InputSectDesc::KeepPolicy pPolicy);
38 explicit Input(const InputSectDesc& pInputDesc);
64 typedef std::vector<Input*> InputList;
112 void append(Input* pInput) { m_InputList.push_back(pInput); }
145 typedef std::pair<const Output*, const Input*> const_mapping;
146 typedef std::pair<Output*, Input*> mapping;
198 bool matched(const Input& pInput,
/frameworks/compile/mclinker/include/mcld/Script/
H A DStrToken.h26 enum Kind { Unknown, String, Input, Wildcard }; enumerator in enum:mcld::StrToken::Kind
/frameworks/compile/mclinker/lib/MC/
H A DInput.cpp1 //===- Input.cpp ----------------------------------------------------------===//
9 #include "mcld/MC/Input.h"
17 // mcld::Input
19 Input::Input(llvm::StringRef pName) function in class:mcld::Input
31 Input::Input(llvm::StringRef pName, const AttributeProxy& pProxy) function in class:mcld::Input
43 Input::Input(llvm::StringRef pName, function in class:mcld::Input
58 Input function in class:mcld::Input
[all...]
/frameworks/compile/mclinker/lib/Object/
H A DSectionMap.cpp38 // SectionMap::Input
40 SectionMap::Input::Input(const std::string& pName, function in class:mcld::SectionMap::Input
59 SectionMap::Input::Input(const InputSectDesc& pInputDesc) function in class:mcld::SectionMap::Input
183 return std::make_pair((const Output*)NULL, (const Input*)NULL);
197 reinterpret_cast<Input*>(NULL));
238 Input* input = new Input(pInputSection, pPolicy);
246 Input* inpu
[all...]
/frameworks/base/rs/java/android/renderscript/
H A DScriptGroup.java224 if (obj instanceof Input) {
225 Input unbound = (Input)obj;
361 public static final class Input { class in class:ScriptGroup
369 Input() { method in class:ScriptGroup.Input
401 private List<Input> mInputs2;
410 List<Input> inputs, Future[] outputs) {
449 if (obj instanceof Future || obj instanceof Input) {
454 Input unbound = mInputs2.get(i);
464 if (output instanceof Input) {
[all...]
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/helpers/
H A DStaticMetadata.java317 * @param exposure Input exposure time value to check.
856 * @param sensitivity Input sensitivity value to check.
1291 Input enum constant in enum:StaticMetadata.StreamDirection
1312 case Input:
1392 case Input:
/frameworks/base/cmds/input/src/com/android/commands/input/
H A DInput.java36 public class Input { class
37 private static final String TAG = "Input";
60 (new Input()).run(args);
/frameworks/av/media/img_utils/include/img_utils/
H A DInput.h30 class ANDROID_API Input { class in namespace:android::img_utils
32 virtual ~Input();
35 * Open this Input.
60 * Close the Input. It is not valid to call open on a previously closed Input.
/frameworks/av/media/img_utils/src/
H A DInput.cpp17 #include <img_utils/Input.h>
22 Input::~Input() {}
24 status_t Input::open() { return OK; }
26 status_t Input::close() { return OK; }
28 ssize_t Input::skip(size_t count) {

Completed in 316 milliseconds