HomeSort by relevance Sort by last modified time
    Searched refs:Input (Results 26 - 50 of 522) sorted by null

12 3 4 5 6 7 8 91011>>

  /frameworks/av/media/img_utils/include/img_utils/
Input.h 30 class ANDROID_API Input {
32 virtual ~Input();
35 * Open this Input.
52 * Skips bytes in the input.
60 * Close the Input. It is not valid to call open on a previously closed Input.
FileInput.h 20 #include <img_utils/Input.h>
34 class ANDROID_API FileInput : public Input {
37 * Create a file input for the given path.
  /packages/apps/Camera2/src/com/android/camera/util/
ListenerCombiner.java 25 * Enables thread-safe multiplexing of multiple input boolean states into a
29 public class ListenerCombiner<Input extends Enum<Input>> {
39 * @param state the conjunction of all input values.
46 /** Stores the current input state. */
47 private final EnumMap<Input, Boolean> mInputs;
72 * Updates the state of the given input, dispatching to all output change
75 * @param index the index of the input to change.
76 * @param newValue the new value of the input.
79 public boolean setInput(Input input, boolean newValue)
    [all...]
  /frameworks/compile/mclinker/include/mcld/LD/
GNUArchiveReader.h 19 class Input;
37 bool isMyFormat(Input& input, bool& pContinue) const;
47 bool isThinArchive(Input& input) const;
50 /// return the corresponding archive member (it may be an input object or
58 Input* readMemberHeader(Archive& pArchiveRoot,
59 Input& pArchiveFile,
Relocator.h 16 class Input;
48 /// @param pInputSym - the input LDSymbol of relocation target symbol
50 /// @param pInput - the input file of relocation
55 Input& pInput) = 0;
62 /// @ param pInput - the input file of relocation
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;
    [all...]
ELFReader.h 63 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,
93 /// readDynamic - read ELF .dynamic in input dynobj
94 bool readDynamic(Input& pInput) const
    [all...]
TextDiagnosticPrinter.h 34 virtual void beginInput(const Input& pInput, const LinkerConfig& pConfig);
41 const Input* m_pInput;
  /frameworks/compile/mclinker/lib/MC/
SearchDirs.cpp 71 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::Archive:
    [all...]
  /frameworks/compile/mclinker/lib/Target/Mips/
MipsAbiFlags.h 19 class Input;
33 /// fill the structure by the data from the input section
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,
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/algorithm/string/
find_format.hpp 28 part(s) of the input. The part to be replaced is looked up using a Finder object.
40 this substring and replace it in the input.
41 The result is a modified copy of the input. It is returned as a sequence
45 \param Input An input sequence
49 a modified copy of the input
60 const RangeT& Input,
76 iterator_range<BOOST_STRING_TYPENAME range_const_iterator<RangeT>::type> lit_input(::boost::as_literal(Input));
94 const SequenceT& Input,
111 Input,
    [all...]
replace.hpp 29 part(s) of the input according to set of searching and replace criteria.
39 Replace the given range in the input string.
40 The result is a modified copy of the input. It is returned as a sequence
44 \param Input An input string
45 \param SearchRange A range in the input to be substituted
48 a modified copy of the input
58 const Range1T& Input,
66 Input,
77 const SequenceT& Input,
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/algorithm/string/detail/
find_format_all.hpp 36 const InputT& Input,
54 input_iterator_type LastMatch=::boost::begin(Input);
66 M=Finder( LastMatch, ::boost::end(Input) );
70 Output = std::copy( LastMatch, ::boost::end(Input), Output );
83 const InputT& Input,
88 if( ::boost::algorithm::detail::check_find_result(Input, FindResult) ) {
91 Input,
97 return std::copy( ::boost::begin(Input), ::boost::end(Input), Output );
110 const InputT& Input,
    [all...]
  /frameworks/compile/mclinker/include/mcld/
InputTree.h 14 #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> : public BinaryTreeBase<Input>
    [all...]
  /external/clang/lib/Driver/
Action.cpp 25 case InputClass: return "input";
49 : Action(InputClass, _Type), Input(_Input) {
54 BindArchAction::BindArchAction(std::unique_ptr<Action> Input,
56 : Action(BindArchClass, std::move(Input)), ArchName(_ArchName) {}
60 CudaDeviceAction::CudaDeviceAction(std::unique_ptr<Action> Input,
62 : Action(CudaDeviceClass, std::move(Input)), GpuArchName(ArchName),
67 CudaHostAction::CudaHostAction(std::unique_ptr<Action> Input,
69 : Action(CudaHostClass, std::move(Input)), DeviceActions(DeviceActions) {}
78 JobAction::JobAction(ActionClass Kind, std::unique_ptr<Action> Input,
80 : Action(Kind, std::move(Input), Type) {
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
Input.java 24 * Container class for CAT GET INPUT, GET IN KEY commands parameters.
27 public class Input implements Parcelable {
41 Input() {
56 private Input(Parcel in) {
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]
    [all...]
  /external/llvm/lib/Support/
YAMLTraits.cpp 44 // Input
47 Input::Input(StringRef InputContent,
59 Input::~Input() {
62 std::error_code Input::error() { return EC; }
65 void Input::HNode::anchor() {}
66 void Input::EmptyHNode::anchor() {}
67 void Input::ScalarHNode::anchor() {}
68 void Input::MapHNode::anchor() {
735 StringRef ScalarTraits<bool>::input(StringRef Scalar, void *, bool &Val) { function in class:ScalarTraits
751 StringRef ScalarTraits<StringRef>::input(StringRef Scalar, void *, function in class:ScalarTraits
762 StringRef ScalarTraits<std::string>::input(StringRef Scalar, void *, function in class:ScalarTraits
775 StringRef ScalarTraits<uint8_t>::input(StringRef Scalar, void *, uint8_t &Val) { function in class:ScalarTraits
790 StringRef ScalarTraits<uint16_t>::input(StringRef Scalar, void *, function in class:ScalarTraits
806 StringRef ScalarTraits<uint32_t>::input(StringRef Scalar, void *, function in class:ScalarTraits
822 StringRef ScalarTraits<uint64_t>::input(StringRef Scalar, void *, function in class:ScalarTraits
837 StringRef ScalarTraits<int8_t>::input(StringRef Scalar, void *, int8_t &Val) { function in class:ScalarTraits
852 StringRef ScalarTraits<int16_t>::input(StringRef Scalar, void *, int16_t &Val) { function in class:ScalarTraits
867 StringRef ScalarTraits<int32_t>::input(StringRef Scalar, void *, int32_t &Val) { function in class:ScalarTraits
882 StringRef ScalarTraits<int64_t>::input(StringRef Scalar, void *, int64_t &Val) { function in class:ScalarTraits
894 StringRef ScalarTraits<double>::input(StringRef Scalar, void *, double &Val) { function in class:ScalarTraits
907 StringRef ScalarTraits<float>::input(StringRef Scalar, void *, float &Val) { function in class:ScalarTraits
921 StringRef ScalarTraits<Hex8>::input(StringRef Scalar, void *, Hex8 &Val) { function in class:ScalarTraits
936 StringRef ScalarTraits<Hex16>::input(StringRef Scalar, void *, Hex16 &Val) { function in class:ScalarTraits
951 StringRef ScalarTraits<Hex32>::input(StringRef Scalar, void *, Hex32 &Val) { function in class:ScalarTraits
966 StringRef ScalarTraits<Hex64>::input(StringRef Scalar, void *, Hex64 &Val) { function in class:ScalarTraits
    [all...]
  /external/llvm/unittests/Support/
MD5Test.cpp 22 /// \brief Tests an arbitrary set of bytes passed as \p Input.
23 void TestMD5Sum(ArrayRef<uint8_t> Input, StringRef Final) {
25 Hash.update(Input);
33 void TestMD5Sum(StringRef Input, StringRef Final) {
35 Hash.update(Input);
CompressionTest.cpp 26 void TestZlibCompression(StringRef Input, zlib::CompressionLevel Level) {
29 EXPECT_EQ(zlib::StatusOK, zlib::compress(Input, Compressed, Level));
32 zlib::uncompress(Compressed, Uncompressed, Input.size()));
33 EXPECT_EQ(Input, Uncompressed);
34 if (Input.size() > 0) {
37 zlib::uncompress(Compressed, Uncompressed, Input.size() - 1));
  /frameworks/compile/mclinker/include/mcld/Target/
ELFAttributeData.h 19 class Input;
59 /// input.
60 virtual bool preMerge(const Input& pInput) { return true; }
62 /// merge - implement logics to merge input attribute to the output.
64 const Input& pInput,
69 /// input.
70 virtual bool postMerge(const LinkerConfig& pConfig, const Input& pInput) {
82 /// ReadTag - read an attribute tag from input buffer.
90 /// ReadValue - read an attribute value from input buffer
92 /// Similar with ReadTag() while this reads attribute value from the input
    [all...]
  /frameworks/compile/mclinker/lib/LD/
BSDArchiveReader.cpp 11 #include "mcld/MC/Input.h"
27 bool BSDArchiveReader::isMyFormat(Input& pInput, bool& pContinue) const {
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/bfin/
expected_comparison_errors.l 2 .*:1: Error: AREGs are in bad order or same. Input text was A0.
3 .*:2: Error: AREGs are in bad order or same. Input text was A1.
4 .*:3: Error: AREGs are in bad order or same. Input text was A0.
5 .*:4: Error: AREGs are in bad order or same. Input text was a0.
6 .*:5: Error: AREGs are in bad order or same. Input text was a1.
7 .*:6: Error: AREGs are in bad order or same. Input text was a0.
8 .*:7: Error: AREGs are in bad order or same. Input text was a0.
9 .*:8: Error: AREGs are in bad order or same. Input text was a1.
10 .*:9: Error: AREGs are in bad order or same. Input text was a0.
11 .*:10: Error: Bad register in comparison. Input text was P0
    [all...]
  /external/libgdx/backends/gdx-backend-lwjgl/src/com/badlogic/gdx/backends/lwjgl/
LwjglAWTInput.java 57 import com.badlogic.gdx.Input;
62 public class LwjglAWTInput implements Input, MouseMotionListener, MouseListener, MouseWheelListener, KeyListener {
243 listener.input(textField.getText());
280 if (key == Input.Keys.ANY_KEY) {
291 if (key == Input.Keys.ANY_KEY) {
600 return Input.Keys.PLUS;
602 return Input.Keys.MINUS;
604 return Input.Keys.NUM_0;
606 return Input.Keys.NUM_1;
608 return Input.Keys.NUM_2;
    [all...]
  /external/clang/include/clang/Driver/
Action.h 29 /// it is a job to transform an input using some tool.
78 Action(ActionClass Kind, std::unique_ptr<Action> Input, types::ID Type)
79 : Kind(Kind), Type(Type), Inputs(1, Input.release()), OwnsInputs(true) {
81 Action(ActionClass Kind, std::unique_ptr<Action> Input)
82 : Kind(Kind), Type(Input->getType()), Inputs(1, Input.release()),
110 const llvm::opt::Arg &Input;
113 InputAction(const llvm::opt::Arg &Input, types::ID Type);
115 const llvm::opt::Arg &getInputArg() const { return Input; }
129 BindArchAction(std::unique_ptr<Action> Input, const char *ArchName)
    [all...]
  /frameworks/compile/mclinker/include/mcld/MC/
Input.h 1 //===- 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 {
46 explicit Input(llvm::StringRef pName);
48 Input(llvm::StringRef pName, const AttributeProxy& pAttr);
50 Input(llvm::StringRef pName
    [all...]
InputBuilder.h 13 #include "mcld/MC/Input.h"
30 * InputBuilder build input tree and inputs.
44 // ----- input tree operations ----- //
50 // ----- root of input tree ----- //
57 unsigned int pType = Input::Unknown);
59 // ----- input operations ----- //
60 Input* createInput(const std::string& pName,
62 unsigned int pType = Input::Unknown,
65 bool setContext(Input& pInput, bool pCheck = true);
67 bool setMemory(Input& pInput
109 Input* input = createInput(pName, pPath, pType); local
124 Input* input = createInput(pName, pPath, pType); local
    [all...]

Completed in 728 milliseconds

12 3 4 5 6 7 8 91011>>