Home
last modified time | relevance | path

Searched refs:IsDot (Results 1 – 24 of 24) sorted by relevance

/external/llvm-project/clang/lib/StaticAnalyzer/Core/
DDynamicType.cpp193 const char *NL, unsigned int Space, bool IsDot) { in printJson() argument
198 const char *NL, unsigned int Space, bool IsDot) { in printJson() argument
203 const char *NL, unsigned int Space, bool IsDot) { in printJson() argument
219 const char *NL, unsigned int Space, bool IsDot) { in printJson() argument
227 const char *NL, unsigned int Space, bool IsDot) { in printJson() argument
228 printJson(Pair.first, Out, NL, Space, IsDot) << ", "; in printJson()
229 return printJson(Pair.second, Out, NL, Space, IsDot); in printJson()
235 unsigned int Space, bool IsDot) { in printJsonContainer() argument
245 Indent(Out, Space, IsDot) << "{ "; in printJsonContainer()
246 printJson(Element, Out, NL, Space, IsDot) << " }"; in printJsonContainer()
[all …]
DEnvironment.cpp217 unsigned int Space, bool IsDot) const { in printJson()
218 Indent(Out, Space, IsDot) << "\"environment\": "; in printJson()
246 LCtx->printJson(Out, NL, Space, IsDot, [&](const LocationContext *LC) { in printJson()
276 Indent(Out, InnerSpace, IsDot) in printJson()
291 Indent(Out, --InnerSpace, IsDot) << ']'; in printJson()
296 Indent(Out, --Space, IsDot) << "]}," << NL; in printJson()
DProgramState.cpp451 bool IsDot) const { in printJson()
452 Indent(Out, Space, IsDot) << "\"program_state\": {" << NL; in printJson()
458 Mgr.getStoreManager().printJson(Out, getStore(), NL, Space, IsDot); in printJson()
461 Env.printJson(Out, Mgr.getContext(), LCtx, NL, Space, IsDot); in printJson()
464 Mgr.getConstraintManager().printJson(Out, this, NL, Space, IsDot); in printJson()
467 printDynamicTypeInfoJson(Out, this, NL, Space, IsDot); in printJson()
470 Mgr.getOwningEngine().printJson(Out, this, LCtx, NL, Space, IsDot); in printJson()
473 Indent(Out, Space, IsDot) << '}'; in printJson()
DCheckerManager.cpp710 bool IsDot) const { in runCheckersForPrintStateJson()
711 Indent(Out, Space, IsDot) << "\"checker_messages\": "; in runCheckersForPrintStateJson()
722 Indent(NLOut, InnerSpace, IsDot) << "\""; // then begin the next message. in runCheckersForPrintStateJson()
752 Indent(Out, Space, IsDot) in runCheckersForPrintStateJson()
755 Indent(Out, InnerSpace, IsDot) in runCheckersForPrintStateJson()
757 Indent(Out, Space, IsDot) << "]}"; in runCheckersForPrintStateJson()
768 Indent(Out, --Space, IsDot) << "]"; in runCheckersForPrintStateJson()
DExprEngine.cpp557 unsigned int Space = 0, bool IsDot = false) { in printObjectsUnderConstructionJson() argument
585 Indent(Out, Space, IsDot) << "{ "; in printObjectsUnderConstructionJson()
595 Indent(Out, --Space, IsDot) << ']'; // End of "location_context". in printObjectsUnderConstructionJson()
603 unsigned int Space, bool IsDot) const { in printJson()
604 Indent(Out, Space, IsDot) << "\"constructing_objects\": "; in printJson()
609 LCtx->printJson(Out, NL, Space, IsDot, [&](const LocationContext *LC) { in printJson()
610 printObjectsUnderConstructionJson(Out, State, NL, LC, Space, IsDot); in printJson()
614 Indent(Out, Space, IsDot) << "]," << NL; // End of "constructing_objects". in printJson()
620 IsDot); in printJson()
3169 const bool IsDot = true; in getNodeLabel() local
[all …]
DRegionStore.cpp234 unsigned int Space = 0, bool IsDot = false) const { in printJson() argument
237 Indent(Out, Space, IsDot) in printJson()
244 Indent(Out, Space, IsDot) << "{ " << CI.getKey() << ", \"value\": "; in printJson()
253 Indent(Out, Space, IsDot) << "]}"; in printJson()
640 unsigned int Space = 0, bool IsDot = false) const override;
2634 unsigned int Space, bool IsDot) const { in printJson()
2637 Indent(Out, Space, IsDot) << "\"store\": "; in printJson()
2645 Bindings.printJson(Out, NL, Space + 1, IsDot); in printJson()
2646 Indent(Out, Space, IsDot) << "]}," << NL; in printJson()
DRangeConstraintManager.cpp1286 unsigned int Space = 0, bool IsDot = false) const override;
2248 bool IsDot) const { in printJson()
2251 Indent(Out, Space, IsDot) << "\"constraints\": "; in printJson()
2271 Indent(Out, Space, IsDot) in printJson()
2280 Indent(Out, Space, IsDot) << "]," << NL; in printJson()
/external/llvm-project/clang/include/clang/Basic/
DJsonSupport.h21 bool IsDot) { in Indent() argument
23 Out << (IsDot ? "&nbsp;" : " "); in Indent()
/external/libtextclassifier/native/utils/utf8/
Dunilib.h104 bool IsDot(char32 codepoint) const { in IsDot() function
105 return libtextclassifier3::IsDot(codepoint); in IsDot()
Dunilib-common.h37 bool IsDot(char32 codepoint);
Dunilib_test-include.cc55 EXPECT_TRUE(unilib_->IsDot('.')); in TEST_F()
56 EXPECT_TRUE(unilib_->IsDot(u'.')); in TEST_F()
135 EXPECT_TRUE(unilib_->IsDot(0x002E)); // FULL STOP in TEST_F()
136 EXPECT_TRUE(unilib_->IsDot(0xFF0E)); // FULLWIDTH FULL STOP in TEST_F()
Dunilib-common.cc591 bool IsDot(char32 codepoint) { in IsDot() function
Dunilib-javaicu.cc112 for (; it_dot != text.end() && !IsDot(*it_dot); it_dot++) { in ParseDouble()
/external/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DSMTConstraintManager.h214 unsigned int Space = 0, bool IsDot = false) const override { in REGISTER_TRAIT_WITH_PROGRAMSTATE()
217 Indent(Out, Space, IsDot) << "\"constraints\": "; in REGISTER_TRAIT_WITH_PROGRAMSTATE()
227 Indent(Out, Space, IsDot) in REGISTER_TRAIT_WITH_PROGRAMSTATE()
238 Indent(Out, Space, IsDot) << "],"; in REGISTER_TRAIT_WITH_PROGRAMSTATE()
DDynamicType.h86 bool IsDot = false);
DEnvironment.h96 unsigned int Space = 0, bool IsDot = false) const;
DConstraintManager.h163 bool IsDot) const = 0;
DStore.h249 unsigned int Space, bool IsDot) const = 0;
DExprEngine.h413 unsigned int Space, bool IsDot) const;
DProgramState.h436 bool IsDot = false) const;
/external/llvm-project/clang/lib/Analysis/
DAnalysisDeclContext.cpp480 unsigned int Space, bool IsDot, in printJson() argument
492 Indent(Out, Space, IsDot) in printJson()
/external/libtextclassifier/native/utils/
Dtokenizer.cc327 } else if (unilib_->IsDot(*it) && preserve_floating_numbers_) { in NumberTokenize()
/external/llvm-project/clang/include/clang/Analysis/
DAnalysisDeclContext.h281 bool IsDot = false,
/external/llvm-project/clang/include/clang/StaticAnalyzer/Core/
DCheckerManager.h462 bool IsDot = false) const;