search for: colstart

Displaying 2 results from an estimated 2 matches for "colstart".

Did you mean: coldstart
2013 Dec 02
0
[LLVMdev] A problem about the location of ForStmt,
I get the location with : SourceManager &SM = context.getSourceManager(); int lineStart = SM.getPresumedLoc(SR->getBegin()).getLine(); int lineEnd = SM.getPresumedLoc(SR->getEnd()).getLine(); int colStart = SM.getPresumedLoc(SR->getBegin()).getColumn(); int colEnd = SM.getPresumedLoc(SR->getEnd()).getColumn(); llvm::outs() << "For:" << lineStart << " " << colStart << " " << lineEnd << " " << colE...
2007 Jun 12
4
pretty report
Dear Listers: I have a couple of data frames to report and each corresponds to different condtions, e.g. conditions=c(10, 15, 20, 25). In this examples, four data frames need to be exported in a "pretty" report. I knew Perl has some module for exporting data to Excel and after googling, I found R does not. So I am wondering if there is a package in R for generating good reports. I