/external/llvm/lib/MC/MCParser/ |
COFFAsmParser.cpp | 273 SMLoc startLoc = getLexer().getLoc(); 278 return Error(startLoc, "offset is not a multiple of 16"); 290 SMLoc startLoc = getLexer().getLoc(); 295 return Error(startLoc, "size is not a multiple of 8"); 314 SMLoc startLoc = getLexer().getLoc(); 319 return Error(startLoc, "size is not a multiple of 8"); 341 SMLoc startLoc = getLexer().getLoc(); 349 return Error(startLoc, "offset is not a multiple of 16"); 361 SMLoc startLoc = getLexer().getLoc(); 365 return Error(startLoc, "expected @code") [all...] |
/external/clang/lib/Rewrite/ |
RewriteObjC.cpp | 304 SourceLocation StartLoc=SourceLocation(), 307 SourceLocation StartLoc=SourceLocation(), 773 SourceLocation startLoc = PID->getLocStart(); 774 InsertText(startLoc, "// "); 775 const char *startBuf = SM->getCharacterData(startLoc); 780 startLoc.getFileLocWithOffset(semiBuf-startBuf+1); [all...] |
/external/srec/tools/grxmlcompile/ |
sub_base.cpp | 122 void SubGraph::CopyFastArcs (SubGraph *subG, int startLoc, int endLoc, int offset, int headId, int newHeadId, int tailId, int newTailId) 126 for (int ii= startLoc; ii < endLoc; ii++) {
|
sub_grph.h | 153 void CopyFastArcs (SubGraph *subG, int startLoc, int endLoc, int offset, int headId, int newHeadId, int tailId, int newTailId); 223 void UpdateVertexCount (int startLoc);
|
sub_grph.cpp | 322 void SubGraph::UpdateVertexCount (int startLoc) 327 for (int ii= startLoc; ii < numArc; ii++) { 336 if (startLoc <= 0) // i.e. a fresh start
|
/external/llvm/lib/Target/X86/Disassembler/ |
X86DisassemblerDecoder.c | [all...] |
X86DisassemblerDecoder.h | 547 * @param startLoc - The address (in the reader's address space) of the first 557 uint64_t startLoc,
|
/external/clang/tools/c-index-test/ |
c-index-test.c | [all...] |
/external/clang/lib/AST/ |
ExprCXX.cpp | 55 SourceLocation startLoc, SourceLocation endLoc, 67 StartLoc(startLoc), EndLoc(endLoc), ConstructorLParen(constructorLParen), [all...] |
/external/clang/include/clang/AST/ |
Stmt.h | 352 SourceLocation StartLoc, EndLoc; 355 DeclStmt(DeclGroupRef dg, SourceLocation startLoc, 357 StartLoc(startLoc), EndLoc(endLoc) {} 375 SourceLocation getStartLoc() const { return StartLoc; } 376 void setStartLoc(SourceLocation L) { StartLoc = L; } 381 return SourceRange(StartLoc, EndLoc); [all...] |
ExprCXX.h | [all...] |