Searched defs:BE (Results 1 - 25 of 29) sorted by relevance

12

/external/icu/icu4c/source/i18n/
H A Dbuddhcal.h39 * BE (Buddhist Era) and 1998 AD is 2541 BE.
41 * The Buddhist Calendar has only one allowable era: <code>BE</code>. If the
43 * 1/1/1 BE are rejected as an illegal argument.
55 BE enumerator in enum:BuddhistCalendar::EEras
/external/clang/lib/StaticAnalyzer/Checkers/
H A DUndefCapturedBlockVarChecker.cpp33 void checkPostStmt(const BlockExpr *BE, CheckerContext &C) const;
55 UndefCapturedBlockVarChecker::checkPostStmt(const BlockExpr *BE, argument
57 if (!BE->getBlockDecl()->hasCaptures())
62 cast<BlockDataRegion>(state->getSVal(BE,
93 if (const Expr *Ex = FindBlockDeclRefExpr(BE->getBody(), VD))
H A DAnalyzerStatsChecker.cpp63 if (Optional<BlockEntrance> BE = P.getAs<BlockEntrance>()) {
64 const CFGBlock *CB = BE->getBlock();
123 const BlockEdge &BE = I->first; local
124 const CFGBlock *Exit = BE.getDst();
H A DMallocChecker.cpp204 void checkPostStmt(const BlockExpr *BE, CheckerContext &C) const;
2237 void MallocChecker::checkPostStmt(const BlockExpr *BE, argument
2242 if (!BE->getBlockDecl()->hasCaptures())
2247 cast<BlockDataRegion>(state->getSVal(BE,
H A DRetainCountChecker.cpp2588 void checkPostStmt(const BlockExpr *BE, CheckerContext &C) const;
2593 void checkPostStmt(const ObjCBoxedExpr *BE, CheckerContext &C) const;
2676 void RetainCountChecker::checkPostStmt(const BlockExpr *BE, argument
2681 if (!BE->getBlockDecl()->hasCaptures())
2686 cast<BlockDataRegion>(state->getSVal(BE,
2718 const ObjCBridgedCastExpr *BE = dyn_cast<ObjCBridgedCastExpr>(CE); local
2719 if (!BE)
2724 switch (BE->getBridgeKind()) {
/external/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsMCExpr.cpp21 const MCBinaryExpr *BE) {
34 if (isa<MCBinaryExpr>(BE->getLHS())) {
35 if (!isa<MCConstantExpr>(BE->getRHS()))
37 BE = cast<MCBinaryExpr>(BE->getLHS());
39 return (isa<MCSymbolRefExpr>(BE->getLHS())
40 && isa<MCSymbolRefExpr>(BE->getRHS()));
20 isSupportedBinaryExpr(MCSymbolRefExpr::VariantKind VK, const MCBinaryExpr *BE) argument
/external/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64MCExpr.cpp114 const MCBinaryExpr *BE = cast<MCBinaryExpr>(Expr); local
115 fixELFSymbolsInTLSFixupsImpl(BE->getLHS(), Asm);
116 fixELFSymbolsInTLSFixupsImpl(BE->getRHS(), Asm);
/external/clang/lib/AST/
H A DParentMap.cpp177 BinaryOperator *BE = cast<BinaryOperator>(P); local
180 return BE->getOpcode()!=BO_Comma ||DirectChild==BE->getRHS();
/external/clang/unittests/Tooling/
H A DRecursiveASTVisitorTestExprVisitor.cpp58 bool VisitCXXBoolLiteralExpr(CXXBoolLiteralExpr *BE) { argument
59 if (BE->getValue())
60 Match("true", BE->getLocation());
62 Match("false", BE->getLocation());
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DBuddhistCalendar.java22 * BE (Buddhist Era) and 1998 AD is 2541 BE.
24 * The Buddhist Calendar has only one allowable era: <code>BE</code>. If the
26 * 1/1/1 BE are rejected with an <code>IllegalArgumentException</code>.
56 public static final int BE = 0; field in class:BuddhistCalendar
233 return BE;
/external/llvm/lib/Target/Sparc/MCTargetDesc/
H A DSparcMCExpr.cpp179 const MCBinaryExpr *BE = cast<MCBinaryExpr>(Expr); local
180 fixELFSymbolsInTLSFixupsImpl(BE->getLHS(), Asm);
181 fixELFSymbolsInTLSFixupsImpl(BE->getRHS(), Asm);
/external/llvm/include/llvm/Analysis/
H A DLoopInfoImpl.h37 for (block_iterator BI = block_begin(), BE = block_end(); BI != BE; ++BI)
66 for (block_iterator BI = block_begin(), BE = block_end(); BI != BE; ++BI)
91 for (block_iterator BI = block_begin(), BE = block_end(); BI != BE; ++BI)
235 BE = df_ext_end(getHeader(), VisitSet); local
241 for ( ; BI != BE; ++BI) {
291 for (block_iterator BI = (*I)->block_begin(), BE = (*I)->block_end();
292 BI != BE;
[all...]
/external/jpeg/
H A Djcphuff.c45 unsigned int BE; /* # of buffered correction bits before MCU */ member in struct:__anon6476
180 entropy->BE = 0;
336 emit_buffered_bits(entropy, entropy->bit_buffer, entropy->BE);
337 entropy->BE = 0;
366 entropy->BE = 0;
664 BR_buffer = entropy->bit_buffer + entropy->BE; /* Append bits to buffer */
674 /* emit any pending EOBRUN and the BE correction bits */
681 BR_buffer = entropy->bit_buffer; /* BE bits are gone now */
696 /* Emit any pending EOBRUN and the BE correction bits */
708 BR_buffer = entropy->bit_buffer; /* BE bit
[all...]
/external/llvm/lib/IR/
H A DValue.cpp120 BasicBlock::const_iterator BI = BB->begin(), BE = BB->end(); local
122 for (; BI != BE && UI != UE; ++BI, ++UI) {
/external/llvm/lib/MC/
H A DMCExpr.cpp71 const MCBinaryExpr &BE = cast<MCBinaryExpr>(*this); local
74 if (isa<MCConstantExpr>(BE.getLHS()) || isa<MCSymbolRefExpr>(BE.getLHS())) {
75 OS << *BE.getLHS();
77 OS << '(' << *BE.getLHS() << ')';
80 switch (BE.getOpcode()) {
83 if (const MCConstantExpr *RHSC = dyn_cast<MCConstantExpr>(BE.getRHS())) {
112 if (isa<MCConstantExpr>(BE.getRHS()) || isa<MCSymbolRefExpr>(BE.getRHS())) {
113 OS << *BE
768 const MCBinaryExpr *BE = cast<MCBinaryExpr>(this); local
[all...]
H A DMCStreamer.cpp607 const MCBinaryExpr &BE = cast<MCBinaryExpr>(Expr); local
608 visitUsedExpr(*BE.getLHS());
609 visitUsedExpr(*BE.getRHS());
/external/llvm/lib/Transforms/Instrumentation/
H A DSanitizerCoverage.cpp350 BasicBlock::iterator IP = BB.getFirstInsertionPt(), BE = BB.end(); local
354 for (; IP != BE; ++IP) {
/external/pdfium/core/src/fxcodec/libjpeg/
H A Dfpdfapi_jcphuff.c46 unsigned int BE; /* # of buffered correction bits before MCU */ member in struct:__anon13296
181 entropy->BE = 0;
337 emit_buffered_bits(entropy, entropy->bit_buffer, entropy->BE);
338 entropy->BE = 0;
367 entropy->BE = 0;
665 BR_buffer = entropy->bit_buffer + entropy->BE; /* Append bits to buffer */
675 /* emit any pending EOBRUN and the BE correction bits */
682 BR_buffer = entropy->bit_buffer; /* BE bits are gone now */
697 /* Emit any pending EOBRUN and the BE correction bits */
709 BR_buffer = entropy->bit_buffer; /* BE bit
[all...]
/external/clang/lib/Analysis/
H A DLiveVariables.cpp207 void VisitBlockExpr(BlockExpr *BE);
358 void TransferFunctions::VisitBlockExpr(BlockExpr *BE) { argument
360 LV.analysisContext.getReferencedBlockVars(BE->getBlockDecl())) {
H A DThreadSafetyCommon.cpp344 til::SExpr *BE = translate(ME->getBase(), Ctx); local
345 til::SExpr *E = new (Arena) til::SApply(BE);
352 if (hasCppPointerType(BE))
/external/clang/lib/CodeGen/
H A DCodeGenPGO.cpp159 bool TraverseBlockExpr(BlockExpr *BE) { return true; } argument
/external/clang/lib/StaticAnalyzer/Core/
H A DExprEngineC.cpp187 void ExprEngine::VisitBlockExpr(const BlockExpr *BE, ExplodedNode *Pred, argument
190 CanQualType T = getContext().getCanonicalType(BE->getType());
193 SVal V = svalBuilder.getBlockPointer(BE->getBlockDecl(), T,
219 Bldr.generateNode(BE, Pred,
220 State->BindExpr(BE, Pred->getLocationContext(), V),
224 getCheckerManager().runCheckersForPostStmt(Dst, Tmp, BE, *this);
534 BlockEdge BE = N->getLocation().castAs<BlockEdge>(); local
540 const CFGBlock *SrcBlock = BE.getSrc();
548 unsigned constant = (*SrcBlock->succ_begin() == BE.getDst()) ? 1 : 0;
/external/llvm/lib/Target/Sparc/AsmParser/
H A DSparcAsmParser.cpp851 const MCBinaryExpr *BE = cast<MCBinaryExpr>(Expr); local
852 return hasGOTReference(BE->getLHS()) || hasGOTReference(BE->getRHS());
/external/clang/lib/Sema/
H A DAnalysisBasedWarnings.cpp868 const BlockExpr *BE = cast<BlockExpr>(Use.getUser()); local
870 S.Diag(BE->getLocStart(),
/external/llvm/lib/Target/PowerPC/AsmParser/
H A DPPCAsmParser.cpp200 const MCBinaryExpr *BE = cast<MCBinaryExpr>(E); local
201 int64_t LHSVal = EvaluateCRExpr(BE->getLHS());
202 int64_t RHSVal = EvaluateCRExpr(BE->getRHS());
208 switch (BE->getOpcode()) {
1277 const MCBinaryExpr *BE = cast<MCBinaryExpr>(E); local
1279 const MCExpr *LHS = ExtractModifierFromExpr(BE->getLHS(), LHSVariant);
1280 const MCExpr *RHS = ExtractModifierFromExpr(BE->getRHS(), RHSVariant);
1285 if (!LHS) LHS = BE->getLHS();
1286 if (!RHS) RHS = BE->getRHS();
1297 return MCBinaryExpr::Create(BE
1343 const MCBinaryExpr *BE = cast<MCBinaryExpr>(E); local
[all...]

Completed in 568 milliseconds

12