Home | History | Annotate | Download | only in Chapter4

Lines Matching defs:it

25 // The lexer returns tokens [0-255] if it is an unknown character, otherwise one
189 // Make sure it's a declared binop.
293 // consume it, otherwise we are done.
485 EngineVector::iterator it;
486 for (it = begin; it != end; ++it)
487 delete *it;
493 ModuleVector::iterator it;
494 for (it = begin; it != end; ++it) {
495 Function *F = (*it)->getFunction(FnName);
497 if (*it == OpenModule)
537 EngineVector::iterator it;
538 for (it = begin; it != end; ++it) {
539 void *P = (*it)->getPointerToFunction(F);
544 // If we didn't find the function, see if we can generate it.
579 Module::iterator it;
581 for (it = OpenModule->begin(); it != end; ++it) {
583 FPM->run(*it);
601 it;
602 for (it = begin; it != end; ++it) {
603 uint64_t FAddr = (*it)->getFunctionAddress(Name);
614 ModuleVector::iterator it;
615 for (it = begin; it != end; ++it)
616 (*it)->dump();
697 // If F conflicted, there was already something named 'Name'. If it has a
790 // Cast it to the right type (takes no arguments, returns a double) so we
791 // can call it as a native function.