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

1 2

  /external/parameter-framework/utility/
Tokenizer.cpp 38 : _input(input), _delimiters(delimiters), _position(0)
47 string::size_type tokenStart = _input.find_first_not_of(_delimiters, _position);
56 string::size_type tokenEnd = _input.find_first_of(_delimiters, tokenStart);
60 return _input.substr(tokenStart, tokenEnd - tokenStart);
Tokenizer.h 71 const std::string _input; //< string to be tokenized member in class:Tokenizer
  /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;
  /external/parameter-framework/remote-process/
main.cpp 44 istream& _input; // File to read the commands from member in class:CRequestMessageGenerator
47 CRequestMessageGenerator(istream& input) : _input(input) {}
65 getline(_input, sLine);
66 if (_input.eof() && (_input.gcount() == 0)) {
69 if (_input.fail()) {
  /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)))}?
  /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 46 InputAction::InputAction(const Arg &_Input, types::ID _Type)
47 : Action(InputClass, _Type), Input(_Input) {
  /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/clang/include/clang/Driver/
Action.h 111 InputAction(const llvm::opt::Arg &_Input, types::ID _Type);
  /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...]
  /external/selinux/sepolgen/src/sepolgen/
lex.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/sepolgen/
lex.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/sepolgen/
lex.py     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
pydoc.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
pydoc.py     [all...]

Completed in 675 milliseconds

1 2