HomeSort by relevance Sort by last modified time
    Searched refs:Input (Results 126 - 150 of 326) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/
regexp_adapter_re2.cc 59 template <typename Function, typename Input>
61 Input input,
67 return regex_function(input, regexp, out1, out2, out3);
70 return regex_function(input, regexp, out1, out2);
73 return regex_function(input, regexp, out1);
75 return regex_function(input, regexp);
  /external/smali/dexlib/src/main/java/org/jf/dexlib/
AnnotationItem.java 33 import org.jf.dexlib.Util.Input;
78 protected void readItem(Input in, ReadContext readContext) {
AnnotationSetRefList.java 32 import org.jf.dexlib.Util.Input;
75 protected void readItem(Input in, ReadContext readContext) {
MapItem.java 32 import org.jf.dexlib.Util.Input;
66 protected void readItem(Input in, ReadContext readContext) {
StringDataItem.java 32 import org.jf.dexlib.Util.Input;
87 protected void readItem(Input in, ReadContext readContext) {
StringIdItem.java 32 import org.jf.dexlib.Util.Input;
93 protected void readItem(Input in, ReadContext readContext) {
TypeIdItem.java 32 import org.jf.dexlib.Util.Input;
108 protected void readItem(Input in, ReadContext readContext) {
  /external/clang/lib/Frontend/
LayoutOverrideSource.cpp 31 std::ifstream Input(Filename.str().c_str());
32 if (!Input.is_open())
40 while (Input.good()) {
42 getline(Input, Line);
FrontendAction.cpp 163 const FrontendInputFile &Input) {
165 assert(!Input.isEmpty() && "Unexpected empty filename!");
166 setCurrentInput(Input);
169 StringRef InputFile = Input.getFile();
176 if (Input.getKind() == IK_AST) {
189 setCurrentInput(Input, AST);
221 if (Input.getKind() == IK_LLVM_IR) {
  /external/llvm/lib/CodeGen/
UnreachableBlockElim.cpp 191 unsigned Input = phi->getOperand(1).getReg();
199 if (Input != Output) {
201 MRI.constrainRegClass(Input, MRI.getRegClass(Output));
202 MRI.replaceRegWith(Output, Input);
  /external/llvm/lib/Target/SystemZ/
SystemZISelDAGToDAG.cpp 101 // given by Opcode. The operands are: Input (R2), Start (I3), End (I4) and
104 // (or (rotl Input, Rotate), ~Mask)
108 // (and (rotl Input, Rotate), Mask)
114 Mask(allOnes(BitSize)), Input(N), Start(64 - BitSize), End(63),
120 SDValue Input;
247 // Try to update RxSBG so that only the bits of RxSBG.Input in Mask are used.
251 // Try to fold some of RxSBG.Input into other fields of RxSBG.
634 // RxSBG.Input is a shift of Count bits in the direction given by IsLeft.
644 // Rotate that mask in the same way as RxSBG.Input is rotated.
654 SDValue N = RxSBG.Input;
    [all...]
  /external/oprofile/libutil++/tests/
string_manip_tests.cpp 22 template <typename Input, typename Output>
24 Input input; member in struct:input_output
29 template <typename Input, typename Output, typename Result>
30 static void check_result(char const * fct_name, Input const & input,
35 << "for:\n\"" << input << "\"\n"
56 for (cur = expect_erase; cur->input; ++cur) {
57 string result = erase_to_last_of(cur->input, ';');
58 check_result("erase_to_last_of()", cur->input, cur->output
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm_neon_asm/
h264bsdCountLeadingZeros.s 24 ; Input / output registers
  /frameworks/base/include/android_runtime/
android_view_InputQueue.h 20 #include <input/Input.h>
  /frameworks/compile/mclinker/tools/mcld/include/alone/
Linker.h 21 class Input;
  /frameworks/compile/mclinker/unittests/
InputTreeTest.cpp 108 Input* input = m_pAlloc->produce("FileSpec", "path1"); local
109 m_pTestee->insert<InputTree::Inclusive>(node, *input);
115 Input* input = m_pAlloc->produce("FileSpec", "path1"); local
116 m_pTestee->insert<InputTree::Inclusive>(node, *input);
139 Input* input = m_pAlloc->produce("FileSpec", "path1"); local
140 m_pTestee->insert(node, InputTree::Afterward, *input);
155 Input* input = m_pAlloc->produce("111", "/") local
    [all...]
  /frameworks/native/include/input/
Keyboard.h 20 #include <input/Input.h>
21 #include <input/InputDevice.h>
  /external/chromium_org/third_party/angle_dx11/src/compiler/preprocessor/
Tokenizer.l 53 pp::Input* input = &yyextra->input; \
54 pp::Input::Location* scanLoc = &yyextra->scanLoc; \
55 while ((scanLoc->sIndex < input->count()) && \
56 (scanLoc->cIndex >= input->length(scanLoc->sIndex))) \
58 scanLoc->cIndex -= input->length(scanLoc->sIndex++); \
67 result = yyextra->input.read(buf, maxSize);
242 pp::Input* input = &yyextra->input
    [all...]
  /external/chromium_org/win8/metro_driver/
chrome_app_view_ash.cc 173 update_kind_(winui::Input::PointerUpdateKind_Other),
187 mswr::ComPtr<winui::Input::IPointerPointProperties> properties;
209 bool IsType(windevs::Input::PointerDeviceType type) const {
210 mswr::ComPtr<windevs::Input::IPointerDevice> pointer_device;
212 windevs::Input::PointerDeviceType device_type;
218 return IsType(windevs::Input::PointerDeviceType_Mouse);
222 return IsType(windevs::Input::PointerDeviceType_Touch);
231 case winui::Input::PointerUpdateKind_LeftButtonPressed:
233 case winui::Input::PointerUpdateKind_LeftButtonReleased:
235 case winui::Input::PointerUpdateKind_RightButtonPressed
    [all...]
chrome_app_view.h 10 #include <windows.ui.input.h>
86 HRESULT OnEdgeGestureCompleted(winui::Input::IEdgeGesture* gesture,
87 winui::Input::IEdgeGestureEventArgs* args);
139 // If the OSK covers the input area we scroll the window by the height of the
  /external/clang/lib/ARCMigrate/
ARCMT.cpp 234 const FrontendInputFile &Input,
252 CInvok->getFrontendOpts().Inputs.push_back(Input);
343 const FrontendInputFile &Input,
355 if (arcmt::checkForManualIssues(CInvokForCheck, Input, DiagClient,
361 CInvok.getFrontendOpts().Inputs.push_back(Input);
397 const FrontendInputFile &Input,
399 return applyTransforms(origCI, Input, DiagClient,
404 const FrontendInputFile &Input,
410 return applyTransforms(origCI, Input, DiagClient,
  /art/compiler/
elf_writer_mclinker.cc 140 // enables some tracing of input file processing
155 // Add an artificial memory input. Based on LinkerTest.
167 mcld::Input::Object);
264 // Add input to supply code for symbol
268 mcld::Input* code_input = ir_builder_->ReadInput(symbol,
278 mcld::Input* libart_so_input = ir_builder_->ReadInput(libart_so, libart_so);
292 mcld::Input* compiler_runtime_lib_input = ir_builder_->ReadInput(compiler_runtime_lib,
305 mcld::Input* libc_lib_input_input = ir_builder_->ReadInput(libc_lib, libc_lib);
317 mcld::Input* libm_lib_input_input = ir_builder_->ReadInput(libm_lib, libm_lib);
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Delphi/
ASTParser.stg 46 RetVal.Tree := Adaptor.ErrorNode(Input, RetVal.Start as IToken,
47 Input.LT(-1), RE) as I<ASTLabelType>;
129 <label> := Input.LT(1) as I<labelType>;<\n>
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
TreeParser.cs 54 protected ITreeNodeStream input; field in class:Antlr.Runtime.Tree.TreeParser
56 public TreeParser(ITreeNodeStream input)
59 SetTreeNodeStream(input);
62 public TreeParser(ITreeNodeStream input, RecognizerSharedState state)
65 SetTreeNodeStream(input);
70 if (input != null) {
71 input.Seek(0); // rewind the input
75 /** <summary>Set the input stream</summary> */
76 public virtual void SetTreeNodeStream(ITreeNodeStream input) {
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
TreeParser.cs 56 protected ITreeNodeStream input; field in class:Antlr.Runtime.Tree.TreeParser
58 public TreeParser( ITreeNodeStream input )
61 SetTreeNodeStream( input );
64 public TreeParser( ITreeNodeStream input, RecognizerSharedState state )
67 SetTreeNodeStream( input );
73 if ( input != null )
75 input.Seek( 0 ); // rewind the input
79 /** <summary>Set the input stream</summary> */
80 public virtual void SetTreeNodeStream( ITreeNodeStream input )
    [all...]

Completed in 999 milliseconds

1 2 3 4 56 7 8 91011>>