HomeSort by relevance Sort by last modified time
    Searched defs:lex (Results 1 - 25 of 54) sorted by null

1 2 3

  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
lexer.ml 5 let rec lex = parser var
7 | [< ' (' ' | '\n' | '\r' | '\t'); stream >] -> lex stream
27 [< 'Token.Kwd c; lex stream >]
36 | [< stream=lex >] ->
43 | [< stream=lex >] ->
50 | [< ' ('\n'); stream=lex >] -> stream
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
lexer.ml 5 let rec lex = parser var
7 | [< ' (' ' | '\n' | '\r' | '\t'); stream >] -> lex stream
27 [< 'Token.Kwd c; lex stream >]
36 | [< stream=lex >] ->
43 | [< stream=lex >] ->
50 | [< ' ('\n'); stream=lex >] -> stream
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
lexer.ml 5 let rec lex = parser var
7 | [< ' (' ' | '\n' | '\r' | '\t'); stream >] -> lex stream
27 [< 'Token.Kwd c; lex stream >]
36 | [< stream=lex >] ->
43 | [< stream=lex >] ->
50 | [< ' ('\n'); stream=lex >] -> stream
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
lexer.ml 5 let rec lex = parser var
7 | [< ' (' ' | '\n' | '\r' | '\t'); stream >] -> lex stream
27 [< 'Token.Kwd c; lex stream >]
36 | [< stream=lex >] ->
43 | [< stream=lex >] ->
55 | [< ' ('\n'); stream=lex >] -> stream
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
lexer.ml 5 let rec lex = parser var
7 | [< ' (' ' | '\n' | '\r' | '\t'); stream >] -> lex stream
27 [< 'Token.Kwd c; lex stream >]
36 | [< stream=lex >] ->
43 | [< stream=lex >] ->
57 | [< ' ('\n'); stream=lex >] -> stream
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
lexer.ml 5 let rec lex = parser var
7 | [< ' (' ' | '\n' | '\r' | '\t'); stream >] -> lex stream
27 [< 'Token.Kwd c; lex stream >]
36 | [< stream=lex >] ->
43 | [< stream=lex >] ->
58 | [< ' ('\n'); stream=lex >] -> stream
  /external/javassist/src/main/javassist/compiler/
CompileError.java 22 private Lex lex; field in class:CompileError
25 public CompileError(String s, Lex l) {
27 lex = l;
32 lex = null;
43 public Lex getLex() { return lex; }
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treeparser/
Main.java 7 LangLexer lex = new LangLexer(input); local
8 CommonTokenStream tokens = new CommonTokenStream(lex);
  /external/chromium_org/third_party/WebKit/Source/bindings/scripts/
blink_idl_lexer.py 31 The lexer uses the PLY (Python Lex-Yacc) library to build a tokenizer which
65 from ply import lex namespace
99 # Need outputdir in path because lex imports the cached lex table
120 self._lexobj = lex.lex(object=self,
130 # If file itself executed, build and cache lex table
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBKeyPath.cpp 59 m_currentTokenType = lex(m_currentElement);
66 TokenType lex(String&);
75 IDBKeyPathLexer::TokenType IDBKeyPathLexer::lex(String& element) function in class:blink::IDBKeyPathLexer
  /external/chromium_org/third_party/angle/src/compiler/preprocessor/
Preprocessor.cpp 84 void Preprocessor::lex(Token *token) function in class:pp::Preprocessor
89 mImpl->macroExpander.lex(token);
MacroExpander.cpp 29 virtual void lex(Token *token) function in class:pp::TokenLexer
66 void MacroExpander::lex(Token *token) function in class:pp::MacroExpander
121 mLexer->lex(token);
323 expander.lex(&token);
327 expander.lex(&token);
  /external/chromium_org/mojo/public/tools/bindings/pylib/mojom_tests/parse/
lexer_unittest.py 24 from ply import lex namespace
39 setattr(lex.LexToken, '__eq__', _LexTokenEq)
45 rv = lex.LexToken()
61 self._zygote_lexer = lex.lex(mojom.parse.lexer.Lexer("my_file.mojom"))
  /external/chromium_org/third_party/polymer/components-chromium/core-component-page/
core-component-page-extracted.js 847 * Static Lex Method
850 Lexer.lex = function(src, options) {
852 return lexer.lex(src);
859 Lexer.prototype.lex = function(src) {
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/
lexer.py 41 self.lex(s)
45 def lex(self,s): member in class:Lexer
158 #print "lex ",repr(s[i]),is_float
  /external/owasp/sanitizer/src/tests/org/owasp/html/
HtmlLexerTest.java 51 lex(input, actual); method
124 private static void lex(String input, Appendable out) throws Exception { method in class:HtmlLexerTest
  /external/chromium_org/ppapi/generators/
idl_lexer.py 11 # The lexer is uses the PLY lex library to build a tokenizer which understands
28 from ply import lex namespace
33 from ply import lex namespace
44 # 'tokens' is a value required by lex which specifies the complete list
100 # 'literals' is a value expected by lex which specifies a list of valid
106 # Lex assumes any value or function in the form of 't_<TYPE>' represents a
215 self.lexobj = lex.lex(object=self, lextab=None, optimize=0)
346 except lex.LexError as le:
  /external/chromium_org/third_party/WebKit/Source/core/css/parser/
CSSTokenizer.h 61 inline int lex(void* yylval) { return (this->*m_lexFunc)(yylval); } function in class:blink::CSSTokenizer
  /external/chromium_org/tools/idl_parser/
idl_lexer.py 27 from ply import lex namespace
33 from ply import lex namespace
39 # 'literals' is a value expected by lex which specifies a list of valid
46 # 'tokens' is a value required by lex which specifies the complete list
114 # Lex assumes any value or function in the form of 't_<TYPE>' represents a
250 self._lexobj = lex.lex(object=self, lextab=None, optimize=0)
  /external/llvm/utils/lit/lit/
ShUtil.py 62 # Otherwise, lex the operator and convert to a redirection
132 lex_one_token - Lex a single 'sh' token. """
162 def lex(self): member in class:ShLexer
175 self.tokens = ShLexer(data, win32Escapes = win32Escapes).lex()
177 def lex(self): member in class:ShParser
183 token = self.lex()
189 tok = self.lex()
206 args.append(self.lex())
215 op = self.lex()
216 arg = self.lex()
253 def lex(self, str, *args, **kwargs): member in class:TestShLexer
    [all...]
  /external/svox/pico/lib/
picowa.c 66 /* lex knowledge base */
67 picoklex_Lex lex; member in struct:wa_subobj
105 /* kb lex */
106 wa->lex = picoklex_getLex(this->voice->kbArray[PICOKNOW_KBID_LEX_MAIN]);
107 if (wa->lex == NULL) {
111 PICODBG_DEBUG(("got lex"));
290 if (!found && !picoklex_lexLookup(wa->lex, content, head->len, &lexres)) {
291 /* no lex entry found, WORDGRAPH(POS,NA)graph */
309 ensured for user lex too */
344 /* set lex pos in info1 *
    [all...]
  /system/core/libcutils/
config_utils.c 232 static int lex(cstate *cs, int value)
240 #define lex(cs,v) _lex(cs,v) macro
248 switch(lex(cs, 0)){
272 switch(lex(cs, 1)) {
274 if(lex(cs, 0) != T_TEXT)
300 switch(lex(&cs, 0)) {
  /external/owasp/sanitizer/src/main/org/owasp/html/
CssTokens.java 85 public static CssTokens lex(String css) { method in class:CssTokens
87 lexer.lex();
422 void lex() { method in class:CssTokens.Lexer
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
Strip.java 63 ANTLRv3Lexer lex = new ANTLRv3Lexer(input); local
64 tokens = new TokenRewriteStream(lex);
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XPathParser.cpp 420 int Parser::lex(void* data) function in class:Parser

Completed in 1012 milliseconds

1 2 3