Home
last modified time | relevance | path

Searched refs:LP (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/core/java/android/os/
DPatternMatcher.java273 final int LP = pattern.length();
283 while (ip < LP) {
360 if (ip + 1 >= LP) {
376 if (ip + 2 < LP
443 final int LP = parsedPattern.length, LM = match.length();
452 while (ip < LP) { // we still have content in the pattern
468 while (++ip < LP && parsedPattern[ip] != PARSED_TOKEN_CHAR_SET_STOP);
483 if (ip >= LP) {
524 return ip >= LP && im >= LM; // have parsed entire string and regex
/frameworks/compile/slang/BitWriter_2_9_func/
DBitcodeWriter.cpp1240 const LandingPadInst &LP = cast<LandingPadInst>(I); in WriteInstruction() local
1242 Vals.push_back(VE.getTypeID(LP.getType())); in WriteInstruction()
1245 Vals.push_back(LP.isCleanup()); in WriteInstruction()
1246 Vals.push_back(LP.getNumClauses()); in WriteInstruction()
1247 for (unsigned I = 0, E = LP.getNumClauses(); I != E; ++I) { in WriteInstruction()
1248 if (LP.isCatch(I)) in WriteInstruction()
1252 PushValueAndType(LP.getClause(I), InstID, Vals, VE); in WriteInstruction()
/frameworks/compile/slang/BitWriter_3_2/
DBitcodeWriter.cpp1273 const LandingPadInst &LP = cast<LandingPadInst>(I); in WriteInstruction() local
1275 Vals.push_back(VE.getTypeID(LP.getType())); in WriteInstruction()
1278 Vals.push_back(LP.isCleanup()); in WriteInstruction()
1279 Vals.push_back(LP.getNumClauses()); in WriteInstruction()
1280 for (unsigned I = 0, E = LP.getNumClauses(); I != E; ++I) { in WriteInstruction()
1281 if (LP.isCatch(I)) in WriteInstruction()
1285 PushValueAndType(LP.getClause(I), InstID, Vals, VE); in WriteInstruction()
/frameworks/compile/libbcc/bcinfo/BitReader_3_0/
DBitcodeReader.cpp3311 LandingPadInst *LP = LandingPadInst::Create(ExnTy, 1); in ParseFunctionBody() local
3312 LP->setCleanup(true); in ParseFunctionBody()
3314 CurBB->getInstList().push_back(LP); in ParseFunctionBody()
3315 I = ResumeInst::Create(LP); in ParseFunctionBody()
3358 LandingPadInst *LP = LandingPadInst::Create(Ty, NumClauses); in ParseFunctionBody() local
3359 LP->setCleanup(IsCleanup); in ParseFunctionBody()
3366 delete LP; in ParseFunctionBody()
3376 LP->addClause(cast<Constant>(Val)); in ParseFunctionBody()
3379 I = LP; in ParseFunctionBody()
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/
DBitcodeReader.cpp3054 LandingPadInst *LP = LandingPadInst::Create(ExnTy, 1); in ParseFunctionBody() local
3055 LP->setCleanup(true); in ParseFunctionBody()
3057 CurBB->getInstList().push_back(LP); in ParseFunctionBody()
3058 I = ResumeInst::Create(LP); in ParseFunctionBody()