Java 类com.intellij.psi.impl.cache.impl.BaseFilterLexerUtil 实例源码

项目:intellij-ce-playground    文件:LexerBasedTodoIndexer.java   
@Override
@NotNull
public Map<TodoIndexEntry,Integer> map(@NotNull final FileContent inputData) {
  return BaseFilterLexerUtil.scanContent(inputData, this).todoMap;
}
项目:intellij-ce-playground    文件:LexerBasedIdIndexer.java   
@Override
@NotNull
public final Map<IdIndexEntry,Integer> map(@NotNull final FileContent inputData) {
  return BaseFilterLexerUtil.scanContent(inputData, this).idMap;
}
项目:tools-idea    文件:LexerBasedIdIndexer.java   
@Override
@NotNull
public final Map<IdIndexEntry,Integer> map(final FileContent inputData) {
  return BaseFilterLexerUtil.scanContent(inputData, this).idMap;
}
项目:tools-idea    文件:LexerBasedTodoIndexer.java   
@Override
@NotNull
public Map<TodoIndexEntry,Integer> map(final FileContent inputData) {
  return BaseFilterLexerUtil.scanContent(inputData, this).todoMap;
}
项目:consulo    文件:LexerBasedTodoIndexer.java   
@Override
@Nonnull
public Map<TodoIndexEntry, Integer> map(final FileContent inputData) {
  return BaseFilterLexerUtil.scanContent(inputData, this).todoMap;
}
项目:consulo    文件:LexerBasedIdIndexer.java   
@Override
@Nonnull
public final Map<IdIndexEntry,Integer> map(final FileContent inputData) {
  return BaseFilterLexerUtil.scanContent(inputData, this).idMap;
}