HomeSort by relevance Sort by last modified time
    Searched refs:Input (Results 1 - 25 of 657) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/compile/mclinker/include/mcld/LD/
BinaryReader.h 15 class Input;
25 virtual bool isMyFormat(Input& pInput, bool& pContinue) const {
30 virtual bool readBinary(Input& pFile) = 0;
DynObjReader.h 16 class Input;
29 virtual bool readHeader(Input& pFile) = 0;
31 virtual bool readSymbols(Input& pFile) = 0;
LDReader.h 14 class Input;
30 virtual bool isMyFormat(Input& pInput, bool& pContinue) const = 0;
ELFDynObjReader.h 17 class Input;
33 bool isMyFormat(Input& pFile, bool& pContinue) const;
36 bool readHeader(Input& pFile);
38 bool readSymbols(Input& pInput);
ObjectReader.h 18 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;
ELFObjectReader.h 19 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);
BSDArchiveReader.h 16 class Input;
29 bool isMyFormat(Input& pInput, bool& pContinue) const;
ELFBinaryReader.h 16 class Input;
29 bool isMyFormat(Input& pInput, bool& pContinue) const;
31 bool readBinary(Input& pInput);
ELFReaderIf.h 49 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,
84 /// readDynamic - read ELF .dynamic in input dynobj
85 virtual bool readDynamic(Input& pInput) const = 0
    [all...]
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/ime/indic/
DisplayNames.properties 11 # Default Input method display names for Indic input methods
14 DisplayName.Bengali = Bengali Input Method
15 DisplayName.Devanagari = Devanagari Input Method
16 DisplayName.Gujarati = Gujarati Input Method
17 DisplayName.Gurmukhi = Gurmukhi Input Method
18 DisplayName.Kannada = Kannada Input Method
19 DisplayName.Malayalam = Malayalam Input Method
20 DisplayName.Oriya = Oriya Input Method
21 DisplayName.Tamil = Tamil Input Metho
    [all...]
  /frameworks/compile/mclinker/lib/MC/
FileAction.cpp 11 #include "mcld/MC/Input.h"
23 Input* input = *pBuilder.getCurrentNode(); local
25 if (input->hasContext())
29 if (input->type() == Input::Script || input->type() == Input::Object ||
30 input->type() == Input::DynObj || input->type() == Input::Archive
46 Input* input = *pBuilder.getCurrentNode(); local
    [all...]
InputFactory.cpp 21 : 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);
Input.cpp 1 //===- Input.cpp ----------------------------------------------------------===//
9 #include "mcld/MC/Input.h"
17 // mcld::Input
19 Input::Input(llvm::StringRef pName)
31 Input::Input(llvm::StringRef pName, const AttributeProxy& pProxy)
43 Input::Input(llvm::StringRef pName,
58 Input::Input(llvm::StringRef pName
    [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/av/media/img_utils/src/
Input.cpp 17 #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/MC/
InputFactory.h 11 #include "mcld/MC/Input.h"
29 class InputFactory : public GCFactory<Input, 0> {
31 typedef GCFactory<Input, 0> Alloc;
38 // ----- input ----- //
39 Input* produce(llvm::StringRef pName,
41 unsigned int pType = Input::Unknown,
44 Input* produce(llvm::StringRef pName,
46 unsigned int pType = Input::Unknown,
  /prebuilts/go/darwin-x86/src/encoding/csv/
writer_test.go 14 Input [][]string
18 {Input: [][]string{{"abc"}}, Output: "abc\n"},
19 {Input: [][]string{{"abc"}}, Output: "abc\r\n", UseCRLF: true},
20 {Input: [][]string{{`"abc"`}}, Output: `"""abc"""` + "\n"},
21 {Input: [][]string{{`a"b`}}, Output: `"a""b"` + "\n"},
22 {Input: [][]string{{`"a"b"`}}, Output: `"""a""b"""` + "\n"},
23 {Input: [][]string{{" abc"}}, Output: `" abc"` + "\n"},
24 {Input: [][]string{{"abc,def"}}, Output: `"abc,def"` + "\n"},
25 {Input: [][]string{{"abc", "def"}}, Output: "abc,def\n"},
26 {Input: [][]string{{"abc"}, {"def"}}, Output: "abc\ndef\n"}
    [all...]
  /prebuilts/go/linux-x86/src/encoding/csv/
writer_test.go 14 Input [][]string
18 {Input: [][]string{{"abc"}}, Output: "abc\n"},
19 {Input: [][]string{{"abc"}}, Output: "abc\r\n", UseCRLF: true},
20 {Input: [][]string{{`"abc"`}}, Output: `"""abc"""` + "\n"},
21 {Input: [][]string{{`a"b`}}, Output: `"a""b"` + "\n"},
22 {Input: [][]string{{`"a"b"`}}, Output: `"""a""b"""` + "\n"},
23 {Input: [][]string{{" abc"}}, Output: `" abc"` + "\n"},
24 {Input: [][]string{{"abc,def"}}, Output: `"abc,def"` + "\n"},
25 {Input: [][]string{{"abc", "def"}}, Output: "abc,def\n"},
26 {Input: [][]string{{"abc"}, {"def"}}, Output: "abc\ndef\n"}
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/bfin/
line_number.l 2 .*:4: Error: syntax error. Input text was illegal.
expected_errors.l 10 .*:13: Error: Dregs expected. Input text was R3.L.
11 .*:15: Error: Source multiplication register mismatch. Input text was \).
20 .*:26: Error: Cannot move A1 to even register. Input text was \).
21 .*:27: Error: Cannot move A1 to low half of register. Input text was \).
22 .*:28: Error: Cannot move A0 to odd register. Input text was \).
23 .*:29: Error: Cannot move A0 to high half of register. Input text was \).
24 .*:31: Error: Displacement out of range. Input text was r0.
25 .*:32: Error: Displacement out of range. Input text was r0.
26 .*:33: Error: Displacement out of range. Input text was r0.
27 .*:34: Error: Displacement out of range. Input text was r0
    [all...]
  /external/clang/lib/Driver/
Action.cpp 22 case InputClass: return "input";
46 : Action(InputClass, _Type), Input(_Input) {
51 BindArchAction::BindArchAction(Action *Input, const char *_ArchName)
52 : Action(BindArchClass, Input), ArchName(_ArchName) {}
56 CudaDeviceAction::CudaDeviceAction(Action *Input, clang::CudaArch Arch,
58 : Action(CudaDeviceClass, Input), GpuArch(Arch), AtTopLevel(AtTopLevel) {}
62 CudaHostAction::CudaHostAction(Action *Input, const ActionList &DeviceActions)
63 : Action(CudaHostClass, Input), DeviceActions(DeviceActions) {}
67 JobAction::JobAction(ActionClass Kind, Action *Input, types::ID Type)
68 : Action(Kind, Input, Type) {
    [all...]
  /external/swiftshader/src/OpenGL/compiler/preprocessor/
Input.h 23 // Holds and reads input for Lexer.
24 class Input
27 Input();
28 Input(int count, const char* const string[], const int length[]);
46 // Input.
  /packages/apps/DocumentsUI/src/com/android/documentsui/base/
CheckedTask.java 31 * @template Input input type
34 public abstract class CheckedTask<Input, Output>
35 extends AsyncTask<Input, Void, Output> {
47 protected abstract Output run(Input... input);
61 protected final Output doInBackground(Input... input) {
65 return run(input);
  /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.
  /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...]

Completed in 685 milliseconds

1 2 3 4 5 6 7 8 91011>>