HomeSort by relevance Sort by last modified time
    Searched refs:Input (Results 1 - 25 of 522) 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 7 # Default Input method display names for Indic input methods
10 DisplayName.Bengali = Bengali Input Method
11 DisplayName.Devanagari = Devanagari Input Method
12 DisplayName.Gujarati = Gujarati Input Method
13 DisplayName.Gurmukhi = Gurmukhi Input Method
14 DisplayName.Kannada = Kannada Input Method
15 DisplayName.Malayalam = Malayalam Input Method
16 DisplayName.Oriya = Oriya Input Method
17 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,
  /external/libgdx/backends/gdx-backend-lwjgl/src/com/badlogic/gdx/backends/lwjgl/
LwjglInput.java 40 import com.badlogic.gdx.Input.Buttons;
46 import org.lwjgl.input.Cursor;
47 import org.lwjgl.input.Keyboard;
48 import org.lwjgl.input.Mouse;
52 import com.badlogic.gdx.Input;
56 /** An implementation of the {@link Input} interface hooking a LWJGL panel for input.
59 final public class LwjglInput implements Input {
202 listener.input(textField.getText());
230 if (key == Input.Keys.ANY_KEY)
    [all...]
  /external/libgdx/backends/gdx-backend-jglfw/src/com/badlogic/gdx/backends/jglfw/
JglfwInput.java 37 import com.badlogic.gdx.Input;
40 import com.badlogic.gdx.Input.Buttons;
44 /** An implementation of the {@link Input} interface hooking GLFW panel for input.
47 public class JglfwInput implements Input {
206 if (key == Input.Keys.ANY_KEY) return pressedKeys > 0;
207 if (key == Input.Keys.SYM)
214 if (key == Input.Keys.ANY_KEY) {
363 listener.input(textField.getText());
386 return Input.Keys.SPACE;
    [all...]
  /external/libgdx/backends/gdx-backend-lwjgl3/src/com/badlogic/gdx/backends/lwjgl3/
Lwjgl3Input.java 26 import com.badlogic.gdx.Input;
32 public class Lwjgl3Input implements Input, Disposable {
269 if (key == Input.Keys.ANY_KEY) return pressedKeys > 0;
270 if (key == Input.Keys.SYM) {
279 if (key == Input.Keys.ANY_KEY) {
348 return Input.Keys.SPACE;
350 return Input.Keys.APOSTROPHE;
352 return Input.Keys.COMMA;
354 return Input.Keys.MINUS;
356 return Input.Keys.PERIOD
    [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/llvm/tools/yaml2obj/
yaml2obj.h 18 class Input;
21 int yaml2coff(llvm::yaml::Input &YIn, llvm::raw_ostream &Out);
22 int yaml2elf(llvm::yaml::Input &YIn, llvm::raw_ostream &Out);
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/algorithm/string/detail/
sequence.hpp 30 InputT& Input,
35 Input.insert( At, Begin, End );
40 InputT& Input,
44 ::boost::algorithm::detail::insert( Input, At, ::boost::begin(Insert), ::boost::end(Insert) );
55 InputT& Input,
59 return Input.erase( From, To );
71 InputT& Input,
88 Input.insert( InputIt, InsertIt, End );
95 Input.erase( InputIt, To );
107 InputT& Input,
    [all...]
find_format.hpp 35 const InputT& Input,
52 Output = std::copy( ::boost::begin(Input), ::boost::end(Input), Output );
57 Output = std::copy( ::boost::begin(Input), ::boost::begin(M), Output );
62 Output = std::copy( M.end(), ::boost::end(Input), Output );
74 const InputT& Input,
78 if( ::boost::algorithm::detail::check_find_result(Input, FindResult) ) {
81 Input,
86 return std::copy( ::boost::begin(Input), ::boost::end(Input), Output )
    [all...]
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
PairedTask.java 33 * @template Input input type
36 abstract class PairedTask<Owner extends Activity, Input, Output>
37 extends AsyncTask<Input, Void, Output> {
49 abstract Output run(Input... input);
63 final protected Output doInBackground(Input... input) {
67 return run(input);

Completed in 1038 milliseconds

1 2 3 4 5 6 7 8 91011>>