Searched defs:then (Results 1 - 13 of 13) sorted by relevance

/external/webkit/LayoutTests/fast/dom/Geolocation/script-tests/
H A Dtimestamp.js15 var then = null; variable
20 then = d.getTime();
22 shouldBeTrue('then != 0');
28 shouldBeTrue('t <= then + 1'); // Avoid rounding errors
/external/qemu/distrib/sdl-1.2.12/src/timer/riscos/
H A DSDL_systimer.c86 Uint32 now,then,elapsed; local
103 then = SDL_GetTicks();
116 elapsed = (now-then);
117 then = now;
/external/mesa3d/src/glsl/
H A Dlower_if_to_cond_assign.cpp97 ir_if *if_ir, ir_variable *cond_var, bool then)
101 if (then) {
115 if (then) {
96 move_block_to_cond_assign(void *mem_ctx, ir_if *if_ir, ir_variable *cond_var, bool then) argument
/external/icu4c/test/cintltst/
H A Dcdtdptst.c197 UChar *pattern=NULL, *now=NULL, *then=NULL; local
214 else then=myDateFormat(format, date2);
215 log_verbose("%s\n", austrdup(then) );
/external/icu4c/test/intltest/
H A Dastrotst.cpp152 UDate then = cal->getTime(status); local
153 CalendarAstronomer *myastro = new CalendarAstronomer(then);
H A Ddtfmttst.cpp550 UnicodeString now, then; local
563 if (date2 == 0) then = "Parse stopped at " + pos.getIndex();
564 else ((DateFormat*)formatter)->format(date2, then);
565 logln(then);
1592 * If expect parse failure, then [i+2] should be NULL.
1674 * then parse string [i+3] and expect date [i+2].
/external/bluetooth/bluez/audio/
H A Dliba2dp.c162 static void print_time(const char* message, uint64_t then, uint64_t now) argument
164 DBG("%s: %lld us", message, now - then);
1224 /* No space left for another frame then send */
/external/clang/lib/AST/
H A DStmt.cpp611 Stmt *then, SourceLocation EL, Stmt *elsev)
616 SubExprs[THEN] = then;
610 IfStmt(ASTContext &C, SourceLocation IL, VarDecl *var, Expr *cond, Stmt *then, SourceLocation EL, Stmt *elsev) argument
/external/llvm/examples/Kaleidoscope/Chapter5/
H A Dtoy.cpp58 if (IdentifierStr == "then") return tok_then;
142 /// IfExprAST - Expression class for if/then/else.
146 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else) argument
147 : Cond(cond), Then(then), Else(_else) {}
273 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
282 return Error("expected then");
283 getNextToken(); // eat the then
521 // Create blocks for the then and else cases. Insert the 'then' block at the
523 BasicBlock *ThenBB = BasicBlock::Create(getGlobalContext(), "then", TheFunctio
[all...]
/external/llvm/examples/Kaleidoscope/Chapter6/
H A Dtoy.cpp61 if (IdentifierStr == "then") return tok_then;
157 /// IfExprAST - Expression class for if/then/else.
161 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else) argument
162 : Cond(cond), Then(then), Else(_else) {}
301 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
310 return Error("expected then");
311 getNextToken(); // eat the then
625 // Create blocks for the then and else cases. Insert the 'then' block at the
627 BasicBlock *ThenBB = BasicBlock::Create(getGlobalContext(), "then", TheFunctio
[all...]
/external/libpng/contrib/gregbook/
H A Drpng2-x.c590 * that the file is a PNG image), then loop through the file and continue
645 struct timeval now, then; local
648 if (gettimeofday(&then, NULL) == 0) {
649 then.tv_sec += loop_interval;
676 if (now.tv_sec < then.tv_sec ||
677 (now.tv_sec == then.tv_sec && now.tv_usec < then.tv_usec))
680 long seconds_to_go = then.tv_sec - now.tv_sec;
706 if (now.tv_sec >= then.tv_sec)
708 seconds_to_go = then
[all...]
/external/llvm/examples/Kaleidoscope/Chapter7/
H A Dtoy.cpp64 if (IdentifierStr == "then") return tok_then;
162 /// IfExprAST - Expression class for if/then/else.
166 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else) argument
167 : Cond(cond), Then(then), Else(_else) {}
319 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
328 return Error("expected then");
329 getNextToken(); // eat the then
721 // Create blocks for the then and else cases. Insert the 'then' block at the
723 BasicBlock *ThenBB = BasicBlock::Create(getGlobalContext(), "then", TheFunctio
[all...]
/external/v8/src/
H A Dscanner-base.h409 inline Token::Value Select(uc32 next, Token::Value then, Token::Value else_) { argument
413 return then;

Completed in 413 milliseconds