| /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/ELF/ |
| ELFConfig.h | 25 uint8_t Bind = ELF::STB_GLOBAL;
|
| ELFObjcopy.cpp | 644 SI.SymbolName, SI.Bind, SI.Type, Sec, Value, SI.Visibility,
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-objdump/ |
| MachODump.h | 36 extern bool Bind;
|
| /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/ |
| BoolAssignmentChecker.cpp | 24 class BoolAssignmentChecker : public Checker< check::Bind > {
|
| UndefinedAssignmentChecker.cpp | 25 : public Checker<check::Bind> {
|
| CheckerDocumentation.cpp | 46 check::Bind, 161 /// \param S The bind is performed while processing the statement S. 163 /// check::Bind 252 /// This can occur in many different ways: an explicit bind, a blanket 259 /// For a function call, this would be the arguments. For a bind, this 263 /// by this change. For a simple bind, this list will be the same as 264 /// \p ExplicitRegions, since a bind does not affect the contents of
|
| AnalysisOrderChecker.cpp | 40 check::Bind, check::PointerEscape, check::RegionChanges, 188 if (isCallbackEnabled(C, "Bind")) 189 llvm::errs() << "Bind\n";
|
| VforkChecker.cpp | 45 check::Bind, check::PreStmt<ReturnStmt>> {
|
| DereferenceChecker.cpp | 31 check::Bind,
|
| ObjCSelfInitChecker.cpp | 63 check::Bind > {
|
| IteratorModeling.cpp | 89 check::Bind, check::LiveSymbols, check::DeadSymbols> { 218 // same type as the return value and bind the return value to
|
| NullabilityChecker.cpp | 81 : public Checker<check::Bind, check::PreCall, check::PreStmt<ReturnStmt>, 1026 /// For a given statement performing a bind, attempt to syntactically
|
| /src/external/apache2/llvm/dist/clang/lib/ASTMatchers/ |
| ASTMatchFinder.cpp | 99 ASTMatchFinder::BindKind Bind) 102 Bind(Bind), Matches(false) {} 353 // returns, i.e. if no match is found or 'Bind' is 'BK_All'. 359 if (Bind != ASTMatchFinder::BK_All) { 397 const ASTMatchFinder::BindKind Bind; 581 BindKind Bind) { 584 return matchesRecursively(Node, Matcher, Builder, MaxDepth, Bind); 603 matchesRecursively(Node, Matcher, &Result.Nodes, MaxDepth, Bind); 616 BindKind Bind) { [all...] |
| /src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| Store.h | 103 /// \param[in] val The value to bind to location \c loc. 107 virtual StoreRef Bind(Store store, Loc loc, SVal val) = 0;
|
| /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/ |
| RetainCountChecker.h | 239 : public Checker< check::Bind,
|
| /src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/ |
| ASTMatchersInternal.h | 353 /// May bind \p DynNode to an ID via \p Builder, or recurse into 366 /// descendants of the node or bind matched nodes to names. If you are 375 /// May bind 'Node' to an ID via 'Builder', or recurse into 488 /// Bind the specified \p ID to the matcher. 716 /// Stop at the first match and only bind the first match. 754 BoundNodesTreeBuilder *Builder, BindKind Bind) { 763 Builder, Bind); 768 BoundNodesTreeBuilder *Builder, BindKind Bind) { 777 Matcher, Builder, Bind); 806 BindKind Bind) = 0 1239 Matcher<T> bind(StringRef ID) const { function in class:clang::ast_matchers::internal::BindableMatcher 1463 Matcher<CladeType> bind(StringRef ID) const { return with().bind(ID); } function in struct:clang::ast_matchers::MapAnyOfHelper [all...] |
| /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/ |
| Store.cpp | 55 Store = Bind(Store.getStore(), I.first.castAs<Loc>(), I.second);
|
| ProgramState.cpp | 122 ProgramStateRef newState = makeWithStore(Mgr.StoreMgr->Bind(getStore(), 251 // We only want to do fetches from regions that we can actually bind
|
| /src/external/apache2/llvm/dist/llvm/lib/InterfaceStub/ |
| ELFObjHandler.cpp | 217 uint8_t Bind = Sym.Weak ? STB_WEAK : STB_GLOBAL; 222 DynSym.Content.add(DynStr.Content.getOffset(Sym.Name), Sym.Size, Bind,
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/ |
| ConfigManager.cpp | 521 .CaseLower("global", [&SI] { SI.Bind = ELF::STB_GLOBAL; }) 522 .CaseLower("local", [&SI] { SI.Bind = ELF::STB_LOCAL; }) 523 .CaseLower("weak", [&SI] { SI.Bind = ELF::STB_WEAK; })
|
| /src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/ |
| Checker.h | 210 class Bind {
|
| /src/external/gpl3/gcc.old/dist/libphobos/src/std/experimental/ |
| typecons.d | 26 import std.typecons : Tuple, tuple, Bind, DerivedFunctionType, GetOverloadedMethods; 93 if (!allSatisfy!(Bind!(isImplicitlyConvertible, Source), Targets))
|
| /src/external/apache2/llvm/dist/clang/lib/Sema/ |
| SemaExprCXX.cpp | 5839 // constraint that in the conversion the reference must bind directly to 5843 // the constraint that the reference must bind directly. 6257 // [...] subject to the constraint that the reference must bind 6850 // If the result is a glvalue, we shouldn't bind it. 6999 CXXBindTemporaryExpr *Bind = CXXBindTemporaryExpr::Create(Context, Temp, E); 7002 ExprEvalContexts.back().DelayedDecltypeBinds.push_back(Bind); 7004 return Bind; 7141 CXXBindTemporaryExpr *Bind = 7143 if (Bind == TopBind) 7146 CXXTemporary *Temp = Bind->getTemporary() [all...] |
| /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/sys/windows/ |
| oaidl.d | 560 HRESULT Bind(LPOLESTR, ULONG, WORD, LPTYPEINFO*, DESCKIND*, LPBINDPTR);
|
| /src/crypto/external/cpl/trousers/dist/src/include/tss/ |
| TSP.idl | 188 [helpstring("method Bind")]
189 HRESULT Bind([in] ITCPAKey* pEncKey,
|