HomeSort by relevance Sort by last modified time
    Searched refs:Bindings (Results 1 - 9 of 9) sorted by null

  /external/clang/lib/ASTMatchers/
ASTMatchersInternal.cpp 22 if (Bindings.empty())
23 Bindings.push_back(BoundNodesMap());
24 for (unsigned i = 0, e = Bindings.size(); i != e; ++i) {
25 ResultVisitor->visitMatch(BoundNodes(Bindings[i]));
30 for (unsigned i = 0, e = Other.Bindings.size(); i != e; ++i) {
31 Bindings.push_back(Other.Bindings[i]);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
macosxSupport.py 97 from idlelib import Bindings
147 Bindings.menudefs.insert(0,
155 Bindings.menudefs[0][1].append(
165 del Bindings.menudefs[-1][1][0]
EditorWindow.py 117 from idlelib import Bindings
780 self.Bindings.default_keydefs = keydefs = idleConf.GetCurrentKeySet()
792 self.Bindings.default_keydefs = keydefs = idleConf.GetCurrentKeySet()
800 for menu in self.Bindings.menudefs:
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
macosxSupport.py 97 from idlelib import Bindings
147 Bindings.menudefs.insert(0,
155 Bindings.menudefs[0][1].append(
165 del Bindings.menudefs[-1][1][0]
EditorWindow.py 117 from idlelib import Bindings
780 self.Bindings.default_keydefs = keydefs = idleConf.GetCurrentKeySet()
792 self.Bindings.default_keydefs = keydefs = idleConf.GetCurrentKeySet()
800 for menu in self.Bindings.menudefs:
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
CallEvent.cpp 268 CallEvent::BindingsTy &Bindings,
286 Bindings.push_back(std::make_pair(ParamLoc, ArgVal));
312 BindingsTy &Bindings) const {
315 addParameterValuesToBindings(CalleeCtx, Bindings, SVB, *this,
476 BindingsTy &Bindings) const {
477 AnyFunctionCall::getInitialStackFrameContents(CalleeCtx, Bindings);
502 Bindings.push_back(std::make_pair(ThisLoc, ThisVal));
558 BindingsTy &Bindings) const {
561 addParameterValuesToBindings(CalleeCtx, Bindings, SVB, *this,
579 BindingsTy &Bindings) const
    [all...]
RegionStore.cpp 440 /// \returns The updated store bindings, or \c None if binding non-lazily
459 /// Clears out all bindings in the given region and assigns a new value
519 /// Get bindings for the values in a struct and return a CompoundVal, used
528 /// Used to lazily generate derived symbols for bindings that are defined
529 /// implicitly by default bindings in a super region.
692 // Scan the entire set of bindings and record the region clusters.
801 /// Collects all bindings in \p Cluster that may refer to bindings within
808 /// default bindings that may extend beyond \p Top itself, e.g. if \p Top is
811 collectSubRegionBindings(SmallVectorImpl<BindingPair> &Bindings,
    [all...]
  /external/clang/include/clang/ASTMatchers/
ASTMatchersInternal.h 131 if (Bindings.empty())
132 Bindings.push_back(BoundNodesMap());
133 for (unsigned i = 0, e = Bindings.size(); i != e; ++i)
134 Bindings[i].addNode(Id, Node);
138 void addMatch(const BoundNodesTreeBuilder &Bindings);
147 Bindings.erase(std::remove_if(Bindings.begin(), Bindings.end(), Predicate),
148 Bindings.end());
149 return !Bindings.empty()
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
CallEvent.h 321 /// Populates the given SmallVector with the bindings in the callee's stack
324 BindingsTy &Bindings) const = 0;
427 BindingsTy &Bindings) const;
529 BindingsTy &Bindings) const;
569 BindingsTy &Bindings) const;
749 BindingsTy &Bindings) const;
900 BindingsTy &Bindings) const;
    [all...]

Completed in 181 milliseconds