Searched refs:Input (Results 1 - 25 of 177) sorted by relevance

12345678

/frameworks/compile/mclinker/lib/MC/
H A DFileAction.cpp11 #include "mcld/MC/Input.h"
23 Input* input = *pBuilder.getCurrentNode();
29 if (input->type() == Input::Script || input->type() == Input::Object ||
30 input->type() == Input::DynObj || input->type() == Input::Archive)
46 Input* input = *pBuilder.getCurrentNode();
52 if (input->type() == Input::Script || input->type() == Input::Object ||
53 input->type() == Input
[all...]
H A DInputFactory.cpp21 : GCFactory<Input, 0>(pNum) {
33 Input* InputFactory::produce(llvm::StringRef pName,
37 Input* result = Alloc::allocate();
38 new (result) Input(pName, pPath, *m_pLast, pType, pFileOffset);
42 Input* InputFactory::produce(llvm::StringRef pName,
46 Input* result = Alloc::allocate();
47 new (result) Input(pName, sys::fs::Path(pPath), *m_pLast, pType, pFileOffset);
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...]
H A DSearchDirs.cpp71 mcld::Input::Type pType) {
72 assert(Input::DynObj == pType || Input::Archive == pType ||
73 Input::Script == pType);
77 case Input::Script:
80 case Input::DynObj:
81 case Input::Archive:
96 case Input::Script: {
104 case Input::DynObj: {
116 case 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/LD/
H A DBinaryReader.h15 class Input;
25 virtual bool isMyFormat(Input& pInput, bool& pContinue) const {
30 virtual bool readBinary(Input& pFile) = 0;
H A DDynObjReader.h16 class Input;
29 virtual bool readHeader(Input& pFile) = 0;
31 virtual bool readSymbols(Input& pFile) = 0;
H A DObjectReader.h18 class Input;
36 virtual bool readHeader(Input& pFile) = 0;
38 virtual bool readSymbols(Input& pFile) = 0;
40 virtual bool readSections(Input& pFile) = 0;
45 virtual bool readRelocations(Input& pFile) = 0;
H A DELFObjectReader.h19 class Input;
44 bool isMyFormat(Input& pFile, bool& pContinue) const;
47 bool readHeader(Input& pFile);
49 virtual bool readSections(Input& pFile);
51 virtual bool readSymbols(Input& pFile);
56 virtual bool readRelocations(Input& pFile);
H A DELFBinaryReader.h16 class Input;
29 bool isMyFormat(Input& pInput, bool& pContinue) const;
31 bool readBinary(Input& pInput);
H A DELFDynObjReader.h17 class Input;
33 bool isMyFormat(Input& pFile, bool& pContinue) const;
36 bool readHeader(Input& pFile);
38 bool readSymbols(Input& pInput);
H A DBSDArchiveReader.h16 class Input;
29 bool isMyFormat(Input& pInput, bool& pContinue) const;
H A DLDReader.h14 class Input;
30 virtual bool isMyFormat(Input& pInput, bool& pContinue) const = 0;
H A DELFReader.h63 Input::Type fileType(const void* pELFHeader) const;
66 bool readSectionHeaders(Input& pInput, const void* pELFHeader) const;
69 bool readRegularSection(Input& pInput, SectionData& pSD) const;
72 bool readSymbols(Input& pInput,
77 /// readSignature - read a symbol from the given Input and index in symtab
79 ResolveInfo* readSignature(Input& pInput,
84 bool readRela(Input& pInput,
89 bool readRel(Input& pInput,
94 bool readDynamic(Input& pInput) const;
148 Input
[all...]
H A DELFReaderIf.h49 virtual Input::Type fileType(const void* pELFHeader) const = 0;
56 virtual bool readSectionHeaders(Input& pInput,
60 virtual bool readRegularSection(Input& pInput, SectionData& pSD) const = 0;
63 virtual bool readSymbols(Input& pInput,
68 /// readSignature - read a symbol from the given Input and index in symtab
70 virtual ResolveInfo* readSignature(Input& pInput,
75 virtual bool readRela(Input& pInput,
80 virtual bool readRel(Input& pInput,
85 virtual bool readDynamic(Input& pInput) const = 0;
100 ResolveInfo::Desc getSymDesc(uint16_t pShndx, const Input
[all...]
H A DRelocator.h16 class Input;
55 Input& pInput) = 0;
65 Input& pInput);
69 virtual bool initializeScan(Input& pInput) { return true; }
73 virtual bool finalizeScan(Input& pInput) { return true; }
77 virtual bool initializeApply(Input& pInput) { return true; }
81 virtual bool finalizeApply(Input& pInput) { return true; }
H A DGNUArchiveReader.h19 class Input;
37 bool isMyFormat(Input& input, bool& pContinue) const;
47 bool isThinArchive(Input& input) const;
58 Input* readMemberHeader(Archive& pArchiveRoot,
59 Input& pArchiveFile,
H A DTextDiagnosticPrinter.h34 virtual void beginInput(const Input& pInput, const LinkerConfig& pConfig);
41 const Input* m_pInput;
/frameworks/compile/mclinker/include/mcld/MC/
H A DInputFactory.h11 #include "mcld/MC/Input.h"
29 class InputFactory : public GCFactory<Input, 0> {
31 typedef GCFactory<Input, 0> Alloc;
39 Input* produce(llvm::StringRef pName,
41 unsigned int pType = Input::Unknown,
44 Input* produce(llvm::StringRef pName,
46 unsigned int pType = Input::Unknown,
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsAbiFlags.h19 class Input;
34 static bool fillBySection(const Input& pInput, const LDSection& pSection,
38 static bool fillByElfFlags(const Input& pInput, uint64_t elfFlags,
42 static bool isCompatible(const Input& pInput, const MipsAbiFlags& elf,
46 static bool merge(const Input& pInput, MipsAbiFlags& oldFlags,
/frameworks/compile/mclinker/include/mcld/
H A DInputTree.h14 #include "mcld/MC/Input.h"
22 * PolicyIterator<mcld::Input>
23 * \brief PolicyIterator<mcld::Input> is a partially specific PolicyIterator
26 class PolicyIterator<mcld::Input, Traits, IteratorType>
27 : public PolicyIteratorBase<Input, Traits, IteratorType> {
29 typedef PolicyIterator<Input, Traits, IteratorType> Self;
30 typedef PolicyIteratorBase<Input, Traits, IteratorType> Base;
31 typedef PolicyIterator<Input, typename Traits::nonconst_traits, IteratorType>
33 typedef PolicyIterator<Input, typename Traits::const_traits, IteratorType>
66 class BinaryTree<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/mclinker/lib/LD/
H A DBSDArchiveReader.cpp11 #include "mcld/MC/Input.h"
27 bool BSDArchiveReader::isMyFormat(Input& pInput, bool& pContinue) const {
/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.
H A DFileInput.h20 #include <img_utils/Input.h>
34 class ANDROID_API FileInput : public Input {

Completed in 233 milliseconds

12345678