HomeSort by relevance Sort by last modified time
    Searched refs:WHILE (Results 1 - 25 of 45) sorted by null

1 2

  /external/javassist/src/main/javassist/compiler/
TokenId.java 65 int WHILE = 346;
Parser.java 112 while (true) {
129 while (true) {
168 while (true) {
223 * | while.statement
255 else if (t == WHILE)
287 while (lex.lookAhead() != '}') {
318 /* while.statement : WHILE "(" expression ")" statement
323 int t = lex.get(); // WHILE
329 /* do.statement : DO statement WHILE "(" expression ")" ";
    [all...]
  /external/chromium_org/third_party/angle/src/compiler/translator/
glslang_tab.h 110 WHILE = 311,
glslang.l 101 "while" { return WHILE; }
glslang.y 106 } while (0)
144 %token <lex> STRUCT VOID_TYPE WHILE
    [all...]
  /ndk/sources/host-tools/nawk-20071023/
maketab.c 91 { WHILE, "whilestat", "while(" },
144 while (fgets(buf, sizeof buf, fp) != NULL) {
awkgram.y 36 int inloop = 0; /* = 1 if in while, for, do */
70 %type <p> for if else while
85 %left REGEXPR VAR VARNF IVAR WHILE '('
321 | do {inloop++;} stmt {--inloop;} WHILE '(' pattern ')' st
338 | while {inloop++;} stmt { --inloop; $$ = stat2(WHILE, $1, $3); }
441 while: label
442 WHILE '(' pattern rparen { $$ = notnull($3); }
lex.c 89 { "while", WHILE, WHILE },
207 while ((c = input()) != '\n' && c != 0)
443 while (low <= high) {
  /external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/
glsl_parser.h 120 WHILE = 338,
321 #define WHILE 338
glsl_parser.cc 229 WHILE = 338,
430 #define WHILE 338
736 # define YYSTACK_FREE(Ptr) do { /* empty */; } while (YYID (0))
814 while (YYID (0))
833 while (YYID (0))
    [all...]
  /external/deqp/framework/randomshaders/
rsgToken.hpp 46 WHILE,
  /external/eigen/lapack/
ilaclr.f 114 DO WHILE((A(MAX(I,1),J).EQ.ZERO).AND.(I.GE.1))
iladlr.f 114 DO WHILE((A(MAX(I,1),J).EQ.ZERO).AND.(I.GE.1))
ilaslr.f 114 DO WHILE((A(MAX(I,1),J).EQ.ZERO).AND.(I.GE.1))
ilazlr.f 114 DO WHILE((A(MAX(I,1),J).EQ.ZERO).AND.(I.GE.1))
clarf.f 183 DO WHILE( LASTV.GT.0 .AND. V( I ).EQ.ZERO )
dlarf.f 178 DO WHILE( LASTV.GT.0 .AND. V( I ).EQ.ZERO )
slarf.f 178 DO WHILE( LASTV.GT.0 .AND. V( I ).EQ.ZERO )
zlarf.f 183 DO WHILE( LASTV.GT.0 .AND. V( I ).EQ.ZERO )
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
Antlr.Runtime.Tests.pas 19 + 'prog : WHILE ID LCURLY (assign)* RCURLY EOF;' + NL
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/script_formatter_worker/
JavaScriptFormatter.js 113 while (this._peek() !== endToken) {
147 case FormatterWorker.JavaScriptTokens.WHILE:
187 while (this._peek() !== FormatterWorker.JavaScriptTokens.RBRACE) {
223 } while (this._peek() === FormatterWorker.JavaScriptTokens.COMMA);
316 while (this._peek() !== FormatterWorker.JavaScriptTokens.CASE && this._peek() !== FormatterWorker.JavaScriptTokens.DEFAULT && this._peek() !== FormatterWorker.JavaScriptTokens.RBRACE) {
335 while (this._peek() !== FormatterWorker.JavaScriptTokens.RBRACE)
383 this._expect(FormatterWorker.JavaScriptTokens.WHILE);
393 this._expect(FormatterWorker.JavaScriptTokens.WHILE);
437 while (this._peek() === FormatterWorker.JavaScriptTokens.COMMA) {
475 while (FormatterWorker.JavaScriptTokens.OR <= token && token <= FormatterWorker.JavaScriptTokens.IN)
    [all...]
  /external/chromium_org/v8/src/
token.h 134 K(WHILE, "while", 0) \
preparser.cc 185 while (peek() != end_token) {
255 case Token::WHILE:
338 while (peek() != Token::RBRACE) {
459 } while (peek() == Token::COMMA);
605 while (token != Token::RBRACE) {
614 while (token != Token::CASE &&
628 // 'do' Statement 'while' '(' Expression ')' ';'
632 Expect(Token::WHILE, CHECK_OK);
643 // 'while' '(' Expression ')' Statement
645 Expect(Token::WHILE, CHECK_OK)
    [all...]
  /external/mksh/src/
syn.c 80 #define musthave(c,cf) do { if (token(cf) != (c)) syntaxerr(NULL); } while (/* CONSTCOND */ 0)
107 while (token(0) == '|') {
128 while ((c = token(0)) == LOGAND || c == LOGOR) {
145 while (/* CONSTCOND */ 1) {
289 while (/* CONSTCOND */ 1) {
294 while ((iop = synio(cf)) != NULL) {
337 while (token(CONTIN) == LWORD)
435 case WHILE:
438 t = newtp((c == WHILE) ? TWHILE : TUNTIL);
488 while ((iop = synio(syniocf)) != NULL)
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/api/
armCOMM_s.h 415 WHILE (_cst:AND:3)=0
903 WHILE _stnum>0

Completed in 555 milliseconds

1 2