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

1 2 34 5 6 7 8 91011>>

  /external/opencv3/samples/wp8/OcvRotatingCube/PhoneXamlDirect3DApp1/PhoneXamlDirect3DApp1Comp/
Direct3DInterop.h 29 public ref class Direct3DInterop sealed : public Windows::Phone::Input::Interop::IDrawingSurfaceManipulationHandler
37 virtual void SetManipulationHost(Windows::Phone::Input::Interop::DrawingSurfaceManipulationHost^ manipulationHost);
54 void OnPointerPressed(Windows::Phone::Input::Interop::DrawingSurfaceManipulationHost^ sender, Windows::UI::Core::PointerEventArgs^ args);
55 void OnPointerMoved(Windows::Phone::Input::Interop::DrawingSurfaceManipulationHost^ sender, Windows::UI::Core::PointerEventArgs^ args);
56 void OnPointerReleased(Windows::Phone::Input::Interop::DrawingSurfaceManipulationHost^ sender, Windows::UI::Core::PointerEventArgs^ args);
  /frameworks/compile/mclinker/lib/Target/ARM/
ARMException.h 25 class Input;
85 /// ARMInputExMap - ARM exception handling section mapping of a mcld::Input.
93 // create - Build the exception handling section mapping of a mcld::Input.
94 static std::unique_ptr<ARMInputExMap> create(Input &input);
139 typedef std::map<Input*, std::unique_ptr<ARMInputExMap> > InputMap;
148 void addInputMap(Input* pInput,
152 ARMInputExMap* getInputMap(Input* pInput) const {
173 // Map from Input to ARMInputExMap
  /frameworks/compile/mclinker/lib/Script/
InputCmd.cpp 44 : ScriptCommand(ScriptCommand::INPUT),
58 mcld::outs() << "INPUT ( ";
64 assert((*it)->kind() == StrToken::Input);
65 InputToken* input = llvm::cast<InputToken>(*it); local
66 cur = input->asNeeded();
72 if (input->type() == InputToken::NameSpec)
74 mcld::outs() << input->name() << " ";
87 // construct the INPUT tree
97 assert((*it)->kind() == StrToken::Input);
120 script.directories().find(token->name(), Input::Script)
165 InputTree::iterator input = m_Builder.getCurrentNode(); local
    [all...]
  /frameworks/compile/mclinker/lib/Target/Mips/
MipsRelocator.h 48 Input& pInput);
52 bool initializeScan(Input& pInput);
56 bool finalizeScan(Input& pInput);
60 bool initializeApply(Input& pInput);
64 bool finalizeApply(Input& pInput);
76 const Input& getApplyingInput() const { return *m_pApplyingInput; }
97 /// section in the processing input.
101 /// section in the processing input.
105 /// in the processing input.
167 Input* m_pApplyingInput
    [all...]
MipsLDBackend.h 92 bool readSection(Input& pInput, SectionData& pSD);
129 /// section in the specified input.
130 uint64_t getTPOffset(const Input& pInput) const;
133 /// section in the specified input.
134 uint64_t getDTPOffset(const Input& pInput) const;
137 /// in the specified input.
138 uint64_t getGP0(const Input& pInput) const;
225 bool mergeSection(Module& pModule, const Input& pInput, LDSection& pSection);
228 virtual void mergeFlags(Input& pInput, const char* ELF_hdr);
232 typedef llvm::DenseMap<const Input*, llvm::ELF::Elf64_Addr> InputNumMapType
    [all...]
  /frameworks/compile/mclinker/include/mcld/
IRBuilder.h 25 #include "mcld/MC/Input.h"
38 * inserting them into a input file.
63 /// @name Input Files On The Command Line
66 /// CreateInput - To create an input file and append it to the input tree.
67 /// This function is like to add an input file in the command line.
69 /// There are four types of the input files:
75 /// If Input::Unknown type is given, MCLinker will automatically
76 /// open and read the input file, and create sections of the input. Otherwise
    [all...]
  /external/clang/include/clang/ARCMigrate/
ARCMT.h 42 checkForManualIssues(CompilerInvocation &CI, const FrontendInputFile &Input,
54 const FrontendInputFile &Input,
70 CompilerInvocation &origCI, const FrontendInputFile &Input,
  /external/pdfium/core/src/fxcrt/
fx_basic_utf.cpp 16 void CFX_UTF8Decoder::Input(uint8_t byte) {
46 void CFX_UTF8Encoder::Input(FX_WCHAR unicode) {
83 encoder.Input(*pwsStr++);
  /frameworks/compile/mclinker/include/mcld/Script/
StrToken.h 26 enum Kind { Unknown, String, Input, Wildcard };
  /frameworks/compile/mclinker/lib/LD/
ELFDynObjReader.cpp 15 #include "mcld/MC/Input.h"
45 bool ELFDynObjReader::isMyFormat(Input& pInput, bool& pContinue) const {
62 } else if (Input::DynObj != m_pELFReader->fileType(ELF_hdr)) {
76 bool ELFDynObjReader::readHeader(Input& pInput) {
93 bool ELFDynObjReader::readSymbols(Input& pInput) {
Archive.cpp 10 #include "mcld/MC/Input.h"
29 Archive::Archive(Input& pInputFile, InputBuilder& pBuilder)
34 // FIXME: move creation of input tree out of Archive.
42 /// getARFile - get the Input& of the archive file
43 Input& Archive::getARFile() {
47 /// getARFile - get the Input& of the archive file
48 const Input& Archive::getARFile() const {
52 /// inputs - get the input tree built from this archive
57 /// inputs - get the input tree built from this archive
79 /// @param pIter - the iterator in the input tree built from this archiv
    [all...]
  /frameworks/compile/mclinker/lib/MC/
InputBuilder.cpp 54 Input* InputBuilder::createInput(const std::string& pName,
102 bool InputBuilder::setContext(Input& pInput, bool pCheck) {
121 bool InputBuilder::setMemory(Input& pInput,
129 bool InputBuilder::setMemory(Input& pInput, void* pMemBuffer, size_t pSize) {
Android.mk 12 Input.cpp \
  /frameworks/compile/mclinker/unittests/
ELFBinaryReaderTest.cpp 15 #include "mcld/MC/Input.h"
48 Input input("test.bin");
52 ASSERT_TRUE(reader->isMyFormat(input, doContinue));
55 ASSERT_FALSE(reader->isMyFormat(input, doContinue));
  /frameworks/native/services/inputflinger/
InputApplication.h 20 #include <input/Input.h>
29 * Describes the properties of an application that can receive input.
38 * Handle for an application that can receive input.
40 * Used by the native input dispatcher as a handle for the window manager objects
61 * This method should only be called from within the input dispatcher's
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/algorithm/string/detail/
replace_storage.hpp 65 InputT& /*Input*/,
121 InputT& Input,
128 ::boost::algorithm::detail::replace( Input, InsertIt, SegmentBegin, Storage );
143 InputT& Input,
151 Storage, Input, InsertIt, SegmentBegin, SegmentEnd );
  /external/llvm/unittests/Support/
YAMLIOTest.cpp 18 using llvm::yaml::Input;
78 Input yin("---\nfoo: 3\nbar: 5\n...\n");
87 Input yin("{foo: 3, bar: 5}");
98 Input yin("{foo: 3; bar: 5}", nullptr, suppressErrorMessages);
108 Input yin("---\n - foo: 3\n bar: 5\n - foo: 7\n bar: 9\n...\n");
127 Input yin2("---\nfbs:\n - foo: 3\n bar: 5\n - foo: 7\n bar: 9\n...\n");
140 Input yin("---\nfbs:\n...\n");
149 Input yin("---\nfbs: !!null null\n...\n");
158 Input yin("---\nfbs: ~\n...\n");
167 Input yin("---\nfbs: null\n...\n")
724 static StringRef input(StringRef scalar, void* ctxt, MyCustomType &value) { function in struct:llvm::yaml::ScalarTraits
826 static StringRef input(StringRef scalar, void *ctxt, function in struct:llvm::yaml::BlockScalarTraits
938 static StringRef input(StringRef scalar, void *, MyNumber &value) { function in struct:llvm::yaml::ScalarTraits
2108 static StringRef input(StringRef scalar, void*, FlowSeq &value) { function in struct:llvm::yaml::ScalarTraits
    [all...]
CommandLineTest.cpp 154 void testCommandLineTokenizer(ParserFunction *parse, const char *Input,
159 parse(Input, Saver, Actual, /*MarkEOLs=*/false);
168 const char *Input = "foo\\ bar \"foo bar\" \'foo bar\' 'foo\\\\bar' "
173 testCommandLineTokenizer(cl::TokenizeGNUCommandLine, Input, Output,
178 const char *Input = "a\\b c\\\\d e\\\\\"f g\" h\\\"i j\\\\\\\"k \"lmn\" o pqr "
182 testCommandLineTokenizer(cl::TokenizeWindowsCommandLine, Input, Output,
198 StackOption<std::string> Input(cl::Positional);
204 EXPECT_EQ(0, Input.getNumOccurrences());
  /external/clang/tools/clang-fuzzer/
ClangFuzzer.cpp 12 /// input. This function is then linked into the Fuzzer library.
37 std::unique_ptr<llvm::MemoryBuffer> Input =
39 Invocation->getPreprocessorOpts().addRemappedFile("./test.cc", Input.release());
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/ime/translit/
Transliterator.properties 7 # Default messages for the ICU transliterator input method.
11 title=ICU Transliterator Input Method
  /external/ppp/pppd/plugins/radius/etc/
dictionary.merit 13 ATTRIBUTE Acct-Input-Packets 47 integer
  /external/v8/test/js-perf-test/Generators/
generators.js 9 new Benchmark('Input', false, false, 0, Input),
66 // Benchmark: Input
82 function Input() {
  /frameworks/compile/mclinker/include/mcld/LD/
DiagnosticEngine.h 21 class Input;
115 Input* file;
  /frameworks/compile/mclinker/include/mcld/MC/
SearchDirs.h 12 #include "mcld/MC/Input.h"
50 mcld::Input::Type pPreferType);
53 mcld::Input::Type pPreferType) const;
  /frameworks/compile/mclinker/include/mcld/Object/
SectionMap.h 27 * \brief descirbe how to map input sections into output sections
31 class Input {
37 Input(const std::string& pName, InputSectDesc::KeepPolicy pPolicy);
38 explicit Input(const InputSectDesc& pInputDesc);
64 typedef std::vector<Input*> InputList;
112 void append(Input* pInput) { m_InputList.push_back(pInput); }
145 typedef std::pair<const Output*, const Input*> const_mapping;
146 typedef std::pair<Output*, Input*> mapping;
198 bool matched(const Input& pInput,

Completed in 2459 milliseconds

1 2 34 5 6 7 8 91011>>