HomeSort by relevance Sort by last modified time
    Searched full:_input (Results 1 - 25 of 99) sorted by null

1 2 3 4

  /external/opencv3/cmake/
OpenCVPCHSupport.cmake 10 # ADD_PRECOMPILED_HEADER _targetName _input _dowarn
11 # ADD_PRECOMPILED_HEADER_TO_TARGET _targetName _input _pch_output_to_use _dowarn
12 # ADD_NATIVE_PRECOMPILED_HEADER _targetName _input _dowarn
13 # GET_NATIVE_PRECOMPILED_HEADER _targetName _input
121 MACRO(_PCH_GET_COMPILE_COMMAND out_command _input _output)
123 FILE(TO_NATIVE_PATH ${_input} _native_input)
132 ${CMAKE_CXX_COMPILER} ${pchsupport_compiler_cxx_arg1} ${_compile_FLAGS} -x c++-header -o ${_output} ${_input}
136 ${CMAKE_CXX_COMPILER} ${_compile_FLAGS} -x c++-header -o ${_output} ${_input}
141 SET(_dummy_str "#include <${_input}>")
180 MACRO(GET_PRECOMPILED_HEADER_OUTPUT _targetName _input _output
    [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
CommonToken.as 37 protected var _input:CharStream;
61 token._input = input;
93 if ( _input==null ) {
96 _text = _input.substring(_start, _stop);
158 return _input;
162 _input = input;
  /prebuilts/gdb/darwin-x86/lib/python2.7/email/
feedparser.py 145 self._input = BufferedSubFile()
158 self._input.push(data)
169 self._input.close()
203 for line in self._input:
212 self._input.unreadline(line)
224 line = self._input.readline()
240 self._input.push_eof_matcher(NLCRE.match)
250 self._input.pop_eof_matcher()
256 line = self._input.readline()
262 line = self._input.readline(
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/email/
feedparser.py 145 self._input = BufferedSubFile()
158 self._input.push(data)
169 self._input.close()
203 for line in self._input:
212 self._input.unreadline(line)
224 line = self._input.readline()
240 self._input.push_eof_matcher(NLCRE.match)
250 self._input.pop_eof_matcher()
256 line = self._input.readline()
262 line = self._input.readline(
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
feedparser.py 145 self._input = BufferedSubFile()
158 self._input.push(data)
169 self._input.close()
203 for line in self._input:
212 self._input.unreadline(line)
224 line = self._input.readline()
240 self._input.push_eof_matcher(NLCRE.match)
250 self._input.pop_eof_matcher()
256 line = self._input.readline()
262 line = self._input.readline(
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
feedparser.py 145 self._input = BufferedSubFile()
158 self._input.push(data)
169 self._input.close()
203 for line in self._input:
212 self._input.unreadline(line)
224 line = self._input.readline()
240 self._input.push_eof_matcher(NLCRE.match)
250 self._input.pop_eof_matcher()
256 line = self._input.readline()
262 line = self._input.readline(
    [all...]
  /frameworks/data-binding/compilerCommon/src/main/xml-gen/android/databinding/parser/
XMLParser.java 85 _la = _input.LA(1);
94 _la = _input.LA(1);
103 _la = _input.LA(1);
108 _la = _input.LA(1);
117 _la = _input.LA(1);
171 _la = _input.LA(1);
180 _la = _input.LA(1);
256 _la = _input.LA(1);
265 _alt = getInterpreter().adaptivePredict(_input,7,_ctx);
271 switch (_input.LA(1))
    [all...]
  /frameworks/data-binding/compilerCommon/
BindingExpression.g4 429 {Character.isJavaIdentifierStart(_input.LA(-1))}?
432 {Character.isJavaIdentifierStart(Character.toCodePoint((char)_input.LA(-2), (char)_input.LA(-1)))}?
440 {Character.isJavaIdentifierPart(_input.LA(-1))}?
443 {Character.isJavaIdentifierPart(Character.toCodePoint((char)_input.LA(-2), (char)_input.LA(-1)))}?
  /external/parameter-framework/upstream/utility/
Tokenizer.cpp 38 : _input(input), _delimiters(delimiters), _mergeDelimiters(mergeDelimiters)
48 for (const auto character : _input) {
Tokenizer.h 66 const std::string _input; //< string to be tokenized member in class:Tokenizer
  /frameworks/data-binding/compilerCommon/src/main/grammar-gen/android/databinding/parser/
BindingExpressionParser.java 137 _la = _input.LA(1);
242 switch (_input.LA(1)) {
686 switch ( getInterpreter().adaptivePredict(_input,2,_ctx) ) {
710 ((UnaryOpContext)_localctx).op = _input.LT(1);
711 _la = _input.LA(1);
728 ((UnaryOpContext)_localctx).op = _input.LT(1);
729 _la = _input.LA(1);
794 _ctx.stop = _input.LT(-1);
797 _alt = getInterpreter().adaptivePredict(_input,5,_ctx);
804 switch ( getInterpreter().adaptivePredict(_input,4,_ctx) )
    [all...]
BindingExpressionLexer.java 130 return Character.isJavaIdentifierStart(_input.LA(-1));
133 return Character.isJavaIdentifierStart(Character.toCodePoint((char)_input.LA(-2), (char)_input.LA(-1)));
140 return Character.isJavaIdentifierPart(_input.LA(-1));
143 return Character.isJavaIdentifierPart(Character.toCodePoint((char)_input.LA(-2), (char)_input.LA(-1)));
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
RecognitionException.cs 77 private IIntStream _input; field in class:Antlr.Runtime.RecognitionException
145 this._input = input;
180 if (_input is ITokenStream) {
184 ITreeNodeStream treeNodeStream = _input as ITreeNodeStream;
205 return _input;
208 _input = value;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
RecognitionException.cs 79 private IIntStream _input; field in class:Antlr.Runtime.RecognitionException
153 this._input = input;
204 if ( _input is ITokenStream )
209 ITreeNodeStream treeNodeStream = _input as ITreeNodeStream;
236 return _input;
240 _input = value;
  /external/clang/lib/Driver/
Action.cpp 48 InputAction::InputAction(const Arg &_Input, types::ID _Type)
49 : Action(InputClass, _Type), Input(_Input) {
  /external/opencv3/modules/calib3d/test/
test_modelest.cpp 219 CvMat _input = input;
226 checkSubsetResult = modelEstimator.checkSubsetPublic(&_input, usedPointsCount, checkPartialSubsets);
  /external/eigen/unsupported/Eigen/
FFT 208 template <typename _Input>
210 void fwd( std::vector<Complex> & dst, const std::vector<_Input> & src)
212 if ( NumTraits<_Input>::IsComplex == 0 && HasFlag(HalfSpectrum) )
  /external/opencv3/modules/imgproc/test/
test_distancetransform.cpp 279 CvMat _input = test_mat[INPUT][0], _output = test_mat[REF_OUTPUT][0]; local
281 cvTsDistTransform( &_input, &_output, dist_type, mask_size, mask, 0 );
test_floodfill.cpp 517 CvMat _input = test_mat[REF_INPUT_OUTPUT][0]; local
519 cvTsFloodFill( &_input, seed_pt, new_val, l_diff, u_diff,
test_templmatch.cpp 312 CvMat _input = test_mat[INPUT][0], _templ = test_mat[INPUT][1]; local
314 cvTsMatchTemplate( &_input, &_templ, &_output, method );
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ActionScript/
ActionScript.stg 964 private function DFA<dfa.decisionNumber>_specialStateTransition(dfa:DFA, s:int, _input:IntStream):int {
966 var input:IntStream = _input;
969 var input:TokenStream = TokenStream(_input);
972 var input:TreeNodeStream = TreeNodeStream(_input);
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Java/
Java.stg     [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Scala/
Scala.stg     [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/
CSharp2.stg     [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/
CSharp3.stg     [all...]

Completed in 1200 milliseconds

1 2 3 4