HomeSort by relevance Sort by last modified time
    Searched defs:CE (Results 1 - 25 of 73) sorted by null

1 2 3

  /external/clang/lib/Analysis/
CFGStmtMap.cpp 52 const CFGElement &CE = *I;
53 Optional<CFGStmt> CS = CE.getAs<CFGStmt>();
ReachableCode.cpp 228 const CXXFunctionalCastExpr *CE = cast <CXXFunctionalCastExpr>(S);
229 R1 = CE->getSubExpr()->getSourceRange();
230 return CE->getTypeBeginLoc();
BodyFarm.cpp 197 CallExpr *CE = new (C) CallExpr(C, ICE, None, C.VoidTy, VK_RValue,
216 Stmts[1] = CE;
260 CallExpr *CE = new (C) CallExpr(C, ICE, None, C.VoidTy, VK_RValue,
262 return CE;
LiveVariables.cpp 291 CXXMemberCallExpr *CE = cast<CXXMemberCallExpr>(S);
292 if (Expr *ImplicitObj = CE->getImplicitObjectArgument()) {
299 ObjCMessageExpr *CE = cast<ObjCMessageExpr>(S);
300 if (CE->getReceiverKind() == ObjCMessageExpr::SuperInstance)
  /external/llvm/lib/Target/XCore/InstPrinter/
XCoreInstPrinter.cpp 53 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(BE->getRHS());
54 assert(SRE && CE && "Binary expression must be sym+const.");
55 Offset = CE->getValue();
  /external/llvm/lib/Target/Mips/InstPrinter/
MipsInstPrinter.cpp 108 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(BE->getRHS());
109 assert(SRE && CE && "Binary expression must be sym+const.");
110 Offset = CE->getValue();
  /external/chromium_org/third_party/icu/source/i18n/
coptccal.h 115 CE // After the epoch
ucol_cnt.cpp 215 uint32_t CE;
217 /*CE = ucmpe32_get(table->mapping, i);*/
218 CE = utrie_get32(table->mapping, i, NULL);
219 if(isCntTableElement(CE)) {
220 CE = constructContractCE(getCETag(CE), table->offsets[getContractOffset(CE)]);
221 /*ucmpe32_set(table->mapping, i, CE);*/
222 utrie_set32(table->mapping, i, CE);
usrchimp.h 46 // length required for backwards ce comparison
48 int32_t *CE;
91 * we can safely do a compare without masking if the ce is a variable, we mask
94 * If the end character is composite and the pattern ce does not match the text
95 * ce, we skip it until we find a match in the end composite character or when
ucol_bld.cpp 127 int32_t ucol_inv_findCE(const UColTokenParser *src, uint32_t CE, uint32_t SecondCE) {
138 res = compareCEs(first, second, CE, SecondCE);
153 /* able to find the elements around any CE, even if it is */
157 if((first == CE && second == SecondCE)) {
172 uint32_t CE, uint32_t contCE,
179 iCE = ucol_inv_findCE(src, CE, contCE);
186 CE &= strengthMask[strength];
189 *nextCE = CE;
192 while((*nextCE & strengthMask[strength]) == CE
203 uint32_t CE, uint32_t contCE
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
AnalyzerStatsChecker.cpp 120 const CoreEngine &CE = Eng.getCoreEngine();
121 for (ExhaustedIterator I = CE.blocks_exhausted_begin(),
122 E = CE.blocks_exhausted_end(); I != E; ++I) {
125 const CFGElement &CE = Exit->front();
126 if (Optional<CFGStmt> CS = CE.getAs<CFGStmt>()) {
MacOSKeychainAPIChecker.cpp 279 void MacOSKeychainAPIChecker::checkPreStmt(const CallExpr *CE,
284 const FunctionDecl *FD = C.getCalleeDecl(CE);
295 const Expr *ArgExpr = CE->getArg(FunctionsToTrack[idx].Param);
329 const Expr *ArgExpr = CE->getArg(FunctionsToTrack[idx].Param);
378 const Expr *DeallocatorExpr = CE->getArg(5)->IgnoreParenCasts();
443 void MacOSKeychainAPIChecker::checkPostStmt(const CallExpr *CE,
446 const FunctionDecl *FD = C.getCalleeDecl(CE);
457 const Expr *ArgExpr = CE->getArg(FunctionsToTrack[idx].Param);
478 State->getSVal(CE, C.getLocationContext()).getAsSymbol();
606 const CallExpr *CE
    [all...]
  /external/icu4c/i18n/
coptccal.h 115 CE // After the epoch
ucol_cnt.cpp 215 uint32_t CE;
217 /*CE = ucmpe32_get(table->mapping, i);*/
218 CE = utrie_get32(table->mapping, i, NULL);
219 if(isCntTableElement(CE)) {
220 CE = constructContractCE(getCETag(CE), table->offsets[getContractOffset(CE)]);
221 /*ucmpe32_set(table->mapping, i, CE);*/
222 utrie_set32(table->mapping, i, CE);
usrchimp.h 46 // length required for backwards ce comparison
48 int32_t *CE;
91 * we can safely do a compare without masking if the ce is a variable, we mask
94 * If the end character is composite and the pattern ce does not match the text
95 * ce, we skip it until we find a match in the end composite character or when
  /external/llvm/lib/IR/
Globals.cpp 239 const ConstantExpr *CE = cast<ConstantExpr>(C);
240 assert((CE->getOpcode() == Instruction::BitCast ||
241 CE->getOpcode() == Instruction::GetElementPtr) &&
244 return cast<GlobalValue>(CE->getOperand(0));
  /external/clang/lib/StaticAnalyzer/Core/
SValBuilder.cpp 270 const CastExpr *CE = cast<CastExpr>(E);
271 if (CE->getCastKind() == CK_ArrayToPointerDecay) {
272 Optional<SVal> ArrayVal = getConstantVal(CE->getSubExpr());
275 return evalCast(*ArrayVal, CE->getType(), CE->getSubExpr()->getType());
ExprEngineC.cpp 658 CFGElement CE = *I;
659 if (Optional<CFGStmt> CS = CE.getAs<CFGStmt>()) {
    [all...]
  /external/llvm/tools/llvm-mc/
llvm-mc.cpp 431 MCCodeEmitter *CE = 0;
434 CE = TheTarget->createMCCodeEmitter(*MCII, *MRI, *STI, Ctx);
442 IP, CE, MAB, ShowInst));
448 MCCodeEmitter *CE = TheTarget->createMCCodeEmitter(*MCII, *MRI, *STI, Ctx);
451 FOS, CE, RelaxAll,
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
AMDILISelDAGToDAG.cpp 204 const ConstantExpr *CE = dyn_cast<ConstantExpr>(V);
205 if (CE) {
206 ValueQueue.push(CE->getOperand(0));
  /external/clang/tools/driver/
cc1as_main.cpp 341 MCCodeEmitter *CE = 0;
344 CE = TheTarget->createMCCodeEmitter(*MCII, *MRI, *STI, Ctx);
351 IP, CE, MAB,
358 MCCodeEmitter *CE = TheTarget->createMCCodeEmitter(*MCII, *MRI, *STI, Ctx);
361 CE, Opts.RelaxAll,
  /external/llvm/lib/CodeGen/SelectionDAG/
FunctionLoweringInfo.cpp 411 const ConstantExpr *CE = cast<ConstantExpr>(I.getArgOperand(1));
412 assert(CE->getOpcode() == Instruction::BitCast &&
413 isa<Function>(CE->getOperand(0)) &&
415 MMI->addPersonality(MBB, cast<Function>(CE->getOperand(0)));
  /external/llvm/lib/Target/Mips/MCTargetDesc/
MipsBaseInfo.h 138 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(BE->getRHS());
140 if ((LHS->getKind() != MCExpr::SymbolRef) || !CE)
143 return std::make_pair(cast<MCSymbolRefExpr>(LHS), CE->getValue());
  /external/mesa3d/src/gallium/drivers/radeon/
AMDILISelDAGToDAG.cpp 204 const ConstantExpr *CE = dyn_cast<ConstantExpr>(V);
205 if (CE) {
206 ValueQueue.push(CE->getOperand(0));
  /external/clang/lib/Sema/
SemaExceptionSpec.cpp 785 static CanThrowResult canSubExprsThrow(Sema &S, const Expr *CE) {
786 Expr *E = const_cast<Expr*>(CE);
    [all...]

Completed in 521 milliseconds

1 2 3