/external/tagsoup/src/org/ccil/cowan/tagsoup/ |
HTMLScanner.java | 289 * Java doesn't support negative array indexes. Then look up 290 * the value in the statetableIndex. If the value is -1, then 292 * you had. If it isn't -1, then action = statetable[value + 2] and 429 // System.err.println("In " + debug_statenames[theState] + " got " + nicechar(ch) + " doing " + debug_actionnames[action] + " then " + debug_statenames[theNextState]);
|
/external/v8/test/mjsunit/ |
allocation-site-info.js | 325 // Array function, it went from (uninit->Array) then (Array->megamorphic). 327 // It'll go (uninit->realmBArray) then (realmBArray->megamorphic). Recognize
|
array-constructor-feedback.js | 197 // Test: create array with packed feedback, then optimize function, which
|
d8-os.js | 30 // implemented on Windows, and even if it were then many of the things
|
double-equals.js | 166 testEqual(new Boolean(true), 1); // First to primtive boolean, then to number.
|
getters-on-elements.js | 184 // which sets ALLOW_RETURN_HOLE, then add a setter on the prototype that should
|
regexp-capture-3.js | 145 // Here's one that matches once, then tries to match again, but fails.
|
/build/core/ |
pdk_config.mk | 13 # PDK_FUSION_PLATFORM_ZIP is needed anyway, then do we need the 'fusion' goal?
|
/build/tools/droiddoc/templates-pdk/assets/ |
search_autocomplete.js | 197 // and then number of path separators (dots) from the last
|
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/ |
DFA.as | 6 * are generated with if-then-else structures in a specialStateTransition()
|
/external/clang/www/analyzer/scripts/ |
expandcollapse.js | 174 // Cell height is less then or equal to row height - expand a cell.
|
/external/doclava/res/assets/templates/assets/ |
search_autocomplete.js | 197 // and then number of path separators (dots) from the last
|
/external/eigen/blas/fortran/ |
chpmv.f | 75 * supplied as zero then Y need not be set on input. 126 IF (.NOT.LSAME(UPLO,'U') .AND. .NOT.LSAME(UPLO,'L')) THEN 128 ELSE IF (N.LT.0) THEN 130 ELSE IF (INCX.EQ.0) THEN 132 ELSE IF (INCY.EQ.0) THEN 135 IF (INFO.NE.0) THEN 146 IF (INCX.GT.0) THEN 151 IF (INCY.GT.0) THEN 162 IF (BETA.NE.ONE) THEN 163 IF (INCY.EQ.1) THEN [all...] |
dspmv.f | 73 * supplied as zero then Y need not be set on input. 119 IF (.NOT.LSAME(UPLO,'U') .AND. .NOT.LSAME(UPLO,'L')) THEN 121 ELSE IF (N.LT.0) THEN 123 ELSE IF (INCX.EQ.0) THEN 125 ELSE IF (INCY.EQ.0) THEN 128 IF (INFO.NE.0) THEN 139 IF (INCX.GT.0) THEN 144 IF (INCY.GT.0) THEN 155 IF (BETA.NE.ONE) THEN 156 IF (INCY.EQ.1) THEN [all...] |
sspmv.f | 73 * supplied as zero then Y need not be set on input. 119 IF (.NOT.LSAME(UPLO,'U') .AND. .NOT.LSAME(UPLO,'L')) THEN 121 ELSE IF (N.LT.0) THEN 123 ELSE IF (INCX.EQ.0) THEN 125 ELSE IF (INCY.EQ.0) THEN 128 IF (INFO.NE.0) THEN 139 IF (INCX.GT.0) THEN 144 IF (INCY.GT.0) THEN 155 IF (BETA.NE.ONE) THEN 156 IF (INCY.EQ.1) THEN [all...] |
zhpmv.f | 75 * supplied as zero then Y need not be set on input. 126 IF (.NOT.LSAME(UPLO,'U') .AND. .NOT.LSAME(UPLO,'L')) THEN 128 ELSE IF (N.LT.0) THEN 130 ELSE IF (INCX.EQ.0) THEN 132 ELSE IF (INCY.EQ.0) THEN 135 IF (INFO.NE.0) THEN 146 IF (INCX.GT.0) THEN 151 IF (INCY.GT.0) THEN 162 IF (BETA.NE.ONE) THEN 163 IF (INCY.EQ.1) THEN [all...] |
/external/libvpx/libvpx/vp8/common/ppc/ |
variance_altivec.asm | 53 ;# subract. Do high, then low.
|
/external/llvm/examples/Kaleidoscope/Chapter7/ |
toy.cpp | 76 if (IdentifierStr == "then") 187 /// IfExprAST - Expression class for if/then/else. 189 ExprAST *Cond, *Then, *Else; 192 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else) 193 : Cond(cond), Then(then), Else(_else) {} 359 /// ifexpr ::= 'if' expression 'then' expression 'else' expression 369 return Error("expected then"); 370 getNextToken(); // eat the then 372 ExprAST *Then = ParseExpression() [all...] |
/external/llvm/examples/Kaleidoscope/Chapter8/ |
toy.cpp | 73 return "then"; 146 if (IdentifierStr == "then") 295 /// IfExprAST - Expression class for if/then/else. 297 ExprAST *Cond, *Then, *Else; 300 IfExprAST(SourceLocation Loc, ExprAST *cond, ExprAST *then, ExprAST *_else) 301 : ExprAST(Loc), Cond(cond), Then(then), Else(_else) {} 305 Then->dump(indent(out, ind) << "Then:", ind + 1); 503 /// ifexpr ::= 'if' expression 'then' expression 'else' expressio [all...] |
/external/llvm/examples/Kaleidoscope/MCJIT/cached/ |
toy-jit.cpp | 82 if (IdentifierStr == "then") return tok_then; 180 /// IfExprAST - Expression class for if/then/else. 182 ExprAST *Cond, *Then, *Else; 184 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else) 185 : Cond(cond), Then(then), Else(_else) {} 337 /// ifexpr ::= 'if' expression 'then' expression 'else' expression 346 return Error("expected then"); 347 getNextToken(); // eat the then 349 ExprAST *Then = ParseExpression() [all...] |
/external/llvm/examples/Kaleidoscope/MCJIT/initial/ |
toy.cpp | 66 if (IdentifierStr == "then") return tok_then; 164 /// IfExprAST - Expression class for if/then/else. 166 ExprAST *Cond, *Then, *Else; 168 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else) 169 : Cond(cond), Then(then), Else(_else) {} 321 /// ifexpr ::= 'if' expression 'then' expression 'else' expression 330 return Error("expected then"); 331 getNextToken(); // eat the then 333 ExprAST *Then = ParseExpression() [all...] |
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/ |
toy-jit.cpp | 67 if (IdentifierStr == "then") return tok_then; 165 /// IfExprAST - Expression class for if/then/else. 167 ExprAST *Cond, *Then, *Else; 169 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else) 170 : Cond(cond), Then(then), Else(_else) {} 322 /// ifexpr ::= 'if' expression 'then' expression 'else' expression 331 return Error("expected then"); 332 getNextToken(); // eat the then 334 ExprAST *Then = ParseExpression() [all...] |
toy.cpp | 68 if (IdentifierStr == "then") return tok_then; 166 /// IfExprAST - Expression class for if/then/else. 168 ExprAST *Cond, *Then, *Else; 170 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else) 171 : Cond(cond), Then(then), Else(_else) {} 323 /// ifexpr ::= 'if' expression 'then' expression 'else' expression 332 return Error("expected then"); 333 getNextToken(); // eat the then 335 ExprAST *Then = ParseExpression() [all...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/ppc/ |
variance_altivec.asm | 53 ;# subract. Do high, then low.
|
/ndk/build/core/ |
build-local.mk | 221 # If a goal is DUMP_xxx then we dump a variable xxx instead
|