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

1 2 3

  /external/clang/lib/Analysis/
CFGStmtMap.cpp 52 const CFGElement &CE = *I;
53 Optional<CFGStmt> CS = CE.getAs<CFGStmt>();
BodyFarm.cpp 209 CallExpr *CE = new (C) CallExpr(C, ICE, None, C.VoidTy, VK_RValue,
228 Stmts[1] = CE;
272 CallExpr *CE = new (C) CallExpr(C, ICE, None, C.VoidTy, VK_RValue,
274 return CE;
LiveVariables.cpp 276 CXXMemberCallExpr *CE = cast<CXXMemberCallExpr>(S);
277 if (Expr *ImplicitObj = CE->getImplicitObjectArgument()) {
284 ObjCMessageExpr *CE = cast<ObjCMessageExpr>(S);
285 if (CE->getReceiverKind() == ObjCMessageExpr::SuperInstance)
ReachableCode.cpp 551 const CXXFunctionalCastExpr *CE = cast <CXXFunctionalCastExpr>(S);
552 R1 = CE->getSubExpr()->getSourceRange();
553 return CE->getLocStart();
  /external/llvm/lib/Target/XCore/InstPrinter/
XCoreInstPrinter.cpp 54 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(BE->getRHS());
55 assert(SRE && CE && "Binary expression must be sym+const.");
56 Offset = CE->getValue();
  /external/icu/icu4c/source/i18n/
coptccal.h 115 CE // After the epoch
usrchimp.h 34 /* get weights from a CE */
41 #define isContinuation(CE) (((CE) & UCOL_CONTINUATION_MARKER) == UCOL_CONTINUATION_MARKER)
56 uint64_t ce; member in struct:PCEI
73 void put(uint64_t ce, int32_t ixLow, int32_t ixHigh);
98 * @param ixLow a pointer to an int32_t to receive the iterator index before fetching the CE.
99 * @param ixHigh a pointer to an int32_t to receive the iterator index after fetching the CE.
109 * @param ixLow A pointer to an int32_t to receive the iterator index after fetching the CE
110 * @param ixHigh A pointer to an int32_t to receiver the iterator index before fetching the CE
122 uint64_t processCE(uint32_t ce);
    [all...]
  /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/llvm/lib/Target/Mips/InstPrinter/
MipsInstPrinter.cpp 131 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(BE->getRHS());
132 assert(SRE && CE && "Binary expression must be sym+const.");
133 Offset = CE->getValue();
  /external/clang/lib/StaticAnalyzer/Core/
SValBuilder.cpp 272 const CastExpr *CE = cast<CastExpr>(E);
273 if (CE->getCastKind() == CK_ArrayToPointerDecay) {
274 Optional<SVal> ArrayVal = getConstantVal(CE->getSubExpr());
277 return evalCast(*ArrayVal, CE->getType(), CE->getSubExpr()->getType());
CallEvent.cpp 394 const CallExpr *CE = cast_or_null<CallExpr>(getOriginExpr());
395 if (!CE)
398 const FunctionDecl *D = CE->getDirectCallee();
402 return getSVal(CE->getCallee()).getAsFunctionDecl();
901 CallEventManager::getSimpleCall(const CallExpr *CE, ProgramStateRef State,
903 if (const CXXMemberCallExpr *MCE = dyn_cast<CXXMemberCallExpr>(CE))
906 if (const CXXOperatorCallExpr *OpCE = dyn_cast<CXXOperatorCallExpr>(CE)) {
912 } else if (CE->getCallee()->getType()->isBlockPointerType()) {
913 return create<BlockCall>(CE, State, LCtx);
918 return create<SimpleFunctionCall>(CE, State, LCtx)
    [all...]
CheckerManager.cpp 528 const CallExpr *CE = cast<CallExpr>(Call.getOriginExpr());
542 const ProgramPoint &L = ProgramPoint::getProgramPoint(CE, K,
549 evaluated = (*EI)(CE, C);
ExprEngineC.cpp 668 CFGElement CE = *I;
669 if (Optional<CFGStmt> CS = CE.getAs<CFGStmt>()) {
    [all...]
  /external/llvm/lib/Target/XCore/
XCoreLowerThreadLocal.cpp 78 createReplacementInstr(ConstantExpr *CE, Instruction *Instr) {
80 unsigned OpCode = CE->getOpcode();
83 SmallVector<Value *,4> CEOpVec(CE->op_begin(), CE->op_end());
105 CE->getOperand(0), CE->getOperand(1),
106 CE->getName()));
121 CE->getOperand(0), CE->getType(),
122 CE->getName()))
    [all...]
  /external/llvm/tools/llvm-mc/
llvm-mc.cpp 458 MCCodeEmitter *CE = nullptr;
461 CE = TheTarget->createMCCodeEmitter(*MCII, *MRI, *STI, Ctx);
465 /*useDwarfDirectory*/ true, IP, CE,
472 MCCodeEmitter *CE = TheTarget->createMCCodeEmitter(*MCII, *MRI, *STI, Ctx);
475 FOS, CE, *STI, 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 362 MCCodeEmitter *CE = nullptr;
365 CE = TheTarget->createMCCodeEmitter(*MCII, *MRI, *STI, Ctx);
370 IP, CE, MAB,
377 MCCodeEmitter *CE = TheTarget->createMCCodeEmitter(*MCII, *MRI, *STI, Ctx);
381 CE, *STI, Opts.RelaxAll,
  /external/llvm/lib/CodeGen/SelectionDAG/
FunctionLoweringInfo.cpp 447 const ConstantExpr *CE = cast<ConstantExpr>(I.getArgOperand(1));
448 assert(CE->getOpcode() == Instruction::BitCast &&
449 isa<Function>(CE->getOperand(0)) &&
451 MMI->addPersonality(MBB, cast<Function>(CE->getOperand(0)));
  /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 799 static CanThrowResult canSubExprsThrow(Sema &S, const Expr *CE) {
800 Expr *E = const_cast<Expr*>(CE);
    [all...]

Completed in 670 milliseconds

1 2 3