Home
last modified time | relevance | path

Searched refs:kindmask (Results 1 – 4 of 4) sorted by relevance

/dports/lang/mono/mono-5.10.1.57/external/corefx/src/Microsoft.CSharp/src/Microsoft/CSharp/RuntimeBinder/Semantics/Symbols/
H A DSymbolTable.cs26 public Symbol LookupSym(Name name, ParentSymbol parent, symbmask_t kindmask) in LookupSym() argument
33 return FindCorrectKind(sym, kindmask); in LookupSym()
78 private static Symbol FindCorrectKind(Symbol sym, symbmask_t kindmask) in FindCorrectKind() argument
82 if ((kindmask & sym.mask()) != 0) in FindCorrectKind()
H A DSymbolManagerBase.cs146 public Symbol LookupGlobalSymCore(Name name, ParentSymbol parent, symbmask_t kindmask) in LookupGlobalSymCore() argument
148 return tableGlobal.LookupSym(name, parent, kindmask); in LookupGlobalSymCore()
156 public static Symbol LookupNextSym(Symbol sym, ParentSymbol parent, symbmask_t kindmask) in LookupNextSym() argument
166 if ((kindmask & sym.mask()) > 0) in LookupNextSym()
H A DSymbolLoader.cs91 public static Symbol LookupNextSym(Symbol sym, ParentSymbol parent, symbmask_t kindmask) in LookupNextSym() argument
92 => BSYMMGR.LookupNextSym(sym, parent, kindmask); in LookupNextSym()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.pde.ui/apitools/org.eclipse.pde.api.tools/src/org/eclipse/pde/api/tools/internal/builder/
H A DReferenceAnalyzer.java291 …public IApiProblemDetector[] buildProblemDetectors(IApiComponent component, int kindmask, IProgres… in buildProblemDetectors() argument
295 final ProblemDetectorBuilder visitor = new ProblemDetectorBuilder(component, kindmask); in buildProblemDetectors()