Searched defs:Input (Results 1 - 10 of 10) sorted by relevance

/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/compile/mclinker/lib/MC/
H A DInput.cpp1 //===- Input.cpp ----------------------------------------------------------===//
9 #include <mcld/MC/Input.h>
16 // mcld::Input
18 Input::Input(llvm::StringRef pName) function in class:Input
30 Input::Input(llvm::StringRef pName, const AttributeProxy& pProxy) function in class:Input
42 Input::Input(llvm::StringRef pName, function in class:Input
57 Input function in class:Input
[all...]
/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) {
/frameworks/compile/mclinker/include/mcld/Script/
H A DStrToken.h30 Input, enumerator in enum:mcld::StrToken::Kind
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DInput.java27 public class Input implements Parcelable { class in inherits:Parcelable
41 Input() { method in class:Input
56 private Input(Parcel in) { method in class:Input
92 public static final Parcelable.Creator<Input> CREATOR = new Parcelable.Creator<Input>() {
94 public Input createFromParcel(Parcel in) {
95 return new Input(in);
99 public Input[] newArray(int size) {
100 return new Input[size];
/frameworks/base/cmds/input/src/com/android/commands/input/
H A DInput.java35 public class Input { class
36 private static final String TAG = "Input";
59 (new Input()).run(args);
/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,
51 Input(llvm::StringRef pName,
56 Input(llvm::StringRef pName,
62 ~Input();
[all...]
/frameworks/compile/mclinker/include/mcld/Object/
H A DSectionMap.h30 class Input { class in class:mcld::SectionMap
36 Input(const std::string& pName, InputSectDesc::KeepPolicy pPolicy);
37 Input(const InputSectDesc& pInputDesc);
63 typedef std::vector<Input*> InputList;
111 void append(Input* pInput) { m_InputList.push_back(pInput); }
144 typedef std::pair<const Output*, const Input*> const_mapping;
145 typedef std::pair<Output*, Input*> mapping;
198 bool matched(const Input& pInput,
/frameworks/compile/mclinker/lib/Object/
H A DSectionMap.cpp34 // SectionMap::Input
36 SectionMap::Input::Input(const std::string& pName, function in class:SectionMap::Input
56 SectionMap::Input::Input(const InputSectDesc& pInputDesc) function in class:SectionMap::Input
189 return std::make_pair((const Output*)NULL, (const Input*)NULL);
203 return std::make_pair((Output*)NULL, (Input*)NULL);
248 Input* input = new Input(pInputSection, pPolicy);
256 Input* inpu
[all...]
/frameworks/compile/libbcc/lib/Renderscript/
H A DRSForEachExpand.cpp603 llvm::Value *Input = Builder.CreateStructGEP(Arg_p, 0); local
604 llvm::LoadInst *InBasePtr = Builder.CreateLoad(Input, "input_base");
711 llvm::Value *Input; local
714 Input = InPtr;
723 Input = InputLoad;
726 RootArgs.push_back(Input);

Completed in 3066 milliseconds