HomeSort by relevance Sort by last modified time
    Searched refs:DV (Results 1 - 25 of 47) sorted by null

1 2

  /external/clang/lib/StaticAnalyzer/Checkers/
DivZeroChecker.cpp 61 Optional<DefinedSVal> DV = Denom.getAs<DefinedSVal>();
65 if (!DV)
71 std::tie(stateNotZero, stateZero) = CM.assumeDual(C.getState(), *DV);
79 bool TaintedD = C.getState()->isTainted(*DV);
NonNullParamChecker.cpp 83 Optional<DefinedSVal> DV = V.getAs<DefinedSVal>();
84 if (!DV)
88 assert(!haveRefTypeParam || DV->getAs<Loc>());
90 if (haveAttrNonNull && !DV->getAs<Loc>()) {
102 DV->getAs<nonloc::CompoundVal>()) {
106 DV = V.getAs<DefinedSVal>();
126 std::tie(stateNotNull, stateNull) = CM.assumeDual(state, *DV);
BoolAssignmentChecker.cpp 72 Optional<DefinedSVal> DV = val.getAs<DefinedSVal>();
73 if (!DV)
86 svalBuilder.evalBinOp(state, BO_GE, *DV, zeroVal,
122 svalBuilder.evalBinOp(state, BO_LE, *DV, OneVal,
StreamChecker.cpp 344 Optional<DefinedSVal> DV = SV.getAs<DefinedSVal>();
345 if (!DV)
350 std::tie(stateNotNull, stateNull) = CM.assumeDual(state, *DV);
BasicObjCFoundationChecks.cpp     [all...]
  /external/llvm/lib/CodeGen/
ExecutionDepsFix.cpp 176 DomainValue *retain(DomainValue *DV) {
177 if (DV) ++DV->Refs;
178 return DV;
184 void setLiveReg(int rx, DomainValue *DV);
187 void collapse(DomainValue *dv, unsigned domain);
211 DomainValue *dv = Avail.empty() ?
215 dv->addDomain(domain);
216 assert(dv->Refs == 0 && "Reference count wasn't cleared");
217 assert(!dv->Next && "Chained DomainValue shouldn't have been recycled")
668 DomainValue *dv = nullptr; local
    [all...]
LiveDebugVariables.cpp 363 DIVariable DV(variable);
365 DV.printExtendedName(OS);
    [all...]
MachineInstr.cpp     [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfDebug.cpp 447 DbgVariable &DV,
450 auto Var = TheCU.constructVariableDIE(DV, Scope.isAbstractScope());
451 if (DV.isObjectPointer())
479 for (DbgVariable *DV : ScopeVariables.lookup(Scope))
480 Children.push_back(constructVariableDIE(TheCU, *DV, *Scope, ObjectPointer));
    [all...]
DwarfUnit.cpp 482 void DwarfUnit::addVariableAddress(const DbgVariable &DV, DIE &Die,
484 if (DV.variableHasComplexAddress())
485 addComplexAddress(DV, Die, dwarf::DW_AT_location, Location);
486 else if (DV.isBlockByrefVariable())
487 addBlockByrefAddress(DV, Die, dwarf::DW_AT_location, Location);
490 DV.getVariable().isIndirect());
580 void DwarfUnit::addComplexAddress(const DbgVariable &DV, DIE &Die,
584 unsigned N = DV.getNumAddrElements();
587 if (N >= 2 && DV.getAddrElement(0) == DIBuilder::OpPlus) {
590 addRegisterOffset(*Loc, Location.getReg(), DV.getAddrElement(1))
    [all...]
DwarfUnit.h 371 void addComplexAddress(const DbgVariable &DV, DIE &Die,
381 void addBlockByrefAddress(const DbgVariable &DV, DIE &Die,
387 void addVariableAddress(const DbgVariable &DV, DIE &Die,
421 std::unique_ptr<DIE> constructVariableDIE(DbgVariable &DV,
459 std::unique_ptr<DIE> constructVariableDIEImpl(const DbgVariable &DV,
DwarfDebug.h 344 DbgVariable *getExistingAbstractVariable(const DIVariable &DV,
346 DbgVariable *getExistingAbstractVariable(const DIVariable &DV);
347 void createAbstractVariable(const DIVariable &DV, LexicalScope *Scope);
  /external/clang/test/Sema/
ms_class_layout.cpp 138 struct DV : BV {
140 struct EV : CV, DV {
463 // CHECK: 0 | struct DV
470 // CHECK: %struct.DV = type { %struct.BV }
473 // CHECK-NEXT: 0 | struct DV (primary base)
486 // CHECK: %struct.EV = type { %struct.DV, %struct.CV.base, i32, %struct.BV }
487 // CHECK: %struct.EV.base = type { %struct.DV, %struct.CV.base }
  /external/chromium_org/chromeos/ime/
gen_input_methods.py 34 {"xkb:us:dvorak:eng", "en-US", "us(dvorak)", "DV", true},
  /external/clang/test/Analysis/
derived-to-base.cpp 48 class DV : virtual public B, public C {};
56 DV dv; local
57 dv.setX();
58 clang_analyzer_eval(dv.getX() == 42); // expected-warning{{TRUE}}
133 class DV : virtual public B, virtual public C {};
136 DV d;
  /external/llvm/lib/Analysis/
DependenceAnalysis.cpp 237 DV = CommonLevels ? new DVEntry[CommonLevels] : nullptr;
245 return DV[Level - 1].Direction;
252 return DV[Level - 1].Distance;
261 return DV[Level - 1].Scalar;
269 return DV[Level - 1].PeelFirst;
277 return DV[Level - 1].PeelLast;
284 return DV[Level - 1].Splitable;
    [all...]
  /external/llvm/lib/IR/
DebugInfo.cpp 903 /// @param DV Current Variable.
905 DIVariable llvm::createInlinedVariable(MDNode *DV, MDNode *InlinedScope,
909 for (unsigned i = 0, e = DV->getNumOperands(); i != e; ++i)
910 i == 7 ? Elts.push_back(InlinedScope) : Elts.push_back(DV->getOperand(i));
915 DIVariable llvm::cleanseInlinedVariable(MDNode *DV, LLVMContext &VMContext) {
918 for (unsigned i = 0, e = DV->getNumOperands(); i != e; ++i)
920 : Elts.push_back(DV->getOperand(i));
    [all...]
  /external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
SkPdfFieldDictionary_autogen.cpp 107 SkPdfNativeObject* SkPdfFieldDictionary::DV(SkPdfNativeDoc* doc) {
108 SkPdfNativeObject* ret = get("DV", "");
116 return get("DV", "") != NULL;
SkPdfFieldDictionary_autogen.h     [all...]
  /external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
SkPdfFieldDictionary_autogen.cpp 107 SkPdfNativeObject* SkPdfFieldDictionary::DV(SkPdfNativeDoc* doc) {
108 SkPdfNativeObject* ret = get("DV", "");
116 return get("DV", "") != NULL;
SkPdfFieldDictionary_autogen.h     [all...]
  /external/llvm/include/llvm/Analysis/
DependenceAnalysis.h 225 delete[] DV;
273 DVEntry *DV;
    [all...]
  /external/llvm/include/llvm/IR/
DebugInfo.h 823 /// @param DV Current Variable.
825 DIVariable createInlinedVariable(MDNode *DV, MDNode *InlinedScope,
829 DIVariable cleanseInlinedVariable(MDNode *DV, LLVMContext &VMContext);
    [all...]
  /frameworks/compile/slang/
slang_rs_object_ref_count.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Core/
BugReporterVisitors.cpp     [all...]

Completed in 754 milliseconds

1 2