├── .dockerignore ├── .github └── workflows │ ├── ci-aarch64.yml │ ├── ci.yml │ ├── gh_pages.yml │ └── glean-docker.yml ├── .gitignore ├── .hlint.yaml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── cabal.project ├── docker_entrypoint.sh ├── glean.cabal.in ├── glean ├── ROADMAP.md ├── angle │ └── Glean │ │ ├── Angle │ │ ├── Hash.hs │ │ ├── Lexer.x │ │ ├── Parser.y │ │ └── Types.hs │ │ ├── Display.hs │ │ └── Schema │ │ ├── Evolve.hs │ │ ├── Resolve.hs │ │ ├── Types.hs │ │ └── Util.hs ├── backend-api │ └── Glean │ │ ├── Backend │ │ ├── Retry.hs │ │ └── Types.hs │ │ ├── Query │ │ ├── Thrift.hs │ │ └── Thrift │ │ │ └── Internal.hs │ │ └── Write │ │ └── SendBatch.hs ├── backend-local │ └── Glean │ │ ├── Backend │ │ ├── Local.hs │ │ └── Logging.hs │ │ └── Dump.hs ├── bench │ ├── BenchDB.hs │ ├── CompileBench.hs │ ├── FactSetBench.hs │ ├── MakeFactBench.hs │ ├── QueryBench.hs │ ├── RenameBench.hs │ ├── ServerQueryBench.hs │ ├── TypedBench.hs │ └── lib │ │ └── Glean │ │ └── Util │ │ └── Benchmark.hs ├── bytecode │ ├── Glean │ │ └── Bytecode │ │ │ ├── Decode.hs │ │ │ ├── SysCalls.hs │ │ │ └── Types.hs │ ├── def │ │ └── Glean │ │ │ └── Bytecode │ │ │ └── Generate │ │ │ └── Instruction.hs │ ├── evaluate.h │ ├── gen │ │ ├── Glean │ │ │ └── Bytecode │ │ │ │ └── Generate │ │ │ │ ├── Cpp.hs │ │ │ │ └── Haskell.hs │ │ └── tests │ │ │ └── bytecode_gen_cpp_test.sh │ ├── instruction.h │ └── sync ├── client │ ├── hs │ │ ├── Glean.hs │ │ ├── Glean │ │ │ ├── Angle.hs │ │ │ ├── Haxl.hs │ │ │ ├── Haxl │ │ │ │ └── Repos.hs │ │ │ ├── Remote.hs │ │ │ ├── Repo.hs │ │ │ ├── Util │ │ │ │ └── ShellPrint.hs │ │ │ └── Write.hs │ │ ├── cpp │ │ │ └── write.cpp │ │ ├── example │ │ │ ├── Example.hs │ │ │ └── ExampleWriter.hs │ │ └── local │ │ │ └── Glean │ │ │ └── LocalOrRemote.hs │ └── swift │ │ ├── Clock.cpp │ │ ├── Clock.h │ │ ├── GlassAccess.cpp │ │ ├── GlassAccess.h │ │ ├── GlassAccessLocal.cpp │ │ ├── GlassAccessLocal.h │ │ ├── GlassAccessRemote.cpp │ │ ├── GlassAccessRemote.h │ │ ├── GlassSwiftLocalClient.cpp │ │ ├── GlassSwiftRemoteClient.cpp │ │ ├── IGlassAccess.h │ │ ├── JsonServer.cpp │ │ ├── JsonServer.h │ │ ├── ScubaLogger.cpp │ │ ├── ScubaLogger.h │ │ ├── Utils.cpp │ │ ├── Utils.h │ │ ├── bin │ │ └── swift_glass_client │ │ ├── e2e_test │ │ ├── README.md │ │ └── test_swift_glass_client.py │ │ ├── hash.cpp │ │ ├── hash.h │ │ ├── msdk │ │ └── swift_glass_client.dotslash.py │ │ └── test │ │ ├── GlassAccessMock.h │ │ ├── HashTest.cpp │ │ ├── JsonServerTest.cpp │ │ ├── PathEncodingTest.cpp │ │ └── ScubaLoggerMock.h ├── config │ ├── client │ │ └── client_config.thrift │ ├── coverage │ │ └── db_coverage.thrift │ ├── recipes │ │ └── recipes.thrift │ ├── server │ │ └── server_config.thrift │ └── service.thrift ├── cpp │ ├── filewriter.cpp │ ├── filewriter.h │ ├── glean.cpp │ ├── glean.h │ └── sender.h ├── db │ └── Glean │ │ ├── Database │ │ ├── Backup.hs │ │ ├── Backup │ │ │ ├── Backend.hs │ │ │ ├── Locator.hs │ │ │ └── Mock.hs │ │ ├── BatchLocation.hs │ │ ├── Catalog.hs │ │ ├── Catalog │ │ │ ├── Filter.hs │ │ │ ├── Local │ │ │ │ ├── Files.hs │ │ │ │ └── Memory.hs │ │ │ └── Store.hs │ │ ├── Close.hs │ │ ├── CompletePredicates.hs │ │ ├── Config.hs │ │ ├── Create.hs │ │ ├── Data.hs │ │ ├── Delete.hs │ │ ├── Env.hs │ │ ├── Exception.hs │ │ ├── Finish.hs │ │ ├── Janitor.hs │ │ ├── List.hs │ │ ├── Logger.hs │ │ ├── Meta.hs │ │ ├── Open.hs │ │ ├── Ownership.hs │ │ ├── PredicateStats.hs │ │ ├── Repo.hs │ │ ├── Restore.hs │ │ ├── Retention.hs │ │ ├── Schema.hs │ │ ├── Schema │ │ │ ├── ComputeIds.hs │ │ │ └── Types.hs │ │ ├── Storage.hs │ │ ├── Storage │ │ │ ├── Memory.hs │ │ │ └── RocksDB.hs │ │ ├── Trace.hs │ │ ├── Types.hs │ │ ├── Validate.hs │ │ ├── Write │ │ │ └── Batch.hs │ │ └── Writes.hs │ │ ├── Logger.hs │ │ ├── Logger │ │ ├── Database.hs │ │ └── Server.hs │ │ ├── Query │ │ ├── BindOrder.hs │ │ ├── Codegen.hs │ │ ├── Codegen │ │ │ ├── QueryRegs.hs │ │ │ └── Types.hs │ │ ├── Derive.hs │ │ ├── Expand.hs │ │ ├── Flatten.hs │ │ ├── Flatten │ │ │ └── Types.hs │ │ ├── Incremental.hs │ │ ├── JSON.hs │ │ ├── Opt.hs │ │ ├── Prune.hs │ │ ├── Reorder.hs │ │ ├── Transform.hs │ │ ├── Typecheck.hs │ │ ├── Typecheck │ │ │ ├── Monad.hs │ │ │ ├── Types.hs │ │ │ └── Unify.hs │ │ ├── UserQuery.hs │ │ └── Vars.hs │ │ └── Write │ │ └── JSON.hs ├── demo │ └── Hyperlink.hs ├── example │ ├── create.sh │ ├── facts.glean │ └── schema │ │ └── example.angle ├── github │ ├── Facebook │ │ ├── Fb303.hs │ │ └── Service.hs │ ├── Glean │ │ ├── BuildInfo.hs │ │ ├── Datasource │ │ │ └── Scribe │ │ │ │ └── Write.hs │ │ ├── DefaultConfigs.hs │ │ ├── Index.hs │ │ ├── Init.hsc │ │ ├── Server │ │ │ └── PublishShards.hs │ │ └── Username.hs │ ├── Logger │ │ ├── GleanGlass.hs │ │ ├── GleanGlassErrors.hs │ │ └── IO.hs │ ├── ServiceData │ │ ├── GlobalStats.hs │ │ └── Types.hs │ ├── TestRunner.hs │ └── if │ │ ├── fb303.thrift │ │ └── fb303_core.thrift ├── glass │ ├── Glean │ │ └── Glass │ │ │ ├── Annotations.hs │ │ │ ├── Attributes.hs │ │ │ ├── Attributes │ │ │ ├── Class.hs │ │ │ ├── PerfUtils.hs │ │ │ └── SymbolKind.hs │ │ │ ├── Base.hs │ │ │ ├── Comments.hs │ │ │ ├── Config.hs │ │ │ ├── Describe.hs │ │ │ ├── Digest.hs │ │ │ ├── Env.hs │ │ │ ├── Handler │ │ │ ├── Cxx.hs │ │ │ ├── Documents.hs │ │ │ ├── Symbols.hs │ │ │ └── Utils.hs │ │ │ ├── Logging.hs │ │ │ ├── Main.hs │ │ │ ├── NameSearch.hs │ │ │ ├── Neighborhood.hs │ │ │ ├── Options.hs │ │ │ ├── Path.hs │ │ │ ├── Pretty │ │ │ ├── Angle.hs │ │ │ ├── Cxx.hs │ │ │ ├── Fbthrift.hs │ │ │ ├── Flow.hs │ │ │ ├── Hack.hs │ │ │ ├── Haskell.hs │ │ │ ├── Java.hs │ │ │ ├── LSIF.hs │ │ │ ├── Python.hs │ │ │ └── SCIP.hs │ │ │ ├── Query.hs │ │ │ ├── Query │ │ │ └── Cxx.hs │ │ │ ├── Range.hs │ │ │ ├── RepoMapping.hs │ │ │ ├── Repos.hs │ │ │ ├── Search.hs │ │ │ ├── Search │ │ │ ├── Angle.hs │ │ │ ├── Buck.hs │ │ │ ├── Class.hs │ │ │ ├── Cxx.hs │ │ │ ├── Erlang.hs │ │ │ ├── Flow.hs │ │ │ ├── GraphQL.hs │ │ │ ├── Hack.hs │ │ │ ├── Haskell.hs │ │ │ ├── Java.hs │ │ │ ├── Kotlin.hs │ │ │ ├── LSIF.hs │ │ │ ├── Pp.hs │ │ │ ├── Python.hs │ │ │ ├── SCIP.hs │ │ │ └── Thrift.hs │ │ │ ├── SearchRelated.hs │ │ │ ├── Server.hs │ │ │ ├── SnapshotBackend.hs │ │ │ ├── SourceControl.hs │ │ │ ├── SymbolId.hs │ │ │ ├── SymbolId │ │ │ ├── Angle.hs │ │ │ ├── Buck.hs │ │ │ ├── CSharp.hs │ │ │ ├── Chef.hs │ │ │ ├── Class.hs │ │ │ ├── Cxx.hs │ │ │ ├── Cxx │ │ │ │ └── Parse.hs │ │ │ ├── Erlang.hs │ │ │ ├── Fbthrift.hs │ │ │ ├── Flow.hs │ │ │ ├── GraphQL.hs │ │ │ ├── Hack.hs │ │ │ ├── Hs.hs │ │ │ ├── Java.hs │ │ │ ├── LSIF.hs │ │ │ ├── Pp.hs │ │ │ ├── Python.hs │ │ │ └── SCIP.hs │ │ │ ├── SymbolKind.hs │ │ │ ├── SymbolMap.hs │ │ │ ├── SymbolSig.hs │ │ │ ├── Tracer.hs │ │ │ ├── Tracing.hs │ │ │ ├── Utils.hs │ │ │ ├── Visibility.hs │ │ │ └── XRefs.hs │ ├── README.md │ ├── compare-snapshots.sh │ ├── if │ │ ├── glass.thrift │ │ └── snapshot.thrift │ ├── server │ │ └── Server.hs │ ├── test │ │ ├── Glean │ │ │ └── Glass │ │ │ │ └── Test │ │ │ │ ├── Range.hs │ │ │ │ ├── Repos.hs │ │ │ │ ├── RequestOptions.hs │ │ │ │ └── ValidateCxxSymbolIds.hs │ │ ├── regression │ │ │ ├── Glean │ │ │ │ └── Glass │ │ │ │ │ └── Regression │ │ │ │ │ ├── Buck.hs │ │ │ │ │ ├── Cpp.hs │ │ │ │ │ ├── Cpp │ │ │ │ │ └── Github.hs │ │ │ │ │ ├── CppXLang.hs │ │ │ │ │ ├── Flow.hs │ │ │ │ │ ├── Flow │ │ │ │ │ └── Main.hs │ │ │ │ │ ├── Go.hs │ │ │ │ │ ├── Go │ │ │ │ │ └── Main.hs │ │ │ │ │ ├── Hack.hs │ │ │ │ │ ├── Hack │ │ │ │ │ └── Main.hs │ │ │ │ │ ├── HackXLang.hs │ │ │ │ │ ├── Haskell.hs │ │ │ │ │ ├── Haskell │ │ │ │ │ └── Main.hs │ │ │ │ │ ├── Java.hs │ │ │ │ │ ├── JavaLsif.hs │ │ │ │ │ ├── JavaLsif │ │ │ │ │ └── Main.hs │ │ │ │ │ ├── Python.hs │ │ │ │ │ ├── PythonPyrefly.hs │ │ │ │ │ ├── RustLsif.hs │ │ │ │ │ ├── RustLsif │ │ │ │ │ └── Main.hs │ │ │ │ │ ├── SCIP.hs │ │ │ │ │ ├── SCIP │ │ │ │ │ └── Main.hs │ │ │ │ │ ├── Swift.hs │ │ │ │ │ ├── Swift │ │ │ │ │ └── Main.hs │ │ │ │ │ ├── SwiftObjcXLang.hs │ │ │ │ │ ├── Thrift.hs │ │ │ │ │ ├── TypeScript.hs │ │ │ │ │ └── TypeScript │ │ │ │ │ └── Main.hs │ │ │ ├── lib │ │ │ │ └── Glean │ │ │ │ │ └── Glass │ │ │ │ │ └── Regression │ │ │ │ │ ├── Snapshot.hs │ │ │ │ │ ├── Tests.hs │ │ │ │ │ └── Util.hs │ │ │ └── tests │ │ │ │ ├── buck │ │ │ │ ├── describeSymbol.out │ │ │ │ ├── describeSymbol.query │ │ │ │ ├── describeSymbol_definition.out │ │ │ │ ├── describeSymbol_definition.query │ │ │ │ ├── describeSymbol_file.out │ │ │ │ ├── describeSymbol_file.query │ │ │ │ ├── documentSymbolIndex.out │ │ │ │ ├── documentSymbolIndex.query │ │ │ │ ├── documentSymbolIndex_my_defs.out │ │ │ │ ├── documentSymbolIndex_my_defs.query │ │ │ │ ├── documentSymbolListX.out │ │ │ │ ├── documentSymbolListX.query │ │ │ │ ├── findReferenceRanges_def.out │ │ │ │ ├── findReferenceRanges_def.query │ │ │ │ ├── findReferenceRanges_file.out │ │ │ │ ├── findReferenceRanges_file.query │ │ │ │ ├── findReferenceRanges_target.out │ │ │ │ ├── findReferenceRanges_target.query │ │ │ │ ├── resolveSymbolRange_target.out │ │ │ │ ├── resolveSymbolRange_target.query │ │ │ │ ├── resolveSymbol_def.out │ │ │ │ ├── resolveSymbol_def.query │ │ │ │ ├── resolveSymbol_file.out │ │ │ │ ├── resolveSymbol_file.query │ │ │ │ ├── resolveSymbol_target.out │ │ │ │ ├── resolveSymbol_target.query │ │ │ │ ├── searchSymbol.out │ │ │ │ └── searchSymbol.query │ │ │ │ ├── cpp-xlang │ │ │ │ ├── documentSymbolIndex.out │ │ │ │ ├── documentSymbolIndex.query │ │ │ │ ├── documentSymbolListX.out │ │ │ │ ├── documentSymbolListX.query │ │ │ │ ├── findReferences-fun.out │ │ │ │ ├── findReferences-fun.query │ │ │ │ ├── findReferences-struct.out │ │ │ │ └── findReferences-struct.query │ │ │ │ ├── cpp │ │ │ │ ├── callees_h.out │ │ │ │ ├── callees_h.query │ │ │ │ ├── callers_h.out │ │ │ │ ├── callers_h.query │ │ │ │ ├── describeSymbol_S.out │ │ │ │ ├── describeSymbol_S.query │ │ │ │ ├── describeSymbol_T.out │ │ │ │ ├── describeSymbol_T.query │ │ │ │ ├── describeSymbol_bar.out │ │ │ │ ├── describeSymbol_bar.query │ │ │ │ ├── describeSymbol_defn_h.out │ │ │ │ ├── describeSymbol_defn_h.query │ │ │ │ ├── describeSymbol_f.out │ │ │ │ ├── describeSymbol_f.query │ │ │ │ ├── describeSymbol_local_i.out │ │ │ │ ├── describeSymbol_local_i.query │ │ │ │ ├── describeSymbol_local_ns.out │ │ │ │ ├── describeSymbol_local_ns.query │ │ │ │ ├── describeSymbol_namespace_foo.out │ │ │ │ ├── describeSymbol_namespace_foo.query │ │ │ │ ├── describe_symbol_ctor_param.out │ │ │ │ ├── describe_symbol_ctor_param.query │ │ │ │ ├── describe_symbol_ctor_signature.out │ │ │ │ ├── describe_symbol_ctor_signature.query │ │ │ │ ├── describe_symbol_ctor_signature_empty.out │ │ │ │ ├── describe_symbol_ctor_signature_empty.query │ │ │ │ ├── describe_symbol_ctor_signature_sig1.out │ │ │ │ ├── describe_symbol_ctor_signature_sig1.query │ │ │ │ ├── describe_symbol_ctor_signature_sig2.out │ │ │ │ ├── describe_symbol_ctor_signature_sig2.query │ │ │ │ ├── describe_symbol_ctor_signature_sig_nary.out │ │ │ │ ├── describe_symbol_ctor_signature_sig_nary.query │ │ │ │ ├── describe_symbol_ctor_signature_sig_nary_nested.out │ │ │ │ ├── describe_symbol_ctor_signature_sig_nary_nested.query │ │ │ │ ├── describe_symbol_dtor.out │ │ │ │ ├── describe_symbol_dtor.query │ │ │ │ ├── describe_symbol_enum_enumerator.out │ │ │ │ ├── describe_symbol_enum_enumerator.query │ │ │ │ ├── describe_symbol_fun.out │ │ │ │ ├── describe_symbol_fun.query │ │ │ │ ├── describe_symbol_fun_2.out │ │ │ │ ├── describe_symbol_fun_2.query │ │ │ │ ├── describe_symbol_fun_nary_1.out │ │ │ │ ├── describe_symbol_fun_nary_1.query │ │ │ │ ├── describe_symbol_fun_nary_2.out │ │ │ │ ├── describe_symbol_fun_nary_2.query │ │ │ │ ├── describe_symbol_fun_nary_3.out │ │ │ │ ├── describe_symbol_fun_nary_3.query │ │ │ │ ├── describe_symbol_fun_nary_4.out │ │ │ │ ├── describe_symbol_fun_nary_4.query │ │ │ │ ├── describe_symbol_fun_nullary.out │ │ │ │ ├── describe_symbol_fun_nullary.query │ │ │ │ ├── describe_symbol_fun_qual.out │ │ │ │ ├── describe_symbol_fun_qual.query │ │ │ │ ├── describe_symbol_fun_qual_2.out │ │ │ │ ├── describe_symbol_fun_qual_2.query │ │ │ │ ├── describe_symbol_fun_qual_3.out │ │ │ │ ├── describe_symbol_fun_qual_3.query │ │ │ │ ├── describe_symbol_literal_operator.out │ │ │ │ ├── describe_symbol_literal_operator.query │ │ │ │ ├── describe_symbol_macro.out │ │ │ │ ├── describe_symbol_macro.query │ │ │ │ ├── describe_symbol_macro_2.out │ │ │ │ ├── describe_symbol_macro_2.query │ │ │ │ ├── describe_symbol_operator_1.out │ │ │ │ ├── describe_symbol_operator_1.query │ │ │ │ ├── describe_symbol_operator_2.out │ │ │ │ ├── describe_symbol_operator_2.query │ │ │ │ ├── describe_symbol_operator_3.out │ │ │ │ ├── describe_symbol_operator_3.query │ │ │ │ ├── describe_symbol_operator_4.out │ │ │ │ ├── describe_symbol_operator_4.query │ │ │ │ ├── describe_symbol_type_conv.out │ │ │ │ ├── describe_symbol_type_conv.query │ │ │ │ ├── describe_symbol_type_conv_2.out │ │ │ │ ├── describe_symbol_type_conv_2.query │ │ │ │ ├── documentSymbolIndex.out │ │ │ │ ├── documentSymbolIndex.query │ │ │ │ ├── documentSymbolListX.out │ │ │ │ ├── documentSymbolListX.query │ │ │ │ ├── documentSymbolListX_test_h.out │ │ │ │ ├── documentSymbolListX_test_h.query │ │ │ │ ├── fileIncludeLocations.out │ │ │ │ ├── fileIncludeLocations.query │ │ │ │ ├── findReferenceRanges_decl_h.out │ │ │ │ ├── findReferenceRanges_decl_h.query │ │ │ │ ├── findReferenceRanges_defn_h.out │ │ │ │ ├── findReferenceRanges_defn_h.query │ │ │ │ ├── findReferenceRanges_foo_bar_decl_g.out │ │ │ │ ├── findReferenceRanges_foo_bar_decl_g.query │ │ │ │ ├── findReferenceRanges_foo_bar_struct_T.out │ │ │ │ ├── findReferenceRanges_foo_bar_struct_T.query │ │ │ │ ├── findReferenceRanges_foo_decl_f.out │ │ │ │ ├── findReferenceRanges_foo_decl_f.query │ │ │ │ ├── findReferenceRanges_local_i.out │ │ │ │ ├── findReferenceRanges_local_i.query │ │ │ │ ├── findReferenceRanges_local_ns.out │ │ │ │ ├── findReferenceRanges_local_ns.query │ │ │ │ ├── findReferenceRanges_macro.out │ │ │ │ ├── findReferenceRanges_macro.query │ │ │ │ ├── findReferenceRanges_macro_2.out │ │ │ │ ├── findReferenceRanges_macro_2.query │ │ │ │ ├── findReferenceRanges_namespace_foo.out │ │ │ │ ├── findReferenceRanges_namespace_foo.query │ │ │ │ ├── findReferenceRanges_namespace_foo_bar.out │ │ │ │ ├── findReferenceRanges_namespace_foo_bar.query │ │ │ │ ├── findReferenceRanges_struct_foo_S.out │ │ │ │ ├── findReferenceRanges_struct_foo_S.query │ │ │ │ ├── findReferenceRanges_struct_foo_S_defn.out │ │ │ │ ├── findReferenceRanges_struct_foo_S_defn.query │ │ │ │ ├── relatedNeighborhood_test_cpp__Global.out │ │ │ │ ├── relatedNeighborhood_test_cpp__Global.query │ │ │ │ ├── relatedNeighborhood_test_cpp__GlobalClass.out │ │ │ │ ├── relatedNeighborhood_test_cpp__GlobalClass.query │ │ │ │ ├── relatedNeighborhood_test_cpp__baz.out │ │ │ │ ├── relatedNeighborhood_test_cpp__baz.query │ │ │ │ ├── relatedNeighborhood_test_cpp__baz_U.out │ │ │ │ ├── relatedNeighborhood_test_cpp__baz_U.query │ │ │ │ ├── relatedNeighborhood_test_cpp__baz_U_InU.out │ │ │ │ ├── relatedNeighborhood_test_cpp__baz_U_InU.query │ │ │ │ ├── relatedNeighborhood_test_cpp__baz_U_InUClass.out │ │ │ │ ├── relatedNeighborhood_test_cpp__baz_U_InUClass.query │ │ │ │ ├── relatedNeighborhood_test_cpp__foo_S.out │ │ │ │ ├── relatedNeighborhood_test_cpp__foo_S.query │ │ │ │ ├── relatedNeighborhood_test_cpp__foo_S_TypedefDeclInteger_.decl.out │ │ │ │ ├── relatedNeighborhood_test_cpp__foo_S_TypedefDeclInteger_.decl.query │ │ │ │ ├── relatedNeighborhood_test_cpp__foo_S_UsingDeclInteger_.decl.out │ │ │ │ ├── relatedNeighborhood_test_cpp__foo_S_UsingDeclInteger_.decl.query │ │ │ │ ├── relatedNeighborhood_test_cpp__foo_bar.out │ │ │ │ ├── relatedNeighborhood_test_cpp__foo_bar.query │ │ │ │ ├── relatedNeighborhood_test_cpp__foo_bar_T.out │ │ │ │ ├── relatedNeighborhood_test_cpp__foo_bar_T.query │ │ │ │ ├── relatedNeighborhood_test_cpp__foo_bar_T_memberVariableDecl_.decl.out │ │ │ │ ├── relatedNeighborhood_test_cpp__foo_bar_T_memberVariableDecl_.decl.query │ │ │ │ ├── relatedNeighborhood_test_cpp__foo_bar_TypedefDeclShort_.decl.out │ │ │ │ ├── relatedNeighborhood_test_cpp__foo_bar_TypedefDeclShort_.decl.query │ │ │ │ ├── relatedNeighborhood_test_cpp__foo_bar_UsingDeclShort_.decl.out │ │ │ │ ├── relatedNeighborhood_test_cpp__foo_bar_UsingDeclShort_.decl.query │ │ │ │ ├── relatedNeighborhood_test_cpp__foo_bar_g_.decl.out │ │ │ │ ├── relatedNeighborhood_test_cpp__foo_bar_g_.decl.query │ │ │ │ ├── relatedNeighborhood_test_cpp__foo_f_.decl.out │ │ │ │ ├── relatedNeighborhood_test_cpp__foo_f_.decl.query │ │ │ │ ├── relatedNeighborhood_test_cpp__foo_foo.out │ │ │ │ ├── relatedNeighborhood_test_cpp__foo_foo.query │ │ │ │ ├── relatedNeighborhood_test_cpp__foo_fooFn.out │ │ │ │ ├── relatedNeighborhood_test_cpp__foo_fooFn.query │ │ │ │ ├── relatedNeighborhood_test_cpp__foo_fooFn_fooI_.decl.out │ │ │ │ ├── relatedNeighborhood_test_cpp__foo_fooFn_fooI_.decl.query │ │ │ │ ├── relatedNeighborhood_test_cpp__foo_foo_.decl.out │ │ │ │ ├── relatedNeighborhood_test_cpp__foo_foo_.decl.query │ │ │ │ ├── relatedNeighborhood_test_cpp__h.out │ │ │ │ ├── relatedNeighborhood_test_cpp__h.query │ │ │ │ ├── relatedNeighborhood_test_cpp__h__i_.decl.out │ │ │ │ ├── relatedNeighborhood_test_cpp__h__i_.decl.query │ │ │ │ ├── relatedNeighborhood_test_cpp__h_i_.decl.out │ │ │ │ ├── relatedNeighborhood_test_cpp__h_i_.decl.query │ │ │ │ ├── relatedNeighborhood_test_cpp__h_s_.decl.out │ │ │ │ ├── relatedNeighborhood_test_cpp__h_s_.decl.query │ │ │ │ ├── relatedNeighborhood_test_cpp__h_t_.decl.out │ │ │ │ ├── relatedNeighborhood_test_cpp__h_t_.decl.query │ │ │ │ ├── relatedNeighborhood_test_cpp__maybe.out │ │ │ │ ├── relatedNeighborhood_test_cpp__maybe.query │ │ │ │ ├── relatedNeighborhood_test_cpp__maybe_Nothing.out │ │ │ │ ├── relatedNeighborhood_test_cpp__maybe_Nothing.query │ │ │ │ ├── relatedNeighborhood_test_cpp__maybe_Nothing_.ctor.out │ │ │ │ ├── relatedNeighborhood_test_cpp__maybe_Nothing_.ctor.query │ │ │ │ ├── relatedNeighborhood_test_cpp__maybe_Nothing_.ctor__.decl.out │ │ │ │ ├── relatedNeighborhood_test_cpp__maybe_Nothing_.ctor__.decl.query │ │ │ │ ├── relatedNeighborhood_test_cpp__maybe_Nothing__secret.out │ │ │ │ ├── relatedNeighborhood_test_cpp__maybe_Nothing__secret.query │ │ │ │ ├── relatedNeighborhood_test_cpp__maybe_Nothing__secret__magic.out │ │ │ │ ├── relatedNeighborhood_test_cpp__maybe_Nothing__secret__magic.query │ │ │ │ ├── relatedNeighborhood_test_cpp__maybe_nothing_.decl.out │ │ │ │ ├── relatedNeighborhood_test_cpp__maybe_nothing_.decl.query │ │ │ │ ├── resolveSymbol.out │ │ │ │ ├── resolveSymbol.query │ │ │ │ ├── resolveSymbolRange.out │ │ │ │ ├── resolveSymbolRange.query │ │ │ │ ├── resolveSymbolRange_Nothing.out │ │ │ │ ├── resolveSymbolRange_Nothing.query │ │ │ │ ├── resolveSymbolRange_Nothing_ctor.out │ │ │ │ ├── resolveSymbolRange_Nothing_ctor.query │ │ │ │ ├── resolveSymbolRange_Nothing_ctor_decl.out │ │ │ │ ├── resolveSymbolRange_Nothing_ctor_decl.query │ │ │ │ ├── resolveSymbolRange_Nothing_nothing_decl.out │ │ │ │ ├── resolveSymbolRange_Nothing_nothing_decl.query │ │ │ │ ├── resolveSymbolRange_Nothing_secret.out │ │ │ │ ├── resolveSymbolRange_Nothing_secret.query │ │ │ │ ├── resolveSymbolRange_Nothing_secret_decl.out │ │ │ │ ├── resolveSymbolRange_Nothing_secret_decl.query │ │ │ │ ├── resolveSymbolRange_S.out │ │ │ │ ├── resolveSymbolRange_S.query │ │ │ │ ├── resolveSymbolRange_T.out │ │ │ │ ├── resolveSymbolRange_T.query │ │ │ │ ├── resolveSymbolRange_bar.out │ │ │ │ ├── resolveSymbolRange_bar.query │ │ │ │ ├── resolveSymbolRange_f.out │ │ │ │ ├── resolveSymbolRange_f.query │ │ │ │ ├── resolveSymbolRange_foo_foo.out │ │ │ │ ├── resolveSymbolRange_foo_foo.query │ │ │ │ ├── resolveSymbolRange_local_i.out │ │ │ │ ├── resolveSymbolRange_local_i.query │ │ │ │ ├── resolveSymbolRange_local_ns.out │ │ │ │ ├── resolveSymbolRange_local_ns.query │ │ │ │ ├── resolveSymbol_S.out │ │ │ │ ├── resolveSymbol_S.query │ │ │ │ ├── resolveSymbol_T.out │ │ │ │ ├── resolveSymbol_T.query │ │ │ │ ├── resolveSymbol_bar.out │ │ │ │ ├── resolveSymbol_bar.query │ │ │ │ ├── resolveSymbol_enum_class_global.out │ │ │ │ ├── resolveSymbol_enum_class_global.query │ │ │ │ ├── resolveSymbol_enum_global.out │ │ │ │ ├── resolveSymbol_enum_global.query │ │ │ │ ├── resolveSymbol_f.out │ │ │ │ ├── resolveSymbol_f.query │ │ │ │ ├── resolveSymbol_foo.out │ │ │ │ ├── resolveSymbol_foo.query │ │ │ │ ├── resolveSymbol_foo_foo.out │ │ │ │ ├── resolveSymbol_foo_foo.query │ │ │ │ ├── resolveSymbol_namespace_baz.out │ │ │ │ ├── resolveSymbol_namespace_baz.query │ │ │ │ ├── resolveSymbol_namespace_struct.out │ │ │ │ ├── resolveSymbol_namespace_struct.query │ │ │ │ ├── resolveSymbol_namespace_struct_enum.out │ │ │ │ ├── resolveSymbol_namespace_struct_enum.query │ │ │ │ ├── resolveSymbol_namespace_struct_enum_field.out │ │ │ │ ├── resolveSymbol_namespace_struct_enum_field.query │ │ │ │ ├── resolveSymbol_namespace_struct_enumclass_field.out │ │ │ │ ├── resolveSymbol_namespace_struct_enumclass_field.query │ │ │ │ ├── searchRelated_namespace_foo_bar.out │ │ │ │ ├── searchRelated_namespace_foo_bar.query │ │ │ │ ├── searchRelated_namespace_foo_bar_detailed.out │ │ │ │ ├── searchRelated_namespace_foo_bar_detailed.query │ │ │ │ ├── searchRelated_namespace_foo_bar_parent.out │ │ │ │ ├── searchRelated_namespace_foo_bar_parent.query │ │ │ │ ├── searchRelated_namespace_foo_bar_parent_detailed.out │ │ │ │ ├── searchRelated_namespace_foo_bar_parent_detailed.query │ │ │ │ ├── searchRelated_record_defn.out │ │ │ │ ├── searchRelated_record_defn.query │ │ │ │ ├── searchRelated_record_defn_child.out │ │ │ │ ├── searchRelated_record_defn_child.query │ │ │ │ ├── searchScope.out │ │ │ │ ├── searchScope.query │ │ │ │ ├── searchScope_insensitive.out │ │ │ │ ├── searchScope_insensitive.query │ │ │ │ ├── searchScope_name.out │ │ │ │ ├── searchScope_name.query │ │ │ │ ├── searchScope_name_insensitive.out │ │ │ │ ├── searchScope_name_insensitive.query │ │ │ │ ├── searchScope_scope.out │ │ │ │ ├── searchScope_scope.query │ │ │ │ ├── searchScope_scope_full_ignorecase.out │ │ │ │ ├── searchScope_scope_full_ignorecase.query │ │ │ │ ├── searchScope_scope_ignorecase.out │ │ │ │ ├── searchScope_scope_ignorecase.query │ │ │ │ ├── searchSymbol.out │ │ │ │ ├── searchSymbol.query │ │ │ │ ├── searchSymbol_describe.out │ │ │ │ ├── searchSymbol_describe.query │ │ │ │ ├── searchSymbol_enum.out │ │ │ │ ├── searchSymbol_enum.query │ │ │ │ ├── searchSymbol_exact_lang_kind.out │ │ │ │ ├── searchSymbol_exact_lang_kind.query │ │ │ │ ├── searchSymbol_fun.out │ │ │ │ ├── searchSymbol_fun.query │ │ │ │ ├── searchSymbol_ignorecase.out │ │ │ │ ├── searchSymbol_ignorecase.query │ │ │ │ ├── searchSymbol_kind_class.out │ │ │ │ ├── searchSymbol_kind_class.query │ │ │ │ ├── searchSymbol_kind_class_describe.out │ │ │ │ ├── searchSymbol_kind_class_describe.query │ │ │ │ ├── searchSymbol_kind_class_ignorecase.out │ │ │ │ ├── searchSymbol_kind_class_ignorecase.query │ │ │ │ ├── searchSymbol_lang_wild.out │ │ │ │ ├── searchSymbol_lang_wild.query │ │ │ │ ├── searchSymbol_lang_wild_describe.out │ │ │ │ ├── searchSymbol_lang_wild_describe.query │ │ │ │ ├── searchSymbol_lang_wild_ignorecase.out │ │ │ │ ├── searchSymbol_lang_wild_ignorecase.query │ │ │ │ ├── searchSymbol_not_class_kind.out │ │ │ │ ├── searchSymbol_not_class_kind.query │ │ │ │ ├── searchSymbol_not_class_kind_describe.out │ │ │ │ ├── searchSymbol_not_class_kind_describe.query │ │ │ │ ├── searchSymbol_not_class_kind_ignorecase.out │ │ │ │ ├── searchSymbol_not_class_kind_ignorecase.query │ │ │ │ ├── searchSymbol_not_lang.out │ │ │ │ ├── searchSymbol_not_lang.query │ │ │ │ ├── searchSymbol_ns.out │ │ │ │ ├── searchSymbol_ns.query │ │ │ │ ├── searchSymbol_prefix_empty_name.out │ │ │ │ ├── searchSymbol_prefix_empty_name.query │ │ │ │ ├── searchSymbol_prefix_empty_name_describe.out │ │ │ │ ├── searchSymbol_prefix_empty_name_describe.query │ │ │ │ ├── searchSymbol_prefix_empty_name_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_empty_name_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_all.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_all.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_all_describe.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_all_describe.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_all_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_all_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_enum.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_enum.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_enum_describe.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_enum_describe.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_enum_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_enum_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_function.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_function.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_function_describe.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_function_describe.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_function_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_function_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_method.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_method.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_method_describe.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_method_describe.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_method_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_method_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_not_all.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_not_all.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_not_all_describe.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_not_all_describe.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_not_all_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_not_all_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_part.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_part.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_part_describe.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_part_describe.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_part_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_part_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_partial_not.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_partial_not.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_partial_not_describe.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_partial_not_describe.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_partial_not_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_partial_not_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_type.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_type.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_type_describe.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_type_describe.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_type_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_type_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_exact_kind_class_describe.out │ │ │ │ ├── searchSymbol_prefix_exact_kind_class_describe.query │ │ │ │ ├── searchSymbol_prefix_exact_kind_class_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_exact_kind_class_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_one_char_multilang.out │ │ │ │ ├── searchSymbol_prefix_one_char_multilang.query │ │ │ │ ├── searchSymbol_prefix_one_char_name.out │ │ │ │ ├── searchSymbol_prefix_one_char_name.query │ │ │ │ ├── searchSymbol_prefix_one_char_name_describe.out │ │ │ │ ├── searchSymbol_prefix_one_char_name_describe.query │ │ │ │ ├── searchSymbol_prefix_one_char_name_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_one_char_name_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_one_char_name_kind.out │ │ │ │ ├── searchSymbol_prefix_one_char_name_kind.query │ │ │ │ ├── searchSymbol_prefix_one_char_name_kind_describe.out │ │ │ │ ├── searchSymbol_prefix_one_char_name_kind_describe.query │ │ │ │ ├── searchSymbol_prefix_one_char_name_kind_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_one_char_name_kind_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_partial_name.out │ │ │ │ ├── searchSymbol_prefix_partial_name.query │ │ │ │ ├── searchSymbol_prefix_partial_name_describe.out │ │ │ │ ├── searchSymbol_prefix_partial_name_describe.query │ │ │ │ ├── searchSymbol_prefix_partial_name_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_partial_name_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_partial_name_kind.out │ │ │ │ ├── searchSymbol_prefix_partial_name_kind.query │ │ │ │ ├── searchSymbol_prefix_partial_name_kind_describe.out │ │ │ │ ├── searchSymbol_prefix_partial_name_kind_describe.query │ │ │ │ ├── searchSymbol_prefix_partial_name_kind_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_partial_name_kind_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_partial_name_not_kind.out │ │ │ │ ├── searchSymbol_prefix_partial_name_not_kind.query │ │ │ │ ├── searchSymbol_prefix_partial_name_not_kind_describe.out │ │ │ │ ├── searchSymbol_prefix_partial_name_not_kind_describe.query │ │ │ │ ├── searchSymbol_prefix_partial_name_not_kind_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_partial_name_not_kind_ignorecase.query │ │ │ │ ├── searchSymbol_scope_ns.out │ │ │ │ ├── searchSymbol_scope_ns.query │ │ │ │ ├── searchSymbol_scope_ns_root.out │ │ │ │ ├── searchSymbol_scope_ns_root.query │ │ │ │ ├── searchSymbol_struct.out │ │ │ │ ├── searchSymbol_struct.query │ │ │ │ ├── validateSymbolIds_1.out │ │ │ │ └── validateSymbolIds_1.query │ │ │ │ ├── flow │ │ │ │ ├── describeSymbol.out │ │ │ │ ├── describeSymbol.query │ │ │ │ ├── describeSymbol_1.out │ │ │ │ ├── describeSymbol_1.query │ │ │ │ ├── describeSymbol_10.out │ │ │ │ ├── describeSymbol_10.query │ │ │ │ ├── describeSymbol_11.out │ │ │ │ ├── describeSymbol_11.query │ │ │ │ ├── describeSymbol_12.out │ │ │ │ ├── describeSymbol_12.query │ │ │ │ ├── describeSymbol_13.out │ │ │ │ ├── describeSymbol_13.query │ │ │ │ ├── describeSymbol_14.out │ │ │ │ ├── describeSymbol_14.query │ │ │ │ ├── describeSymbol_2.out │ │ │ │ ├── describeSymbol_2.query │ │ │ │ ├── describeSymbol_3.out │ │ │ │ ├── describeSymbol_3.query │ │ │ │ ├── describeSymbol_4.out │ │ │ │ ├── describeSymbol_4.query │ │ │ │ ├── describeSymbol_5.out │ │ │ │ ├── describeSymbol_5.query │ │ │ │ ├── describeSymbol_7.out │ │ │ │ ├── describeSymbol_7.query │ │ │ │ ├── describeSymbol_9.out │ │ │ │ ├── describeSymbol_9.query │ │ │ │ ├── describeSymbol_child.out │ │ │ │ ├── describeSymbol_child.query │ │ │ │ ├── describeSymbol_module.out │ │ │ │ ├── describeSymbol_module.query │ │ │ │ ├── documentSymbolIndex.out │ │ │ │ ├── documentSymbolIndex.query │ │ │ │ ├── documentSymbolListX.out │ │ │ │ ├── documentSymbolListX.query │ │ │ │ ├── findReferenceRanges.out │ │ │ │ ├── findReferenceRanges.query │ │ │ │ ├── findReferenceRanges_1.out │ │ │ │ ├── findReferenceRanges_1.query │ │ │ │ ├── findReferenceRanges_2.out │ │ │ │ ├── findReferenceRanges_2.query │ │ │ │ ├── findReferenceRanges_3.out │ │ │ │ ├── findReferenceRanges_3.query │ │ │ │ ├── findReferenceRanges_4.out │ │ │ │ ├── findReferenceRanges_4.query │ │ │ │ ├── findReferenceRanges_5.out │ │ │ │ ├── findReferenceRanges_5.query │ │ │ │ ├── findReferenceRanges_6.out │ │ │ │ ├── findReferenceRanges_6.query │ │ │ │ ├── findReferenceRanges_7.out │ │ │ │ ├── findReferenceRanges_7.query │ │ │ │ ├── findReferences.out │ │ │ │ ├── findReferences.query │ │ │ │ ├── relatedNeighborhood_child.out │ │ │ │ ├── relatedNeighborhood_child.query │ │ │ │ ├── relatedNeighborhood_modules.out │ │ │ │ ├── resolveSymbol.out │ │ │ │ ├── resolveSymbol.query │ │ │ │ ├── resolveSymbolRange.out │ │ │ │ ├── resolveSymbolRange.query │ │ │ │ ├── resolveSymbol_module.out │ │ │ │ ├── resolveSymbol_module.query │ │ │ │ ├── resolveSymbol_module_member.out │ │ │ │ ├── resolveSymbol_module_member.query │ │ │ │ ├── resolveSymbol_subdir.out │ │ │ │ ├── resolveSymbol_subdir.query │ │ │ │ ├── resolveSymbol_subdir_path.out │ │ │ │ ├── resolveSymbol_subdir_path.query │ │ │ │ ├── searchRelated_module_child.out │ │ │ │ ├── searchRelated_module_child.query │ │ │ │ ├── searchRelated_module_parent.out │ │ │ │ ├── searchRelated_module_parent.query │ │ │ │ ├── searchSymbol.out │ │ │ │ ├── searchSymbol.query │ │ │ │ ├── searchSymbol_describe.out │ │ │ │ ├── searchSymbol_describe.query │ │ │ │ ├── searchSymbol_exact_lang_kind.out │ │ │ │ ├── searchSymbol_exact_lang_kind.query │ │ │ │ ├── searchSymbol_ignorecase.out │ │ │ │ ├── searchSymbol_ignorecase.query │ │ │ │ ├── searchSymbol_kind_class.out │ │ │ │ ├── searchSymbol_kind_class.query │ │ │ │ ├── searchSymbol_kind_class_describe.out │ │ │ │ ├── searchSymbol_kind_class_describe.query │ │ │ │ ├── searchSymbol_kind_class_ignorecase.out │ │ │ │ ├── searchSymbol_kind_class_ignorecase.query │ │ │ │ ├── searchSymbol_lang_wild.out │ │ │ │ ├── searchSymbol_lang_wild.query │ │ │ │ ├── searchSymbol_lang_wild_describe.out │ │ │ │ ├── searchSymbol_lang_wild_describe.query │ │ │ │ ├── searchSymbol_lang_wild_ignorecase.out │ │ │ │ ├── searchSymbol_lang_wild_ignorecase.query │ │ │ │ ├── searchSymbol_module_string.out │ │ │ │ ├── searchSymbol_module_string.query │ │ │ │ ├── searchSymbol_not_class_kind.out │ │ │ │ ├── searchSymbol_not_class_kind.query │ │ │ │ ├── searchSymbol_not_class_kind_describe.out │ │ │ │ ├── searchSymbol_not_class_kind_describe.query │ │ │ │ ├── searchSymbol_not_class_kind_ignorecase.out │ │ │ │ ├── searchSymbol_not_class_kind_ignorecase.query │ │ │ │ ├── searchSymbol_not_lang.out │ │ │ │ ├── searchSymbol_not_lang.query │ │ │ │ ├── searchSymbol_prefix_empty_name.out │ │ │ │ ├── searchSymbol_prefix_empty_name.query │ │ │ │ ├── searchSymbol_prefix_empty_name_describe.out │ │ │ │ ├── searchSymbol_prefix_empty_name_describe.query │ │ │ │ ├── searchSymbol_prefix_empty_name_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_empty_name_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_all.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_all.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_all_describe.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_all_describe.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_all_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_all_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_enum.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_enum.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_enum_describe.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_enum_describe.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_enum_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_enum_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_function.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_function.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_function_describe.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_function_describe.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_function_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_function_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_method.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_method.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_method_describe.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_method_describe.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_method_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_method_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_not_all.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_not_all.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_not_all_describe.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_not_all_describe.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_not_all_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_not_all_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_part.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_part.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_part_describe.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_part_describe.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_part_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_part_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_partial_not.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_partial_not.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_partial_not_describe.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_partial_not_describe.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_partial_not_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_partial_not_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_type.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_type.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_type_describe.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_type_describe.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_type_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_type_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_exact_kind_class_describe.out │ │ │ │ ├── searchSymbol_prefix_exact_kind_class_describe.query │ │ │ │ ├── searchSymbol_prefix_exact_kind_class_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_exact_kind_class_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_one_char_multilang.out │ │ │ │ ├── searchSymbol_prefix_one_char_multilang.query │ │ │ │ ├── searchSymbol_prefix_one_char_name.out │ │ │ │ ├── searchSymbol_prefix_one_char_name.query │ │ │ │ ├── searchSymbol_prefix_one_char_name_describe.out │ │ │ │ ├── searchSymbol_prefix_one_char_name_describe.query │ │ │ │ ├── searchSymbol_prefix_one_char_name_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_one_char_name_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_one_char_name_kind.out │ │ │ │ ├── searchSymbol_prefix_one_char_name_kind.query │ │ │ │ ├── searchSymbol_prefix_one_char_name_kind_describe.out │ │ │ │ ├── searchSymbol_prefix_one_char_name_kind_describe.query │ │ │ │ ├── searchSymbol_prefix_one_char_name_kind_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_one_char_name_kind_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_partial_name.out │ │ │ │ ├── searchSymbol_prefix_partial_name.query │ │ │ │ ├── searchSymbol_prefix_partial_name_describe.out │ │ │ │ ├── searchSymbol_prefix_partial_name_describe.query │ │ │ │ ├── searchSymbol_prefix_partial_name_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_partial_name_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_partial_name_kind.out │ │ │ │ ├── searchSymbol_prefix_partial_name_kind.query │ │ │ │ ├── searchSymbol_prefix_partial_name_kind_describe.out │ │ │ │ ├── searchSymbol_prefix_partial_name_kind_describe.query │ │ │ │ ├── searchSymbol_prefix_partial_name_kind_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_partial_name_kind_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_partial_name_not_kind.out │ │ │ │ ├── searchSymbol_prefix_partial_name_not_kind.query │ │ │ │ ├── searchSymbol_prefix_partial_name_not_kind_describe.out │ │ │ │ ├── searchSymbol_prefix_partial_name_not_kind_describe.query │ │ │ │ ├── searchSymbol_prefix_partial_name_not_kind_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_partial_name_not_kind_ignorecase.query │ │ │ │ ├── searchSymbol_scope_all_fn.out │ │ │ │ ├── searchSymbol_scope_all_fn.query │ │ │ │ ├── searchSymbol_scope_all_fn_case.out │ │ │ │ ├── searchSymbol_scope_all_fn_case.query │ │ │ │ ├── symbolLocation_module.out │ │ │ │ ├── symbolLocation_module.query │ │ │ │ ├── symbolLocation_module_2.out │ │ │ │ ├── symbolLocation_module_2.query │ │ │ │ ├── symbolLocation_module_3.out │ │ │ │ ├── symbolLocation_module_3.query │ │ │ │ ├── symbolLocation_module_4.out │ │ │ │ └── symbolLocation_module_4.query │ │ │ │ ├── go │ │ │ │ ├── documentSymbolIndex.out │ │ │ │ ├── documentSymbolIndex.query │ │ │ │ ├── documentSymbolListX.out │ │ │ │ └── documentSymbolListX.query │ │ │ │ ├── hack-xlang │ │ │ │ ├── documentSymbolIndex.out │ │ │ │ ├── documentSymbolIndex.query │ │ │ │ ├── documentSymbolListX.out │ │ │ │ ├── documentSymbolListX.query │ │ │ │ ├── findReferences-field.out │ │ │ │ ├── findReferences-field.query │ │ │ │ ├── findReferences-fun.out │ │ │ │ ├── findReferences-fun.query │ │ │ │ ├── findReferences-type.out │ │ │ │ ├── findReferences-type.query │ │ │ │ ├── searchRelatedGenerate.out │ │ │ │ └── searchRelatedGenerate.query │ │ │ │ ├── hack │ │ │ │ ├── callees_bazza.out │ │ │ │ ├── callees_bazza.query │ │ │ │ ├── callers_bazza.out │ │ │ │ ├── callers_bazza.query │ │ │ │ ├── describeSymbol.out │ │ │ │ ├── describeSymbol.query │ │ │ │ ├── describeSymbol_class_docs.out │ │ │ │ ├── describeSymbol_class_docs.query │ │ │ │ ├── describeSymbol_context.out │ │ │ │ ├── describeSymbol_context.query │ │ │ │ ├── describeSymbol_module_internal.out │ │ │ │ ├── describeSymbol_module_internal.query │ │ │ │ ├── describeSymbol_module_internal_class.out │ │ │ │ ├── describeSymbol_module_internal_class.query │ │ │ │ ├── describeSymbol_module_internal_enumclass.out │ │ │ │ ├── describeSymbol_module_internal_enumclass.query │ │ │ │ ├── describeSymbol_module_internal_interface.out │ │ │ │ ├── describeSymbol_module_internal_interface.query │ │ │ │ ├── describeSymbol_module_internal_trait.out │ │ │ │ ├── describeSymbol_module_internal_trait.query │ │ │ │ ├── describeSymbol_module_internal_ty.out │ │ │ │ ├── describeSymbol_module_internal_ty.query │ │ │ │ ├── documentSymbolIndex.out │ │ │ │ ├── documentSymbolIndex.query │ │ │ │ ├── documentSymbolIndex_ns.out │ │ │ │ ├── documentSymbolIndex_ns.query │ │ │ │ ├── documentSymbolListX.out │ │ │ │ ├── documentSymbolListX.query │ │ │ │ ├── feelingLucky.out │ │ │ │ ├── feelingLucky.query │ │ │ │ ├── feelingLucky_class.out │ │ │ │ ├── feelingLucky_class.query │ │ │ │ ├── feelingLucky_class_prefix.out │ │ │ │ ├── feelingLucky_class_prefix.query │ │ │ │ ├── feelingLucky_module.out │ │ │ │ ├── feelingLucky_module.query │ │ │ │ ├── feelingLucky_namespace.out │ │ │ │ ├── feelingLucky_namespace.query │ │ │ │ ├── feelingLucky_namespace_prefix_case.out │ │ │ │ ├── feelingLucky_namespace_prefix_case.query │ │ │ │ ├── feelingLucky_namespace_trailing.out │ │ │ │ ├── feelingLucky_namespace_trailing.query │ │ │ │ ├── findReferenceRanges.out │ │ │ │ ├── findReferenceRanges.query │ │ │ │ ├── inheritedFeelingLucky.out │ │ │ │ ├── inheritedFeelingLucky.query │ │ │ │ ├── relatedNeighborhood.out │ │ │ │ ├── relatedNeighborhood.query │ │ │ │ ├── relatedNeighborhood_test_php_FancyTypes.out │ │ │ │ ├── relatedNeighborhood_test_php_FancyTypes.query │ │ │ │ ├── relatedNeighborhood_test_php_Jet.out │ │ │ │ ├── relatedNeighborhood_test_php_Jet.query │ │ │ │ ├── relatedNeighborhood_test_php_Plane.out │ │ │ │ ├── relatedNeighborhood_test_php_Plane.query │ │ │ │ ├── relatedNeighborhood_test_php_Position.out │ │ │ │ ├── relatedNeighborhood_test_php_Position.query │ │ │ │ ├── relatedNeighborhood_test_php_Position_Center.out │ │ │ │ ├── relatedNeighborhood_test_php_Position_Center.query │ │ │ │ ├── relatedNeighborhood_test_php_Position_Right.out │ │ │ │ ├── relatedNeighborhood_test_php_Position_Right.query │ │ │ │ ├── relatedNeighborhood_test_php_RefClass.out │ │ │ │ ├── relatedNeighborhood_test_php_RefClass.query │ │ │ │ ├── relatedNeighborhood_test_php_RefClass_JAZZ.out │ │ │ │ ├── relatedNeighborhood_test_php_RefClass_JAZZ.query │ │ │ │ ├── relatedNeighborhood_test_php_RefClass_bar.out │ │ │ │ ├── relatedNeighborhood_test_php_RefClass_bar.query │ │ │ │ ├── relatedNeighborhood_test_php_RefClass_bazza.out │ │ │ │ ├── relatedNeighborhood_test_php_RefClass_bazza.query │ │ │ │ ├── relatedNeighborhood_test_php_RefClass_foo.out │ │ │ │ ├── relatedNeighborhood_test_php_RefClass_foo.query │ │ │ │ ├── relatedNeighborhood_test_php_RefClass_raz.out │ │ │ │ ├── relatedNeighborhood_test_php_RefClass_raz.query │ │ │ │ ├── relatedNeighborhood_test_php_SourceClass.out │ │ │ │ ├── relatedNeighborhood_test_php_SourceClass.query │ │ │ │ ├── relatedNeighborhood_test_php_SourceClass_BAZ.out │ │ │ │ ├── relatedNeighborhood_test_php_SourceClass_BAZ.query │ │ │ │ ├── relatedNeighborhood_test_php_SourceClass_T.out │ │ │ │ ├── relatedNeighborhood_test_php_SourceClass_T.query │ │ │ │ ├── relatedNeighborhood_test_php_SourceClass_daz.out │ │ │ │ ├── relatedNeighborhood_test_php_SourceClass_daz.query │ │ │ │ ├── relatedNeighborhood_test_php_SourceInterface.out │ │ │ │ ├── relatedNeighborhood_test_php_SourceInterface.query │ │ │ │ ├── relatedNeighborhood_test_php_SourceTrait.out │ │ │ │ ├── relatedNeighborhood_test_php_SourceTrait.query │ │ │ │ ├── relatedNeighborhood_test_php_SourceTrait_quux.out │ │ │ │ ├── relatedNeighborhood_test_php_SourceTrait_quux.query │ │ │ │ ├── relatedNeighborhood_test_php_SubClass.out │ │ │ │ ├── relatedNeighborhood_test_php_SubClass.query │ │ │ │ ├── relatedNeighborhood_test_php_SuperClass_superAdd.out │ │ │ │ ├── relatedNeighborhood_test_php_SuperClass_superAdd.query │ │ │ │ ├── relatedNeighborhood_test_php_WALDO.out │ │ │ │ ├── relatedNeighborhood_test_php_WALDO.query │ │ │ │ ├── relatedNeighborhood_test_php_corge.out │ │ │ │ ├── relatedNeighborhood_test_php_corge.query │ │ │ │ ├── resolveSymbol.out │ │ │ │ ├── resolveSymbol.query │ │ │ │ ├── resolveSymbolRange.out │ │ │ │ ├── resolveSymbolRange.query │ │ │ │ ├── resolveSymbols_1.out │ │ │ │ ├── resolveSymbols_1.query │ │ │ │ ├── searchRelated_class_inherited_by.out │ │ │ │ ├── searchRelated_class_inherited_by.query │ │ │ │ ├── searchRelated_class_inherited_by_rec.out │ │ │ │ ├── searchRelated_class_inherited_by_rec.query │ │ │ │ ├── searchRelated_class_inherits.out │ │ │ │ ├── searchRelated_class_inherits.query │ │ │ │ ├── searchRelated_class_inherits_rec.out │ │ │ │ ├── searchRelated_class_inherits_rec.query │ │ │ │ ├── searchRelated_namespace_RefClass.out │ │ │ │ ├── searchRelated_namespace_RefClass.query │ │ │ │ ├── searchRelated_namespace_RefClass_rec.out │ │ │ │ ├── searchRelated_namespace_RefClass_rec.query │ │ │ │ ├── searchRelated_namespace_parent.out │ │ │ │ ├── searchRelated_namespace_parent.query │ │ │ │ ├── searchRelated_namespace_parent_rec.out │ │ │ │ ├── searchRelated_namespace_parent_rec.query │ │ │ │ ├── searchRelated_require_class.out │ │ │ │ ├── searchRelated_require_class.query │ │ │ │ ├── searchRelated_require_extends.out │ │ │ │ ├── searchRelated_require_extends.query │ │ │ │ ├── searchRelated_require_implements.out │ │ │ │ ├── searchRelated_require_implements.query │ │ │ │ ├── searchSymbol.out │ │ │ │ ├── searchSymbol.query │ │ │ │ ├── searchSymbol_describe.out │ │ │ │ ├── searchSymbol_describe.query │ │ │ │ ├── searchSymbol_exact_lang_kind.out │ │ │ │ ├── searchSymbol_exact_lang_kind.query │ │ │ │ ├── searchSymbol_ignorecase.out │ │ │ │ ├── searchSymbol_ignorecase.query │ │ │ │ ├── searchSymbol_kind_class.out │ │ │ │ ├── searchSymbol_kind_class.query │ │ │ │ ├── searchSymbol_kind_class_describe.out │ │ │ │ ├── searchSymbol_kind_class_describe.query │ │ │ │ ├── searchSymbol_kind_class_ignorecase.out │ │ │ │ ├── searchSymbol_kind_class_ignorecase.query │ │ │ │ ├── searchSymbol_lang_wild.out │ │ │ │ ├── searchSymbol_lang_wild.query │ │ │ │ ├── searchSymbol_lang_wild_describe.out │ │ │ │ ├── searchSymbol_lang_wild_describe.query │ │ │ │ ├── searchSymbol_lang_wild_ignorecase.out │ │ │ │ ├── searchSymbol_lang_wild_ignorecase.query │ │ │ │ ├── searchSymbol_module_scope.out │ │ │ │ ├── searchSymbol_module_scope.query │ │ │ │ ├── searchSymbol_namespace.out │ │ │ │ ├── searchSymbol_namespace.query │ │ │ │ ├── searchSymbol_namespace_case.out │ │ │ │ ├── searchSymbol_namespace_case.query │ │ │ │ ├── searchSymbol_namespace_full_ns.out │ │ │ │ ├── searchSymbol_namespace_full_ns.query │ │ │ │ ├── searchSymbol_namespace_full_ns_prefix.out │ │ │ │ ├── searchSymbol_namespace_full_ns_prefix.query │ │ │ │ ├── searchSymbol_namespace_lc_case.out │ │ │ │ ├── searchSymbol_namespace_lc_case.query │ │ │ │ ├── searchSymbol_namespace_literal.out │ │ │ │ ├── searchSymbol_namespace_literal.query │ │ │ │ ├── searchSymbol_namespace_nested_ns.out │ │ │ │ ├── searchSymbol_namespace_nested_ns.query │ │ │ │ ├── searchSymbol_namespace_prefix.out │ │ │ │ ├── searchSymbol_namespace_prefix.query │ │ │ │ ├── searchSymbol_not_class_kind.out │ │ │ │ ├── searchSymbol_not_class_kind.query │ │ │ │ ├── searchSymbol_not_class_kind_describe.out │ │ │ │ ├── searchSymbol_not_class_kind_describe.query │ │ │ │ ├── searchSymbol_not_class_kind_ignorecase.out │ │ │ │ ├── searchSymbol_not_class_kind_ignorecase.query │ │ │ │ ├── searchSymbol_not_lang.out │ │ │ │ ├── searchSymbol_not_lang.query │ │ │ │ ├── searchSymbol_prefix_empty_name.out │ │ │ │ ├── searchSymbol_prefix_empty_name.query │ │ │ │ ├── searchSymbol_prefix_empty_name_describe.out │ │ │ │ ├── searchSymbol_prefix_empty_name_describe.query │ │ │ │ ├── searchSymbol_prefix_empty_name_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_empty_name_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_empty_name_kind_class.out │ │ │ │ ├── searchSymbol_prefix_empty_name_kind_class_describe.out │ │ │ │ ├── searchSymbol_prefix_empty_name_kind_class_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_all.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_all.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_all_describe.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_all_describe.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_all_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_all_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_enum.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_enum.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_enum_describe.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_enum_describe.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_enum_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_enum_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_function.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_function.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_function_describe.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_function_describe.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_function_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_function_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_method.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_method.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_method_describe │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_method_describe.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_method_describe.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_method_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_method_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_not_all.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_not_all.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_not_all_describe.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_not_all_describe.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_not_all_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_not_all_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_part.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_part.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_part_describe.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_part_describe.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_part_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_part_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_partial_not.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_partial_not.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_partial_not_describe.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_partial_not_describe.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_partial_not_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_partial_not_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_type.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_type.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_type_describe.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_type_describe.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_type_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_type_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_exact_kind_class │ │ │ │ ├── searchSymbol_prefix_exact_kind_class_describe.out │ │ │ │ ├── searchSymbol_prefix_exact_kind_class_describe.query │ │ │ │ ├── searchSymbol_prefix_exact_kind_class_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_exact_kind_class_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_kind_class.out │ │ │ │ ├── searchSymbol_prefix_kind_class_describe.out │ │ │ │ ├── searchSymbol_prefix_kind_class_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_one_char_multilang.out │ │ │ │ ├── searchSymbol_prefix_one_char_multilang.query │ │ │ │ ├── searchSymbol_prefix_one_char_name.out │ │ │ │ ├── searchSymbol_prefix_one_char_name.query │ │ │ │ ├── searchSymbol_prefix_one_char_name_describe.out │ │ │ │ ├── searchSymbol_prefix_one_char_name_describe.query │ │ │ │ ├── searchSymbol_prefix_one_char_name_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_one_char_name_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_one_char_name_kind.out │ │ │ │ ├── searchSymbol_prefix_one_char_name_kind.query │ │ │ │ ├── searchSymbol_prefix_one_char_name_kind_describe.out │ │ │ │ ├── searchSymbol_prefix_one_char_name_kind_describe.query │ │ │ │ ├── searchSymbol_prefix_one_char_name_kind_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_one_char_name_kind_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_partial_name.out │ │ │ │ ├── searchSymbol_prefix_partial_name.query │ │ │ │ ├── searchSymbol_prefix_partial_name_describe.out │ │ │ │ ├── searchSymbol_prefix_partial_name_describe.query │ │ │ │ ├── searchSymbol_prefix_partial_name_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_partial_name_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_partial_name_kind.out │ │ │ │ ├── searchSymbol_prefix_partial_name_kind.query │ │ │ │ ├── searchSymbol_prefix_partial_name_kind_describe.out │ │ │ │ ├── searchSymbol_prefix_partial_name_kind_describe.query │ │ │ │ ├── searchSymbol_prefix_partial_name_kind_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_partial_name_kind_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_partial_name_not_kind.out │ │ │ │ ├── searchSymbol_prefix_partial_name_not_kind.query │ │ │ │ ├── searchSymbol_prefix_partial_name_not_kind_describe.out │ │ │ │ ├── searchSymbol_prefix_partial_name_not_kind_describe.query │ │ │ │ ├── searchSymbol_prefix_partial_name_not_kind_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_partial_name_not_kind_ignorecase.query │ │ │ │ ├── searchSymbol_trim.out │ │ │ │ └── searchSymbol_trim.query │ │ │ │ ├── haskell │ │ │ │ ├── describeSymbol_1.out │ │ │ │ ├── describeSymbol_1.query │ │ │ │ ├── describeSymbol_2.out │ │ │ │ ├── describeSymbol_2.query │ │ │ │ ├── describeSymbol_3.out │ │ │ │ ├── describeSymbol_3.query │ │ │ │ ├── describeSymbol_4.out │ │ │ │ ├── describeSymbol_4.query │ │ │ │ ├── describeSymbol_5.out │ │ │ │ ├── describeSymbol_5.query │ │ │ │ ├── describeSymbol_6.out │ │ │ │ ├── describeSymbol_6.query │ │ │ │ ├── describeSymbol_7.out │ │ │ │ ├── describeSymbol_7.query │ │ │ │ ├── describeSymbol_8.out │ │ │ │ ├── describeSymbol_8.query │ │ │ │ ├── describeSymbol_9.out │ │ │ │ ├── describeSymbol_9.query │ │ │ │ ├── documentSymbolIndex.out │ │ │ │ ├── documentSymbolIndex.query │ │ │ │ ├── documentSymbolListX.out │ │ │ │ ├── documentSymbolListX.query │ │ │ │ ├── findReferenceRanges_1.out │ │ │ │ ├── findReferenceRanges_1.query │ │ │ │ ├── findReferenceRanges_2.out │ │ │ │ ├── findReferenceRanges_2.query │ │ │ │ ├── findReferenceRanges_3.out │ │ │ │ ├── findReferenceRanges_3.query │ │ │ │ ├── findReferenceRanges_4.out │ │ │ │ ├── findReferenceRanges_4.query │ │ │ │ ├── findReferenceRanges_5.out │ │ │ │ ├── findReferenceRanges_5.query │ │ │ │ ├── findReferenceRanges_6.out │ │ │ │ ├── findReferenceRanges_6.query │ │ │ │ ├── findReferenceRanges_7.out │ │ │ │ ├── findReferenceRanges_7.query │ │ │ │ ├── findReferenceRanges_8.out │ │ │ │ ├── findReferenceRanges_8.query │ │ │ │ ├── findReferenceRanges_9.out │ │ │ │ └── findReferenceRanges_9.query │ │ │ │ ├── java-lsif │ │ │ │ ├── describeSymbol.out │ │ │ │ ├── describeSymbol.query │ │ │ │ ├── documentSymbolIndex.out │ │ │ │ ├── documentSymbolIndex.query │ │ │ │ ├── documentSymbolListX.out │ │ │ │ ├── documentSymbolListX.query │ │ │ │ ├── findReferences.out │ │ │ │ └── findReferences.query │ │ │ │ ├── python-pyrefly │ │ │ │ ├── describeSymbol.out │ │ │ │ ├── describeSymbol.query │ │ │ │ ├── describeSymbol_all_fn.out │ │ │ │ ├── describeSymbol_all_fn.query │ │ │ │ ├── describeSymbol_as_fn.out │ │ │ │ ├── describeSymbol_as_fn.query │ │ │ │ ├── describeSymbol_attr.out │ │ │ │ ├── describeSymbol_attr.query │ │ │ │ ├── describeSymbol_comment.out │ │ │ │ ├── describeSymbol_comment.query │ │ │ │ ├── documentSymbolIndex.out │ │ │ │ ├── documentSymbolIndex.query │ │ │ │ ├── documentSymbolListX.out │ │ │ │ ├── documentSymbolListX.query │ │ │ │ ├── findReferenceRanges.out │ │ │ │ ├── findReferenceRanges.query │ │ │ │ ├── findReferenceRanges_big_lib_func.out │ │ │ │ ├── findReferenceRanges_big_lib_func.query │ │ │ │ ├── findReferences.out │ │ │ │ ├── findReferences.query │ │ │ │ ├── relatedNeighborhood.out │ │ │ │ ├── relatedNeighborhood.query │ │ │ │ ├── resolveSymbol.out │ │ │ │ ├── resolveSymbol.query │ │ │ │ ├── resolveSymbolRange.out │ │ │ │ ├── resolveSymbolRange.query │ │ │ │ ├── searchSymbol.out │ │ │ │ ├── searchSymbol.query │ │ │ │ ├── searchSymbol_describe.out │ │ │ │ ├── searchSymbol_describe.query │ │ │ │ ├── searchSymbol_exact_lang_kind.out │ │ │ │ ├── searchSymbol_exact_lang_kind.query │ │ │ │ ├── searchSymbol_ignorecase.out │ │ │ │ ├── searchSymbol_ignorecase.query │ │ │ │ ├── searchSymbol_kind_class.out │ │ │ │ ├── searchSymbol_kind_class.query │ │ │ │ ├── searchSymbol_kind_class_describe.out │ │ │ │ ├── searchSymbol_kind_class_describe.query │ │ │ │ ├── searchSymbol_kind_class_ignorecase.out │ │ │ │ ├── searchSymbol_kind_class_ignorecase.query │ │ │ │ ├── searchSymbol_lang_wild.out │ │ │ │ ├── searchSymbol_lang_wild.query │ │ │ │ ├── searchSymbol_lang_wild_describe.out │ │ │ │ ├── searchSymbol_lang_wild_describe.query │ │ │ │ ├── searchSymbol_lang_wild_ignorecase.out │ │ │ │ ├── searchSymbol_lang_wild_ignorecase.query │ │ │ │ ├── searchSymbol_not_class_kind.out │ │ │ │ ├── searchSymbol_not_class_kind.query │ │ │ │ ├── searchSymbol_not_class_kind_describe.out │ │ │ │ ├── searchSymbol_not_class_kind_describe.query │ │ │ │ ├── searchSymbol_not_class_kind_ignorecase.out │ │ │ │ ├── searchSymbol_not_class_kind_ignorecase.query │ │ │ │ ├── searchSymbol_not_lang.out │ │ │ │ ├── searchSymbol_not_lang.query │ │ │ │ ├── searchSymbol_prefix_empty_name.out │ │ │ │ ├── searchSymbol_prefix_empty_name.query │ │ │ │ ├── searchSymbol_prefix_empty_name_describe.out │ │ │ │ ├── searchSymbol_prefix_empty_name_describe.query │ │ │ │ ├── searchSymbol_prefix_empty_name_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_empty_name_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_all.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_all.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_all_describe.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_all_describe.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_all_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_all_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_enum.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_enum.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_enum_describe.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_enum_describe.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_enum_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_enum_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_function.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_function.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_function_describe.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_function_describe.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_function_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_function_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_method.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_method.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_method_describe.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_method_describe.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_method_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_method_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_not_all.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_not_all.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_not_all_describe.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_not_all_describe.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_not_all_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_not_all_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_part.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_part.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_part_describe.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_part_describe.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_part_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_part_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_partial_not.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_partial_not.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_partial_not_describe.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_partial_not_describe.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_partial_not_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_partial_not_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_type.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_type.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_type_describe.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_type_describe.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_type_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_type_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_exact_kind_class_describe.out │ │ │ │ ├── searchSymbol_prefix_exact_kind_class_describe.query │ │ │ │ ├── searchSymbol_prefix_exact_kind_class_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_exact_kind_class_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_one_char_multilang.out │ │ │ │ ├── searchSymbol_prefix_one_char_multilang.query │ │ │ │ ├── searchSymbol_prefix_one_char_name.out │ │ │ │ ├── searchSymbol_prefix_one_char_name.query │ │ │ │ ├── searchSymbol_prefix_one_char_name_describe.out │ │ │ │ ├── searchSymbol_prefix_one_char_name_describe.query │ │ │ │ ├── searchSymbol_prefix_one_char_name_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_one_char_name_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_one_char_name_kind.out │ │ │ │ ├── searchSymbol_prefix_one_char_name_kind.query │ │ │ │ ├── searchSymbol_prefix_one_char_name_kind_describe.out │ │ │ │ ├── searchSymbol_prefix_one_char_name_kind_describe.query │ │ │ │ ├── searchSymbol_prefix_one_char_name_kind_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_one_char_name_kind_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_partial_name.out │ │ │ │ ├── searchSymbol_prefix_partial_name.query │ │ │ │ ├── searchSymbol_prefix_partial_name_describe.out │ │ │ │ ├── searchSymbol_prefix_partial_name_describe.query │ │ │ │ ├── searchSymbol_prefix_partial_name_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_partial_name_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_partial_name_kind.out │ │ │ │ ├── searchSymbol_prefix_partial_name_kind.query │ │ │ │ ├── searchSymbol_prefix_partial_name_kind_describe.out │ │ │ │ ├── searchSymbol_prefix_partial_name_kind_describe.query │ │ │ │ ├── searchSymbol_prefix_partial_name_kind_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_partial_name_kind_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_partial_name_not_kind.out │ │ │ │ ├── searchSymbol_prefix_partial_name_not_kind.query │ │ │ │ ├── searchSymbol_prefix_partial_name_not_kind_describe.out │ │ │ │ ├── searchSymbol_prefix_partial_name_not_kind_describe.query │ │ │ │ ├── searchSymbol_prefix_partial_name_not_kind_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_partial_name_not_kind_ignorecase.query │ │ │ │ ├── searchSymbol_scope_all_fn.out │ │ │ │ ├── searchSymbol_scope_all_fn.query │ │ │ │ ├── searchSymbol_scope_all_fn_insensitive.out │ │ │ │ ├── searchSymbol_scope_all_fn_insensitive.query │ │ │ │ ├── searchSymbol_scope_all_fn_insensitive_prefix.out │ │ │ │ ├── searchSymbol_scope_all_fn_insensitive_prefix.query │ │ │ │ ├── searchSymbol_scope_all_fn_prefix.out │ │ │ │ ├── searchSymbol_scope_all_fn_prefix.query │ │ │ │ ├── searchSymbol_scope_attrs.out │ │ │ │ ├── searchSymbol_scope_attrs.query │ │ │ │ ├── searchSymbol_scope_lib_prefix.out │ │ │ │ └── searchSymbol_scope_lib_prefix.query │ │ │ │ ├── python │ │ │ │ ├── describeSymbol.out │ │ │ │ ├── describeSymbol.query │ │ │ │ ├── describeSymbol_all_fn.out │ │ │ │ ├── describeSymbol_all_fn.query │ │ │ │ ├── describeSymbol_as_fn.out │ │ │ │ ├── describeSymbol_as_fn.query │ │ │ │ ├── describeSymbol_attr.out │ │ │ │ ├── describeSymbol_attr.query │ │ │ │ ├── describeSymbol_comment.out │ │ │ │ ├── describeSymbol_comment.query │ │ │ │ ├── documentSymbolIndex.out │ │ │ │ ├── documentSymbolIndex.query │ │ │ │ ├── documentSymbolListX.out │ │ │ │ ├── documentSymbolListX.query │ │ │ │ ├── findReferenceRanges.out │ │ │ │ ├── findReferenceRanges.query │ │ │ │ ├── findReferenceRanges_big_lib_func.out │ │ │ │ ├── findReferenceRanges_big_lib_func.query │ │ │ │ ├── findReferences.out │ │ │ │ ├── findReferences.query │ │ │ │ ├── relatedNeighborhood.out │ │ │ │ ├── relatedNeighborhood.query │ │ │ │ ├── resolveSymbol.out │ │ │ │ ├── resolveSymbol.query │ │ │ │ ├── resolveSymbolRange.out │ │ │ │ ├── resolveSymbolRange.query │ │ │ │ ├── searchSymbol.out │ │ │ │ ├── searchSymbol.query │ │ │ │ ├── searchSymbol_describe.out │ │ │ │ ├── searchSymbol_describe.query │ │ │ │ ├── searchSymbol_exact_lang_kind.out │ │ │ │ ├── searchSymbol_exact_lang_kind.query │ │ │ │ ├── searchSymbol_ignorecase.out │ │ │ │ ├── searchSymbol_ignorecase.query │ │ │ │ ├── searchSymbol_kind_class.out │ │ │ │ ├── searchSymbol_kind_class.query │ │ │ │ ├── searchSymbol_kind_class_describe.out │ │ │ │ ├── searchSymbol_kind_class_describe.query │ │ │ │ ├── searchSymbol_kind_class_ignorecase.out │ │ │ │ ├── searchSymbol_kind_class_ignorecase.query │ │ │ │ ├── searchSymbol_lang_wild.out │ │ │ │ ├── searchSymbol_lang_wild.query │ │ │ │ ├── searchSymbol_lang_wild_describe.out │ │ │ │ ├── searchSymbol_lang_wild_describe.query │ │ │ │ ├── searchSymbol_lang_wild_ignorecase.out │ │ │ │ ├── searchSymbol_lang_wild_ignorecase.query │ │ │ │ ├── searchSymbol_not_class_kind.out │ │ │ │ ├── searchSymbol_not_class_kind.query │ │ │ │ ├── searchSymbol_not_class_kind_describe.out │ │ │ │ ├── searchSymbol_not_class_kind_describe.query │ │ │ │ ├── searchSymbol_not_class_kind_ignorecase.out │ │ │ │ ├── searchSymbol_not_class_kind_ignorecase.query │ │ │ │ ├── searchSymbol_not_lang.out │ │ │ │ ├── searchSymbol_not_lang.query │ │ │ │ ├── searchSymbol_prefix_empty_name.out │ │ │ │ ├── searchSymbol_prefix_empty_name.query │ │ │ │ ├── searchSymbol_prefix_empty_name_describe.out │ │ │ │ ├── searchSymbol_prefix_empty_name_describe.query │ │ │ │ ├── searchSymbol_prefix_empty_name_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_empty_name_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_all.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_all.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_all_describe.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_all_describe.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_all_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_all_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_enum.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_enum.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_enum_describe.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_enum_describe.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_enum_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_enum_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_function.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_function.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_function_describe.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_function_describe.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_function_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_function_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_method.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_method.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_method_describe.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_method_describe.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_method_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_method_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_not_all.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_not_all.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_not_all_describe.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_not_all_describe.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_not_all_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_not_all_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_part.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_part.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_part_describe.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_part_describe.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_part_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_part_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_partial_not.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_partial_not.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_partial_not_describe.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_partial_not_describe.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_partial_not_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_partial_not_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_type.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_type.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_type_describe.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_type_describe.query │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_type_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_empty_name_multikind_type_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_exact_kind_class_describe.out │ │ │ │ ├── searchSymbol_prefix_exact_kind_class_describe.query │ │ │ │ ├── searchSymbol_prefix_exact_kind_class_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_exact_kind_class_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_one_char_multilang.out │ │ │ │ ├── searchSymbol_prefix_one_char_multilang.query │ │ │ │ ├── searchSymbol_prefix_one_char_name.out │ │ │ │ ├── searchSymbol_prefix_one_char_name.query │ │ │ │ ├── searchSymbol_prefix_one_char_name_describe.out │ │ │ │ ├── searchSymbol_prefix_one_char_name_describe.query │ │ │ │ ├── searchSymbol_prefix_one_char_name_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_one_char_name_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_one_char_name_kind.out │ │ │ │ ├── searchSymbol_prefix_one_char_name_kind.query │ │ │ │ ├── searchSymbol_prefix_one_char_name_kind_describe.out │ │ │ │ ├── searchSymbol_prefix_one_char_name_kind_describe.query │ │ │ │ ├── searchSymbol_prefix_one_char_name_kind_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_one_char_name_kind_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_partial_name.out │ │ │ │ ├── searchSymbol_prefix_partial_name.query │ │ │ │ ├── searchSymbol_prefix_partial_name_describe.out │ │ │ │ ├── searchSymbol_prefix_partial_name_describe.query │ │ │ │ ├── searchSymbol_prefix_partial_name_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_partial_name_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_partial_name_kind.out │ │ │ │ ├── searchSymbol_prefix_partial_name_kind.query │ │ │ │ ├── searchSymbol_prefix_partial_name_kind_describe.out │ │ │ │ ├── searchSymbol_prefix_partial_name_kind_describe.query │ │ │ │ ├── searchSymbol_prefix_partial_name_kind_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_partial_name_kind_ignorecase.query │ │ │ │ ├── searchSymbol_prefix_partial_name_not_kind.out │ │ │ │ ├── searchSymbol_prefix_partial_name_not_kind.query │ │ │ │ ├── searchSymbol_prefix_partial_name_not_kind_describe.out │ │ │ │ ├── searchSymbol_prefix_partial_name_not_kind_describe.query │ │ │ │ ├── searchSymbol_prefix_partial_name_not_kind_ignorecase.out │ │ │ │ ├── searchSymbol_prefix_partial_name_not_kind_ignorecase.query │ │ │ │ ├── searchSymbol_scope_all_fn.out │ │ │ │ ├── searchSymbol_scope_all_fn.query │ │ │ │ ├── searchSymbol_scope_all_fn_insensitive.out │ │ │ │ ├── searchSymbol_scope_all_fn_insensitive.query │ │ │ │ ├── searchSymbol_scope_all_fn_insensitive_prefix.out │ │ │ │ ├── searchSymbol_scope_all_fn_insensitive_prefix.query │ │ │ │ ├── searchSymbol_scope_all_fn_prefix.out │ │ │ │ ├── searchSymbol_scope_all_fn_prefix.query │ │ │ │ ├── searchSymbol_scope_attrs.out │ │ │ │ ├── searchSymbol_scope_attrs.query │ │ │ │ ├── searchSymbol_scope_lib_prefix.out │ │ │ │ └── searchSymbol_scope_lib_prefix.query │ │ │ │ ├── rust-lsif │ │ │ │ ├── documentSymbolIndex.out │ │ │ │ ├── documentSymbolIndex.query │ │ │ │ ├── documentSymbolListX.out │ │ │ │ └── documentSymbolListX.query │ │ │ │ ├── scip │ │ │ │ ├── describeSymbol.out │ │ │ │ ├── describeSymbol.query │ │ │ │ ├── describeSymbol_Prefix.out │ │ │ │ ├── describeSymbol_Prefix.query │ │ │ │ ├── documentSymbolIndex.out │ │ │ │ ├── documentSymbolIndex.query │ │ │ │ ├── documentSymbolListX.out │ │ │ │ ├── documentSymbolListX.query │ │ │ │ ├── findReferenceRanges.out │ │ │ │ ├── findReferenceRanges.query │ │ │ │ ├── findReferences.out │ │ │ │ ├── findReferences.query │ │ │ │ ├── searchSymbol_0.out │ │ │ │ ├── searchSymbol_0.query │ │ │ │ ├── searchSymbol_rust_kind.out │ │ │ │ ├── searchSymbol_rust_kind.query │ │ │ │ ├── searchSymbol_rust_kind_ignoreCase.out │ │ │ │ └── searchSymbol_rust_kind_ignoreCase.query │ │ │ │ ├── swift-objc-xlang │ │ │ │ ├── documentSymbolIndex_SwiftCaller.out │ │ │ │ ├── documentSymbolIndex_SwiftCaller.query │ │ │ │ ├── documentSymbolIndex_SwiftImplementer.out │ │ │ │ ├── documentSymbolIndex_SwiftImplementer.query │ │ │ │ ├── documentSymbolListX_SwiftCaller.out │ │ │ │ ├── documentSymbolListX_SwiftCaller.query │ │ │ │ ├── documentSymbolListX_SwiftImplementer.out │ │ │ │ └── documentSymbolListX_SwiftImplementer.query │ │ │ │ ├── swift │ │ │ │ ├── searchSymbol_container.out │ │ │ │ ├── searchSymbol_container.query │ │ │ │ ├── searchSymbol_container_case-insensitive.out │ │ │ │ ├── searchSymbol_container_case-insensitive.query │ │ │ │ ├── searchSymbol_empty.out │ │ │ │ ├── searchSymbol_empty.query │ │ │ │ ├── searchSymbol_method.out │ │ │ │ ├── searchSymbol_method.query │ │ │ │ ├── searchSymbol_method_kind.out │ │ │ │ ├── searchSymbol_method_kind.query │ │ │ │ ├── searchSymbol_method_kind_case-insensitive.out │ │ │ │ ├── searchSymbol_method_kind_case-insensitive.query │ │ │ │ ├── usrToDefinition_0.out │ │ │ │ └── usrToDefinition_0.query │ │ │ │ ├── thrift │ │ │ │ ├── describe_enum.out │ │ │ │ ├── describe_enum.query │ │ │ │ ├── describe_enum_value.out │ │ │ │ ├── describe_enum_value.query │ │ │ │ ├── describe_exception.out │ │ │ │ ├── describe_exception.query │ │ │ │ ├── describe_exception_field.out │ │ │ │ ├── describe_exception_field.query │ │ │ │ ├── describe_field.out │ │ │ │ ├── describe_field.query │ │ │ │ ├── describe_typedef.out │ │ │ │ ├── describe_typedef.query │ │ │ │ ├── describe_union.out │ │ │ │ ├── describe_union.query │ │ │ │ ├── documentSymbolIndex.out │ │ │ │ ├── documentSymbolIndex.query │ │ │ │ ├── documentSymbolListX.out │ │ │ │ ├── documentSymbolListX.query │ │ │ │ ├── findReferenceRanges.out │ │ │ │ ├── findReferenceRanges.query │ │ │ │ ├── findReferences.out │ │ │ │ └── findReferences.query │ │ │ │ └── typescript │ │ │ │ ├── documentSymbolIndex.out │ │ │ │ ├── documentSymbolIndex.query │ │ │ │ ├── documentSymbolListX.out │ │ │ │ └── documentSymbolListX.query │ │ └── requestOptions │ │ │ └── cxx │ │ │ ├── .clang-format │ │ │ └── main.cpp │ └── tools │ │ ├── Glean │ │ └── Glass │ │ │ └── Test │ │ │ ├── DemoClient.hs │ │ │ └── Symbol.hs │ │ ├── create.py │ │ └── insert.py ├── haxl │ ├── Haxl │ │ └── DataSource │ │ │ ├── Glean.hs │ │ │ └── Glean │ │ │ └── Common.hs │ └── tests │ │ └── IntegrationTest.hs ├── hs │ └── Glean │ │ ├── FFI.hs │ │ ├── RTS.hs │ │ ├── RTS │ │ ├── Builder.hs │ │ ├── Bytecode │ │ │ ├── Code.hs │ │ │ ├── Disassemble.hs │ │ │ └── Supply.hs │ │ ├── Constants.hs │ │ ├── Foreign │ │ │ ├── Benchmarking.hs │ │ │ ├── Bytecode.hs │ │ │ ├── Define.hs │ │ │ ├── FactSet.hs │ │ │ ├── Inventory.hs │ │ │ ├── JSON.hs │ │ │ ├── Lookup.hs │ │ │ ├── LookupCache.hs │ │ │ ├── Ownership.hsc │ │ │ ├── Query.hsc │ │ │ ├── Stacked.hs │ │ │ ├── Stats.hs │ │ │ ├── Subst.hs │ │ │ ├── Thrift.hs │ │ │ └── Typecheck.hs │ │ ├── Set.hs │ │ ├── Term.hs │ │ ├── Traverse.hs │ │ ├── Typecheck.hs │ │ └── Types.hs │ │ ├── Repo │ │ └── Text.hs │ │ └── Write │ │ └── Stats.hs ├── if │ ├── glean.thrift │ ├── glean_include.hs │ ├── index.thrift │ └── internal.thrift ├── index │ ├── Glean │ │ ├── Indexer.hs │ │ └── Indexer │ │ │ └── External.hs │ └── list │ │ └── Glean │ │ └── Indexer │ │ └── List.hs ├── interprocess │ ├── cpp │ │ ├── counters.cpp │ │ ├── counters.h │ │ ├── counters_ffi.h │ │ ├── tests │ │ │ └── WorklistTest.cpp │ │ ├── worklist.cpp │ │ ├── worklist.h │ │ └── worklist_ffi.h │ └── hs │ │ └── Glean │ │ └── Interprocess │ │ ├── Counters.hs │ │ ├── Test │ │ └── TestWorklist.hs │ │ └── Worklist.hs ├── lang │ ├── angle │ │ ├── AngleIndexer │ │ │ ├── Builder.hs │ │ │ ├── Main.hs │ │ │ └── Utils.hs │ │ └── tests │ │ │ ├── cases │ │ │ ├── anglelangDeclarationLocation.out │ │ │ ├── anglelangDeclarationLocation.query │ │ │ ├── anglelangFileXRefs.out │ │ │ ├── anglelangFileXRefs.query │ │ │ ├── anglelangName.out │ │ │ ├── anglelangName.query │ │ │ ├── srcFile.out │ │ │ ├── srcFile.query │ │ │ ├── srcFileLines.out │ │ │ └── srcFileLines.query │ │ │ └── code │ │ │ ├── schema.a.angle │ │ │ └── schema.b.angle │ ├── clang │ │ ├── Derive.hs │ │ ├── Derive │ │ │ ├── Common.hs │ │ │ ├── CxxDeclarationSources.hs │ │ │ ├── CxxSame.hs │ │ │ ├── CxxTargetUses.hs │ │ │ ├── Env.hs │ │ │ ├── Generic.hs │ │ │ ├── Lib.hs │ │ │ └── Types.hs │ │ ├── Glean │ │ │ └── Indexer │ │ │ │ └── Cpp.hs │ │ ├── LICENSE │ │ ├── Setup.hs │ │ ├── action.cpp │ │ ├── action.h │ │ ├── ast.cpp │ │ ├── ast.h │ │ ├── db.cpp │ │ ├── db.h │ │ ├── glean-clang.cabal │ │ ├── gleandiagnosticbuffer.h │ │ ├── hash.cpp │ │ ├── hash.h │ │ ├── index.cpp │ │ ├── index.h │ │ ├── path.cpp │ │ ├── path.h │ │ ├── preprocessor.cpp │ │ ├── preprocessor.h │ │ └── tests │ │ │ ├── .clang-format │ │ │ ├── Glean │ │ │ ├── Clang │ │ │ │ ├── Test.hs │ │ │ │ └── Test │ │ │ │ │ └── DerivePass.hs │ │ │ └── Regression │ │ │ │ └── Driver │ │ │ │ ├── Clang.hs │ │ │ │ ├── DeriveDeclFamilies.hs │ │ │ │ ├── DeriveForCodemarkup.hs │ │ │ │ ├── DeriveFunctionCalls.hs │ │ │ │ ├── DeriveFunctionDeclAttribute.hs │ │ │ │ └── DeriveObjcInheritance.hs │ │ │ ├── PathTest.cpp │ │ │ ├── github │ │ │ └── Glean │ │ │ │ └── Clang │ │ │ │ ├── CodeMarkup.hs │ │ │ │ ├── DeriveAttrs.hs │ │ │ │ ├── DeriveFamilies.hs │ │ │ │ ├── DeriveFunCalls.hs │ │ │ │ ├── DeriveObjCInheritance.hs │ │ │ │ └── Regression.hs │ │ │ ├── incremental │ │ │ ├── IncrementalTest.hs │ │ │ └── src │ │ │ │ ├── CxxEntityDocumentation_decl.out │ │ │ │ ├── CxxEntityDocumentation_decl.query │ │ │ │ ├── DeclarationComment.out │ │ │ │ ├── DeclarationComment.query │ │ │ │ ├── a.h │ │ │ │ ├── b.cpp │ │ │ │ ├── cxx1.DeclFamily.out │ │ │ │ ├── cxx1.DeclFamily.query │ │ │ │ ├── cxx1.DeclToFamily.out │ │ │ │ ├── cxx1.DeclToFamily.query │ │ │ │ ├── cxx1.TargetUses.out │ │ │ │ ├── cxx1.TargetUses.query │ │ │ │ ├── old │ │ │ │ ├── a.cpp │ │ │ │ ├── a.h │ │ │ │ └── b.cpp │ │ │ │ ├── xrefs.out │ │ │ │ └── xrefs.query │ │ │ ├── regression │ │ │ ├── declarations │ │ │ │ ├── builtin1 │ │ │ │ │ ├── declarations.out │ │ │ │ │ ├── digest.out │ │ │ │ │ └── test.cpp │ │ │ │ ├── class1 │ │ │ │ │ ├── declarations.out │ │ │ │ │ ├── digest.out │ │ │ │ │ └── test.cpp │ │ │ │ ├── declarations.out │ │ │ │ ├── declarations.query │ │ │ │ ├── digest.out │ │ │ │ ├── digest.query │ │ │ │ ├── enum1 │ │ │ │ │ ├── declarations.out │ │ │ │ │ ├── digest.out │ │ │ │ │ └── test.cpp │ │ │ │ ├── fun1 │ │ │ │ │ ├── declarations.out │ │ │ │ │ ├── digest.out │ │ │ │ │ └── test.cpp │ │ │ │ ├── fun2 │ │ │ │ │ ├── declarations.out │ │ │ │ │ ├── digest.out │ │ │ │ │ └── test.cpp │ │ │ │ ├── implicit1 │ │ │ │ │ ├── declarations.out │ │ │ │ │ ├── digest.out │ │ │ │ │ └── test.cpp │ │ │ │ ├── macro1 │ │ │ │ │ ├── declarations.out │ │ │ │ │ ├── digest.out │ │ │ │ │ └── test.cpp │ │ │ │ ├── most-vexing-parse1 │ │ │ │ │ ├── declarations.out │ │ │ │ │ ├── digest.out │ │ │ │ │ └── test.cpp │ │ │ │ ├── objc-method1 │ │ │ │ │ ├── declarations.out │ │ │ │ │ ├── digest.out │ │ │ │ │ └── test.m │ │ │ │ ├── objc-property1 │ │ │ │ │ ├── declarations.out │ │ │ │ │ ├── digest.out │ │ │ │ │ ├── ivar.out │ │ │ │ │ ├── ivar.query │ │ │ │ │ └── test.m │ │ │ │ ├── objc-property2 │ │ │ │ │ ├── declarations.out │ │ │ │ │ ├── digest.out │ │ │ │ │ └── test.m │ │ │ │ ├── template-class1 │ │ │ │ │ ├── declarations.out │ │ │ │ │ ├── digest.out │ │ │ │ │ └── test.cpp │ │ │ │ ├── template-fun1 │ │ │ │ │ ├── declarations.out │ │ │ │ │ ├── digest.out │ │ │ │ │ └── test.cpp │ │ │ │ ├── template-var1 │ │ │ │ │ ├── declarations.out │ │ │ │ │ ├── digest.out │ │ │ │ │ └── test.cpp │ │ │ │ ├── typeAlias1 │ │ │ │ │ ├── declarations.out │ │ │ │ │ ├── digest.out │ │ │ │ │ ├── test.cpp │ │ │ │ │ └── test.mm │ │ │ │ ├── typeAlias2 │ │ │ │ │ ├── declarations.out │ │ │ │ │ ├── digest.out │ │ │ │ │ └── test.cpp │ │ │ │ ├── using-directive1 │ │ │ │ │ ├── declarations.out │ │ │ │ │ ├── digest.out │ │ │ │ │ └── test.cpp │ │ │ │ ├── var1 │ │ │ │ │ ├── declarations.out │ │ │ │ │ ├── declarations.platform010-clang-17.out │ │ │ │ │ ├── digest.out │ │ │ │ │ └── test.cpp │ │ │ │ └── var2 │ │ │ │ │ ├── declarations.out │ │ │ │ │ ├── digest.out │ │ │ │ │ └── test.cpp │ │ │ ├── index_failure │ │ │ │ ├── cpp │ │ │ │ │ ├── index_failure.out │ │ │ │ │ ├── test.cpp │ │ │ │ │ └── test.h │ │ │ │ └── index_failure.query │ │ │ ├── language │ │ │ │ ├── c │ │ │ │ │ ├── language.out │ │ │ │ │ ├── test.c │ │ │ │ │ └── test.h │ │ │ │ ├── cpp │ │ │ │ │ ├── language.out │ │ │ │ │ ├── test.cpp │ │ │ │ │ └── test.h │ │ │ │ ├── language.query │ │ │ │ ├── objc │ │ │ │ │ ├── language.out │ │ │ │ │ ├── test.h │ │ │ │ │ └── test.m │ │ │ │ └── objcpp │ │ │ │ │ ├── language.out │ │ │ │ │ ├── test.h │ │ │ │ │ └── test.mm │ │ │ ├── namespace_definitions │ │ │ │ ├── namespace_definitions.out │ │ │ │ ├── namespace_definitions.query │ │ │ │ └── test.cpp │ │ │ ├── objc_base │ │ │ │ └── base │ │ │ │ │ ├── base.out │ │ │ │ │ ├── base.query │ │ │ │ │ ├── test.h │ │ │ │ │ └── test.m │ │ │ ├── objc_definitions │ │ │ │ ├── objc-implementation1 │ │ │ │ │ ├── objcontainer_definitions.out │ │ │ │ │ └── test.m │ │ │ │ └── objcontainer_definitions.query │ │ │ ├── perf │ │ │ │ └── decl │ │ │ │ │ ├── decl.out │ │ │ │ │ ├── decl.perf │ │ │ │ │ ├── decl.query │ │ │ │ │ ├── functionDeclaration.out │ │ │ │ │ ├── functionDeclaration.perf │ │ │ │ │ ├── functionDeclaration.query │ │ │ │ │ └── test.cpp │ │ │ ├── preprocessor │ │ │ │ ├── define_use.query │ │ │ │ ├── ifdef │ │ │ │ │ ├── define_use.out │ │ │ │ │ ├── test.cpp │ │ │ │ │ └── trace.out │ │ │ │ ├── macro1 │ │ │ │ │ ├── define_use.out │ │ │ │ │ ├── test.cpp │ │ │ │ │ ├── trace.out │ │ │ │ │ ├── use.out │ │ │ │ │ └── use.query │ │ │ │ ├── objc-import1 │ │ │ │ │ ├── define_use.out │ │ │ │ │ ├── test.h │ │ │ │ │ ├── test.m │ │ │ │ │ ├── trace.out │ │ │ │ │ ├── trace1.out │ │ │ │ │ └── trace1.query │ │ │ │ ├── trace.query │ │ │ │ ├── trace1 │ │ │ │ │ ├── define_use.out │ │ │ │ │ ├── test.cpp │ │ │ │ │ ├── test.h │ │ │ │ │ └── trace.out │ │ │ │ ├── trace2 │ │ │ │ │ ├── define_use.out │ │ │ │ │ ├── test.cpp │ │ │ │ │ ├── test.h │ │ │ │ │ └── trace.out │ │ │ │ └── trace3 │ │ │ │ │ ├── bar.h │ │ │ │ │ ├── define_use.out │ │ │ │ │ ├── foo.h │ │ │ │ │ ├── test.cpp │ │ │ │ │ └── trace.out │ │ │ ├── record_definitions │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.query │ │ │ │ ├── class1 │ │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.out │ │ │ │ │ ├── record_definitions.out │ │ │ │ │ ├── record_definitions.platform010-clang-17.out │ │ │ │ │ └── test.cpp │ │ │ │ ├── does_not_index_implicit_methods │ │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.out │ │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.platform010-clang-17.out │ │ │ │ │ ├── record_definitions.out │ │ │ │ │ ├── record_definitions.platform010-clang-17.out │ │ │ │ │ └── test.cpp │ │ │ │ ├── enum1 │ │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.out │ │ │ │ │ ├── record_definitions.out │ │ │ │ │ └── test.cpp │ │ │ │ ├── record_definitions.query │ │ │ │ └── template-derived1 │ │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.out │ │ │ │ │ ├── record_definitions.out │ │ │ │ │ └── test.cpp │ │ │ ├── usr-hash │ │ │ │ ├── class │ │ │ │ │ ├── test.cpp │ │ │ │ │ └── usr-hash.out │ │ │ │ ├── function │ │ │ │ │ ├── test.cpp │ │ │ │ │ └── usr-hash.out │ │ │ │ └── usr-hash.query │ │ │ └── xrefs │ │ │ │ ├── builtin1 │ │ │ │ ├── test.cpp │ │ │ │ └── xrefs.out │ │ │ │ ├── coro1 │ │ │ │ ├── test.cpp │ │ │ │ ├── xrefs.out │ │ │ │ └── xrefs.query │ │ │ │ ├── ctor1 │ │ │ │ ├── test.cpp │ │ │ │ └── xrefs.out │ │ │ │ ├── ctor2 │ │ │ │ ├── test.cpp │ │ │ │ └── xrefs.out │ │ │ │ ├── implicit1 │ │ │ │ ├── test.cpp │ │ │ │ └── xrefs.out │ │ │ │ ├── initializer-list │ │ │ │ ├── test.cpp │ │ │ │ └── xrefs.out │ │ │ │ ├── macro1 │ │ │ │ ├── test.cpp │ │ │ │ └── xrefs.out │ │ │ │ ├── macro2 │ │ │ │ ├── test.cpp │ │ │ │ └── xrefs.out │ │ │ │ ├── macro3 │ │ │ │ ├── test.cpp │ │ │ │ └── xrefs.out │ │ │ │ ├── macro4 │ │ │ │ ├── a.h │ │ │ │ ├── spelling.out │ │ │ │ ├── spelling.query │ │ │ │ ├── test.cpp │ │ │ │ └── xrefs.out │ │ │ │ ├── member1 │ │ │ │ ├── test.cpp │ │ │ │ └── xrefs.out │ │ │ │ ├── member2 │ │ │ │ ├── test.cpp │ │ │ │ └── xrefs.out │ │ │ │ ├── multifile1 │ │ │ │ ├── a.h │ │ │ │ ├── test.cpp │ │ │ │ └── xrefs.out │ │ │ │ ├── namespace1 │ │ │ │ ├── test.cpp │ │ │ │ └── xrefs.out │ │ │ │ ├── namespace2 │ │ │ │ ├── test.cpp │ │ │ │ └── xrefs.out │ │ │ │ ├── objc-implicit-class-method1 │ │ │ │ ├── test.m │ │ │ │ └── xrefs.out │ │ │ │ ├── objc-ivar1 │ │ │ │ ├── test.m │ │ │ │ └── xrefs.out │ │ │ │ ├── objc-method1 │ │ │ │ ├── test.mm │ │ │ │ └── xrefs.out │ │ │ │ ├── objc-property1 │ │ │ │ ├── test.m │ │ │ │ └── xrefs.out │ │ │ │ ├── objc-property2 │ │ │ │ ├── test.m │ │ │ │ └── xrefs.out │ │ │ │ ├── objc-protocol1 │ │ │ │ ├── test.m │ │ │ │ └── xrefs.out │ │ │ │ ├── objc-selector1 │ │ │ │ ├── test.m │ │ │ │ └── xrefs.out │ │ │ │ ├── template-alias1 │ │ │ │ ├── main.cpp │ │ │ │ └── xrefs.out │ │ │ │ ├── template-fun1 │ │ │ │ ├── test.cpp │ │ │ │ └── xrefs.out │ │ │ │ ├── template-member-fun1 │ │ │ │ ├── test.cpp │ │ │ │ └── xrefs.out │ │ │ │ ├── template-member-fun2 │ │ │ │ ├── test.cpp │ │ │ │ └── xrefs.out │ │ │ │ ├── template-member-var1 │ │ │ │ ├── test.cpp │ │ │ │ ├── xrefs.out │ │ │ │ └── xrefs.platform010-clang-17.out │ │ │ │ ├── template-using-fun1 │ │ │ │ ├── test.cpp │ │ │ │ └── xrefs.out │ │ │ │ ├── template-using-var1 │ │ │ │ ├── test.cpp │ │ │ │ └── xrefs.out │ │ │ │ ├── template-var1 │ │ │ │ ├── test.cpp │ │ │ │ └── xrefs.out │ │ │ │ ├── template1 │ │ │ │ ├── test.cpp │ │ │ │ └── xrefs.out │ │ │ │ ├── template2 │ │ │ │ ├── test.cpp │ │ │ │ └── xrefs.out │ │ │ │ ├── template3 │ │ │ │ ├── test.cpp │ │ │ │ └── xrefs.out │ │ │ │ ├── using-chain1 │ │ │ │ ├── test.cpp │ │ │ │ └── xrefs.out │ │ │ │ ├── using-decl1 │ │ │ │ ├── test.cpp │ │ │ │ └── xrefs.out │ │ │ │ ├── using-decl2 │ │ │ │ ├── test.cpp │ │ │ │ └── xrefs.out │ │ │ │ ├── using-decl3 │ │ │ │ ├── test.cpp │ │ │ │ └── xrefs.out │ │ │ │ ├── using-decl4 │ │ │ │ ├── test.cpp │ │ │ │ └── xrefs.out │ │ │ │ ├── using-decl5 │ │ │ │ ├── test.cpp │ │ │ │ └── xrefs.out │ │ │ │ ├── using-decl6 │ │ │ │ ├── test.cpp │ │ │ │ └── xrefs.out │ │ │ │ ├── using-decl7 │ │ │ │ ├── test.cpp │ │ │ │ └── xrefs.out │ │ │ │ ├── using-directive1 │ │ │ │ ├── test.cpp │ │ │ │ └── xrefs.out │ │ │ │ ├── using-directive2 │ │ │ │ ├── test.cpp │ │ │ │ └── xrefs.out │ │ │ │ ├── using-directive3 │ │ │ │ ├── test.cpp │ │ │ │ └── xrefs.out │ │ │ │ ├── using-directive4 │ │ │ │ ├── test.cpp │ │ │ │ ├── xrefs.out │ │ │ │ └── xrefs.query │ │ │ │ ├── using-directive5 │ │ │ │ ├── test.cpp │ │ │ │ └── xrefs.out │ │ │ │ ├── using-directive6 │ │ │ │ ├── test.cpp │ │ │ │ └── xrefs.out │ │ │ │ ├── using-enum1 │ │ │ │ ├── test.cpp │ │ │ │ └── xrefs.out │ │ │ │ ├── using-enum2 │ │ │ │ ├── test.cpp │ │ │ │ └── xrefs.out │ │ │ │ ├── using-enum3 │ │ │ │ ├── test.cpp │ │ │ │ └── xrefs.out │ │ │ │ ├── using-lambda1 │ │ │ │ ├── test.cpp │ │ │ │ └── xrefs.out │ │ │ │ ├── var1 │ │ │ │ ├── test.cpp │ │ │ │ ├── xrefs.out │ │ │ │ └── xrefs.platform010-clang-17.out │ │ │ │ ├── var2 │ │ │ │ ├── test.cpp │ │ │ │ └── xrefs.out │ │ │ │ └── xrefs.query │ │ │ ├── regression_derive-attributes │ │ │ ├── attributes.query │ │ │ ├── codemarkup_cxx_annotation.query │ │ │ ├── fun_attr │ │ │ │ ├── attributes.out │ │ │ │ ├── attributes.perf │ │ │ │ ├── codemarkup_cxx_annotation.out │ │ │ │ ├── codemarkup_cxx_annotation.perf │ │ │ │ ├── functiondeclattribute.out │ │ │ │ ├── functiondeclattribute.perf │ │ │ │ └── test.cpp │ │ │ └── functiondeclattribute.query │ │ │ ├── regression_derive-decl-families │ │ │ ├── cxx1.DeclFamily.query │ │ │ ├── cxx1.DeclToFamily.query │ │ │ ├── cxx1.Same.query │ │ │ ├── fancy │ │ │ │ ├── not-same │ │ │ │ │ ├── a.h │ │ │ │ │ ├── cxx1.DeclFamily.out │ │ │ │ │ ├── cxx1.DeclToFamily.out │ │ │ │ │ ├── cxx1.Same.out │ │ │ │ │ └── test.cpp │ │ │ │ └── objc-property2 │ │ │ │ │ ├── cxx1.DeclFamily.out │ │ │ │ │ ├── cxx1.DeclToFamily.out │ │ │ │ │ ├── cxx1.Same.out │ │ │ │ │ └── test.m │ │ │ └── simple │ │ │ │ └── forward-declare │ │ │ │ ├── cxx1.DeclFamily.out │ │ │ │ ├── cxx1.DeclToFamily.out │ │ │ │ ├── cxx1.Same.out │ │ │ │ ├── f.cpp │ │ │ │ ├── f.h │ │ │ │ └── g.cpp │ │ │ ├── regression_derive-function-calls │ │ │ └── simple │ │ │ │ ├── cxx1.DeclarationSources.query │ │ │ │ ├── cxx1.DeclarationTargets.query │ │ │ │ ├── functions │ │ │ │ ├── cxx1.DeclarationSources.out │ │ │ │ ├── cxx1.DeclarationTargets.out │ │ │ │ └── three.cpp │ │ │ │ ├── lambda │ │ │ │ ├── cxx1.DeclarationSources.out │ │ │ │ ├── cxx1.DeclarationTargets.out │ │ │ │ └── test.cpp │ │ │ │ ├── macros │ │ │ │ ├── cxx1.DeclarationSources.out │ │ │ │ ├── cxx1.DeclarationTargets.out │ │ │ │ └── test.cpp │ │ │ │ ├── objc-method │ │ │ │ ├── cxx1.DeclarationSources.out │ │ │ │ ├── cxx1.DeclarationTargets.out │ │ │ │ └── test.m │ │ │ │ ├── objc-property1 │ │ │ │ ├── cxx1.DeclarationSources.out │ │ │ │ ├── cxx1.DeclarationTargets.out │ │ │ │ └── test.m │ │ │ │ ├── objc-protocol1 │ │ │ │ ├── cxx1.DeclarationSources.out │ │ │ │ ├── cxx1.DeclarationTargets.out │ │ │ │ └── test.m │ │ │ │ ├── objc-selector1 │ │ │ │ ├── cxx1.DeclarationSources.out │ │ │ │ ├── cxx1.DeclarationTargets.out │ │ │ │ └── test.m │ │ │ │ ├── records │ │ │ │ ├── cxx1.DeclarationSources.out │ │ │ │ ├── cxx1.DeclarationTargets.out │ │ │ │ └── test.cpp │ │ │ │ └── using │ │ │ │ ├── cxx1.DeclarationSources.out │ │ │ │ ├── cxx1.DeclarationTargets.out │ │ │ │ └── test.cpp │ │ │ ├── regression_derive-objc-inheritance │ │ │ └── simple │ │ │ │ ├── cxx1.ObjcContainerInheritance.query │ │ │ │ └── extends │ │ │ │ ├── cxx1.ObjcContainerInheritance.out │ │ │ │ ├── test.h │ │ │ │ └── test.m │ │ │ ├── regression_docblock │ │ │ └── declarations │ │ │ │ ├── CxxEntityDocumentation_decl.query │ │ │ │ ├── CxxToThrift.query │ │ │ │ ├── DeclarationComment.query │ │ │ │ ├── class1 │ │ │ │ └── test.cpp │ │ │ │ ├── enum1 │ │ │ │ ├── CxxEntityDocumentation_decl.out │ │ │ │ ├── CxxToThrift.out │ │ │ │ ├── DeclarationComment.out │ │ │ │ └── test.cpp │ │ │ │ ├── fun1 │ │ │ │ ├── CxxEntityDocumentation_decl.out │ │ │ │ ├── CxxToThrift.out │ │ │ │ ├── DeclarationComment.out │ │ │ │ └── test.cpp │ │ │ │ ├── fun2 │ │ │ │ ├── CxxEntityDocumentation_decl.out │ │ │ │ ├── CxxToThrift.out │ │ │ │ ├── DeclarationComment.out │ │ │ │ └── test.cpp │ │ │ │ ├── gencode │ │ │ │ ├── CxxEntityDocumentation_decl.out │ │ │ │ ├── CxxToThrift.out │ │ │ │ ├── DeclarationComment.out │ │ │ │ └── test.cpp │ │ │ │ ├── objc-method1 │ │ │ │ ├── CxxEntityDocumentation_decl.out │ │ │ │ ├── CxxToThrift.out │ │ │ │ ├── DeclarationComment.out │ │ │ │ └── test.m │ │ │ │ ├── objc-property1 │ │ │ │ ├── CxxEntityDocumentation_decl.out │ │ │ │ ├── CxxToThrift.out │ │ │ │ ├── DeclarationComment.out │ │ │ │ └── test.m │ │ │ │ ├── template-fun1 │ │ │ │ ├── CxxEntityDocumentation_decl.out │ │ │ │ ├── CxxToThrift.out │ │ │ │ ├── DeclarationComment.out │ │ │ │ └── test.cpp │ │ │ │ ├── template-var1 │ │ │ │ ├── CxxEntityDocumentation_decl.out │ │ │ │ ├── CxxToThrift.out │ │ │ │ ├── DeclarationComment.out │ │ │ │ └── test.cpp │ │ │ │ ├── typeAlias1 │ │ │ │ ├── CxxEntityDocumentation_decl.out │ │ │ │ ├── CxxToThrift.out │ │ │ │ ├── DeclarationComment.out │ │ │ │ └── test.cpp │ │ │ │ ├── var1 │ │ │ │ ├── CxxEntityDocumentation_decl.out │ │ │ │ ├── CxxEntityDocumentation_decl.platform010-clang-17.out │ │ │ │ ├── CxxToThrift.out │ │ │ │ ├── DeclarationComment.out │ │ │ │ ├── DeclarationComment.platform010-clang-17.out │ │ │ │ ├── EntityDocAttr.platform010-clang-17.out │ │ │ │ └── test.cpp │ │ │ │ └── var2 │ │ │ │ ├── CxxEntityDocumentation_decl.out │ │ │ │ ├── CxxToThrift.out │ │ │ │ ├── DeclarationComment.out │ │ │ │ └── test.cpp │ │ │ ├── schema_gen_test.sh │ │ │ └── smoke-xlang │ │ │ ├── smoke.thrift │ │ │ └── test.cpp │ ├── codemarkup │ │ └── tests │ │ │ ├── clang │ │ │ ├── .clang-format │ │ │ ├── declarations │ │ │ │ ├── CxxPpResolveTraceLocations.query │ │ │ │ ├── builtin1 │ │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ │ ├── entitykinds.out │ │ │ │ │ ├── entitymodifiers.out │ │ │ │ │ ├── entitymodifiers.perf │ │ │ │ │ ├── fileentities.out │ │ │ │ │ ├── fileentityinfo.out │ │ │ │ │ └── test.cpp │ │ │ │ ├── class1 │ │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ │ ├── entitykinds.out │ │ │ │ │ ├── entitymodifiers.out │ │ │ │ │ ├── entitymodifiers.perf │ │ │ │ │ ├── fileentities.out │ │ │ │ │ ├── fileentityinfo.out │ │ │ │ │ └── test.cpp │ │ │ │ ├── entitykinds.query │ │ │ │ ├── entitymodifiers.query │ │ │ │ ├── enum1 │ │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ │ ├── entitykinds.out │ │ │ │ │ ├── entitymodifiers.out │ │ │ │ │ ├── entitymodifiers.perf │ │ │ │ │ ├── fileentities.out │ │ │ │ │ ├── fileentityinfo.out │ │ │ │ │ └── test.cpp │ │ │ │ ├── fileentities.query │ │ │ │ ├── fileentityinfo.query │ │ │ │ ├── fun1 │ │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ │ ├── entitykinds.out │ │ │ │ │ ├── entitymodifiers.out │ │ │ │ │ ├── entitymodifiers.perf │ │ │ │ │ ├── fileentities.out │ │ │ │ │ ├── fileentityinfo.out │ │ │ │ │ └── test.cpp │ │ │ │ ├── fun2 │ │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ │ ├── entitykinds.out │ │ │ │ │ ├── entitymodifiers.out │ │ │ │ │ ├── entitymodifiers.perf │ │ │ │ │ ├── fileentities.out │ │ │ │ │ ├── fileentityinfo.out │ │ │ │ │ └── test.cpp │ │ │ │ ├── macro1 │ │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ │ ├── entitykinds.out │ │ │ │ │ ├── entitymodifiers.out │ │ │ │ │ ├── entitymodifiers.perf │ │ │ │ │ ├── fileentities.out │ │ │ │ │ ├── fileentityinfo.out │ │ │ │ │ ├── search_name.out │ │ │ │ │ ├── search_name.query │ │ │ │ │ ├── search_name_kind_match.out │ │ │ │ │ ├── search_name_kind_match.query │ │ │ │ │ ├── search_name_kind_nomatch.out │ │ │ │ │ ├── search_name_kind_nomatch.query │ │ │ │ │ ├── search_name_lowercase.out │ │ │ │ │ ├── search_name_lowercase.query │ │ │ │ │ ├── search_name_lowercase_kind_match.out │ │ │ │ │ ├── search_name_lowercase_kind_match.query │ │ │ │ │ ├── search_name_lowercase_kind_nomatch.out │ │ │ │ │ ├── search_name_lowercase_kind_nomatch.query │ │ │ │ │ ├── search_name_lowercase_wildkind.out │ │ │ │ │ ├── search_name_lowercase_wildkind.query │ │ │ │ │ ├── search_name_nomatch.out │ │ │ │ │ ├── search_name_nomatch.query │ │ │ │ │ ├── search_name_nomatch_case.out │ │ │ │ │ ├── search_name_nomatch_case.query │ │ │ │ │ └── test.cpp │ │ │ │ ├── objc-method1 │ │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ │ ├── entitykinds.out │ │ │ │ │ ├── entitymodifiers.out │ │ │ │ │ ├── entitymodifiers.perf │ │ │ │ │ ├── fileentities.out │ │ │ │ │ ├── fileentityinfo.out │ │ │ │ │ └── test.m │ │ │ │ ├── objc-property1 │ │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ │ ├── entitykinds.out │ │ │ │ │ ├── entitymodifiers.out │ │ │ │ │ ├── entitymodifiers.perf │ │ │ │ │ ├── fileentities.out │ │ │ │ │ ├── fileentityinfo.out │ │ │ │ │ ├── ivar.out │ │ │ │ │ ├── ivar.query │ │ │ │ │ └── test.m │ │ │ │ ├── objc-property2 │ │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ │ ├── entitykinds.out │ │ │ │ │ ├── entitymodifiers.out │ │ │ │ │ ├── entitymodifiers.perf │ │ │ │ │ ├── fileentities.out │ │ │ │ │ ├── fileentityinfo.out │ │ │ │ │ ├── ivar.out │ │ │ │ │ ├── ivar.query │ │ │ │ │ └── test.m │ │ │ │ ├── template-fun1 │ │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ │ ├── entitykinds.out │ │ │ │ │ ├── entitymodifiers.out │ │ │ │ │ ├── entitymodifiers.perf │ │ │ │ │ ├── fileentities.out │ │ │ │ │ ├── fileentityinfo.out │ │ │ │ │ └── test.cpp │ │ │ │ ├── template-var1 │ │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ │ ├── entitykinds.out │ │ │ │ │ ├── entitymodifiers.out │ │ │ │ │ ├── entitymodifiers.perf │ │ │ │ │ ├── fileentities.out │ │ │ │ │ ├── fileentityinfo.out │ │ │ │ │ └── test.cpp │ │ │ │ ├── typeAlias1 │ │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ │ ├── entitykinds.out │ │ │ │ │ ├── entitymodifiers.out │ │ │ │ │ ├── entitymodifiers.perf │ │ │ │ │ ├── fileentities.out │ │ │ │ │ ├── fileentityinfo.out │ │ │ │ │ ├── test.cpp │ │ │ │ │ └── test.mm │ │ │ │ ├── using-directive1 │ │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ │ ├── entitykinds.out │ │ │ │ │ ├── entitymodifiers.out │ │ │ │ │ ├── entitymodifiers.perf │ │ │ │ │ ├── fileentities.out │ │ │ │ │ ├── fileentityinfo.out │ │ │ │ │ ├── ns_query.out │ │ │ │ │ ├── ns_query.perf │ │ │ │ │ ├── ns_query.query │ │ │ │ │ ├── ns_query_root.out │ │ │ │ │ ├── ns_query_root.perf │ │ │ │ │ ├── ns_query_root.query │ │ │ │ │ └── test.cpp │ │ │ │ ├── var1 │ │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ │ ├── CxxPpResolveTraceLocations.platform010-clang-17.out │ │ │ │ │ ├── entitykinds.out │ │ │ │ │ ├── entitykinds.platform010-clang-17.out │ │ │ │ │ ├── entitymodifiers.out │ │ │ │ │ ├── entitymodifiers.perf │ │ │ │ │ ├── entitymodifiers.platform010-clang-17.out │ │ │ │ │ ├── fileentities.out │ │ │ │ │ ├── fileentities.platform010-clang-17.out │ │ │ │ │ ├── fileentityinfo.out │ │ │ │ │ ├── fileentityinfo.platform010-clang-17.out │ │ │ │ │ └── test.cpp │ │ │ │ └── var2 │ │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ │ ├── entitykinds.out │ │ │ │ │ ├── entitymodifiers.out │ │ │ │ │ ├── entitymodifiers.perf │ │ │ │ │ ├── fileentities.out │ │ │ │ │ ├── fileentityinfo.out │ │ │ │ │ └── test.cpp │ │ │ ├── definitions │ │ │ │ ├── cxx_entity_to_usr.query │ │ │ │ └── fun1 │ │ │ │ │ ├── cxx_entity_to_usr.out │ │ │ │ │ ├── cxx_entity_to_usr.perf │ │ │ │ │ └── test.cpp │ │ │ ├── glass │ │ │ │ ├── CxxPpResolveTraceLocations.query │ │ │ │ ├── SearchByName.query │ │ │ │ ├── cxxEntityComments.query │ │ │ │ ├── cxxFileEntityXMapFixedXRefLocations.query │ │ │ │ ├── cxx_entity_location.query │ │ │ │ ├── cxx_entity_to_annotations.query │ │ │ │ ├── cxx_visibility.query │ │ │ │ ├── cxxresolvedeclarationtoentity.query │ │ │ │ ├── fileentities.query │ │ │ │ ├── fileinfo.query │ │ │ │ ├── namespace1 │ │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ │ ├── SearchByName.out │ │ │ │ │ ├── cxxEntityComments.out │ │ │ │ │ ├── cxxEntityComments.perf │ │ │ │ │ ├── cxxFileEntityXMapFixedXRefLocations.out │ │ │ │ │ ├── cxx_entity_location.out │ │ │ │ │ ├── cxx_entity_location.perf │ │ │ │ │ ├── cxx_entity_to_annotations.out │ │ │ │ │ ├── cxx_entity_to_annotations.perf │ │ │ │ │ ├── cxx_visibility.out │ │ │ │ │ ├── cxxresolvedeclarationtoentity.out │ │ │ │ │ ├── fileentities.out │ │ │ │ │ ├── fileinfo.out │ │ │ │ │ ├── fileinfo.perf │ │ │ │ │ ├── ns_query.out │ │ │ │ │ ├── ns_query.perf │ │ │ │ │ ├── ns_query.query │ │ │ │ │ ├── searchbyname_pp.out │ │ │ │ │ ├── searchbyname_pp_case.out │ │ │ │ │ ├── symbolid.cxx.LookupDeclaration.out │ │ │ │ │ ├── symbolid.cxx.LookupDeclaration.perf │ │ │ │ │ ├── symbolid.cxx.LookupDefinition.out │ │ │ │ │ ├── symbolid.cxx.LookupDefinition.perf │ │ │ │ │ ├── symbolid.cxx.LookupEnumerator.out │ │ │ │ │ ├── symbolid.cxx.LookupEnumerator.perf │ │ │ │ │ ├── symbolid.cxx.LookupFunctionDeclaration.out │ │ │ │ │ ├── symbolid.cxx.LookupFunctionDeclaration.perf │ │ │ │ │ ├── symbolid.cxx.LookupFunctionDefinition.out │ │ │ │ │ ├── symbolid.cxx.LookupFunctionDefinition.perf │ │ │ │ │ ├── symbolid.cxx.LookupFunctionSignatureDeclaration.out │ │ │ │ │ ├── symbolid.cxx.LookupFunctionSignatureDeclaration.perf │ │ │ │ │ ├── symbolid.cxx.LookupFunctionSignatureDefinition.out │ │ │ │ │ ├── symbolid.cxx.LookupFunctionSignatureDefinition.perf │ │ │ │ │ ├── symbolid.cxx.LookupNamespaceDeclaration.out │ │ │ │ │ ├── symbolid.cxx.LookupNamespaceDeclaration.perf │ │ │ │ │ ├── symbolid.cxx.LookupNamespaceDefinition.out │ │ │ │ │ ├── symbolid.cxx.LookupNamespaceDefinition.perf │ │ │ │ │ ├── test.cpp │ │ │ │ │ ├── test.h │ │ │ │ │ ├── test2.h │ │ │ │ │ └── test3.h │ │ │ │ ├── searchbyname_pp.query │ │ │ │ ├── searchbyname_pp_case.query │ │ │ │ ├── symbolid.cxx.LookupDeclaration.query │ │ │ │ ├── symbolid.cxx.LookupDefinition.query │ │ │ │ ├── symbolid.cxx.LookupEnumerator.query │ │ │ │ ├── symbolid.cxx.LookupFunctionDeclaration.query │ │ │ │ ├── symbolid.cxx.LookupFunctionDefinition.query │ │ │ │ ├── symbolid.cxx.LookupFunctionSignatureDeclaration.query │ │ │ │ ├── symbolid.cxx.LookupFunctionSignatureDefinition.query │ │ │ │ ├── symbolid.cxx.LookupNamespaceDeclaration.query │ │ │ │ └── symbolid.cxx.LookupNamespaceDefinition.query │ │ │ ├── xlang │ │ │ │ └── thrift │ │ │ │ │ ├── entityLocations_Fbthrift.out │ │ │ │ │ ├── entityLocations_Fbthrift.perf │ │ │ │ │ ├── entityLocations_Fbthrift.query │ │ │ │ │ ├── entityreferences.out │ │ │ │ │ ├── entityreferences.perf │ │ │ │ │ ├── entityreferences.query │ │ │ │ │ ├── test.cpp │ │ │ │ │ ├── test.h │ │ │ │ │ ├── test.thrift │ │ │ │ │ └── test_types.h │ │ │ └── xrefs │ │ │ │ ├── CxxContainsParentEntity_decl.out │ │ │ │ ├── CxxContainsParentEntity_decl.perf │ │ │ │ ├── CxxContainsParentEntity_decl.query │ │ │ │ ├── CxxContainsParentEntity_defn.out │ │ │ │ ├── CxxContainsParentEntity_defn.perf │ │ │ │ ├── CxxContainsParentEntity_defn.query │ │ │ │ ├── CxxFileEntityIdl.out │ │ │ │ ├── CxxFileEntityIdl.perf │ │ │ │ ├── CxxFileEntityIdl.query │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.out │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.perf │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.query │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.out │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.query │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.query │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.query │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ ├── CxxPpResolveTraceLocations.query │ │ │ │ ├── PpEntityTraceXRefLocations.out │ │ │ │ ├── PpEntityTraceXRefLocations.perf │ │ │ │ ├── PpEntityTraceXRefLocations.query │ │ │ │ ├── builtin1 │ │ │ │ ├── CxxContainsParentEntity_decl.out │ │ │ │ ├── CxxContainsParentEntity_decl.perf │ │ │ │ ├── CxxContainsParentEntity_defn.out │ │ │ │ ├── CxxContainsParentEntity_defn.perf │ │ │ │ ├── CxxFileEntityIdl.out │ │ │ │ ├── CxxFileEntityIdl.perf │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.out │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.out │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.perf │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ ├── PpEntityTraceXRefLocations.out │ │ │ │ ├── PpEntityTraceXRefLocations.perf │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.out │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.perf │ │ │ │ ├── codemarkup_EntityReferences_decl.out │ │ │ │ ├── codemarkup_EntityReferences_decl.perf │ │ │ │ ├── codemarkup_EntityReferences_defn.out │ │ │ │ ├── codemarkup_EntityReferences_defn.perf │ │ │ │ ├── codemarkup_EntityReferences_enum.out │ │ │ │ ├── codemarkup_EntityReferences_enum.perf │ │ │ │ ├── codemarkup_EntitySource.out │ │ │ │ ├── codemarkup_EntitySource.perf │ │ │ │ ├── codemarkup_searchbyname.out │ │ │ │ ├── cxxFileXRefs.out │ │ │ │ ├── cxxFileXRefs.perf │ │ │ │ ├── cxx_entity_location.out │ │ │ │ ├── cxx_entity_location.perf │ │ │ │ ├── decltodeftodecl.out │ │ │ │ ├── decltodeftodecl.perf │ │ │ │ ├── enum_lowercase.out │ │ │ │ ├── enumerator_lowercase.out │ │ │ │ ├── fileentities.out │ │ │ │ ├── fileentityinfo.out │ │ │ │ ├── fileentityxrefkind.out │ │ │ │ ├── fileentityxrefs.out │ │ │ │ ├── fileentityxrefsgeneric.out │ │ │ │ ├── filexrefmap.out │ │ │ │ ├── function_name_lowercase.out │ │ │ │ ├── ppPPEntityLocation.out │ │ │ │ ├── ppPPEntityLocation.perf │ │ │ │ ├── pp_PpIncludeXRefLocations.out │ │ │ │ ├── record_name_lowercase_class.out │ │ │ │ ├── record_name_lowercase_struct.out │ │ │ │ ├── record_name_lowercase_union.out │ │ │ │ ├── search_by_name_kind.out │ │ │ │ ├── search_by_name_kind.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild.out │ │ │ │ ├── search_by_name_kind_anymatch_wild.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.out │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.perf │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.out │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.perf │ │ │ │ ├── search_by_name_kind_class.out │ │ │ │ ├── search_by_name_kind_class.perf │ │ │ │ ├── search_by_name_kind_class_namespace.out │ │ │ │ ├── search_by_name_kind_class_namespace.perf │ │ │ │ ├── search_by_name_kind_enum.out │ │ │ │ ├── search_by_name_kind_enum.perf │ │ │ │ ├── search_by_name_kind_enumerator.out │ │ │ │ ├── search_by_name_kind_enumerator.perf │ │ │ │ ├── search_by_name_kind_function.out │ │ │ │ ├── search_by_name_kind_function.perf │ │ │ │ ├── search_by_name_kind_function_prefix.out │ │ │ │ ├── search_by_name_kind_function_prefix.perf │ │ │ │ ├── search_by_name_kind_namespace.out │ │ │ │ ├── search_by_name_kind_namespace.perf │ │ │ │ ├── search_by_name_kind_no_match.out │ │ │ │ ├── search_by_name_kind_no_match.perf │ │ │ │ ├── search_by_name_kind_no_match_enumerator.out │ │ │ │ ├── search_by_name_kind_no_match_enumerator.perf │ │ │ │ ├── search_by_name_kind_no_match_filtered.out │ │ │ │ ├── search_by_name_kind_no_match_filtered.perf │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_function.out │ │ │ │ ├── search_by_name_kind_nomatch_function.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.out │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.perf │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.out │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.perf │ │ │ │ ├── search_by_name_kind_nomatch_using.out │ │ │ │ ├── search_by_name_kind_nomatch_using.perf │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.out │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.perf │ │ │ │ ├── search_by_name_kind_nomatch_variable.out │ │ │ │ ├── search_by_name_kind_nomatch_variable.perf │ │ │ │ ├── search_by_name_kind_nothing_anymatch.out │ │ │ │ ├── search_by_name_kind_nothing_anymatch.perf │ │ │ │ ├── search_by_name_kind_objc_interface.out │ │ │ │ ├── search_by_name_kind_objc_interface.perf │ │ │ │ ├── search_by_name_kind_struct.out │ │ │ │ ├── search_by_name_kind_struct.perf │ │ │ │ ├── search_by_name_kind_struct_union_enum.out │ │ │ │ ├── search_by_name_kind_struct_union_enum.perf │ │ │ │ ├── search_by_name_kind_type.out │ │ │ │ ├── search_by_name_kind_type.perf │ │ │ │ ├── search_by_name_kind_union.out │ │ │ │ ├── search_by_name_kind_union.perf │ │ │ │ ├── search_by_name_kind_using.out │ │ │ │ ├── search_by_name_kind_using.perf │ │ │ │ ├── search_by_name_kind_variable.out │ │ │ │ ├── search_by_name_kind_variable.perf │ │ │ │ ├── search_by_scope.out │ │ │ │ ├── search_by_scope.perf │ │ │ │ ├── search_by_scope_record.out │ │ │ │ ├── search_by_scope_record.perf │ │ │ │ ├── search_by_scope_record_ignorecase.out │ │ │ │ ├── search_by_scope_record_ignorecase.perf │ │ │ │ ├── search_insensitive_exact_exactkind.out │ │ │ │ ├── search_insensitive_exact_exactkind.perf │ │ │ │ ├── search_insensitive_exact_nokind.out │ │ │ │ ├── search_insensitive_exact_nokind.perf │ │ │ │ ├── search_insensitive_prefix_exactkind.out │ │ │ │ ├── search_insensitive_prefix_exactkind.perf │ │ │ │ ├── search_insensitive_prefix_exactkindplus.out │ │ │ │ ├── search_insensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_insensitive_prefix_nokind.out │ │ │ │ ├── search_insensitive_prefix_nokind.perf │ │ │ │ ├── search_kind_class.out │ │ │ │ ├── search_kind_class.perf │ │ │ │ ├── search_kind_class_neg.out │ │ │ │ ├── search_kind_class_neg.perf │ │ │ │ ├── search_kind_enum.out │ │ │ │ ├── search_kind_enum.perf │ │ │ │ ├── search_kind_enum_neg.out │ │ │ │ ├── search_kind_enum_neg.perf │ │ │ │ ├── search_kind_namespace.out │ │ │ │ ├── search_kind_namespace.perf │ │ │ │ ├── search_kind_namespace_neg.out │ │ │ │ ├── search_kind_namespace_neg.perf │ │ │ │ ├── search_kind_struct.out │ │ │ │ ├── search_kind_struct.perf │ │ │ │ ├── search_kind_struct_neg.out │ │ │ │ ├── search_kind_struct_neg.perf │ │ │ │ ├── search_kind_union.out │ │ │ │ ├── search_kind_union.perf │ │ │ │ ├── search_kind_union_neg.out │ │ │ │ ├── search_kind_union_neg.perf │ │ │ │ ├── search_related_contains_child.out │ │ │ │ ├── search_related_contains_child.perf │ │ │ │ ├── search_related_contains_child_namespace.out │ │ │ │ ├── search_related_contains_child_namespace.perf │ │ │ │ ├── search_sensitive_exact_exactkind.out │ │ │ │ ├── search_sensitive_exact_exactkind.perf │ │ │ │ ├── search_sensitive_exact_exactkindplus.out │ │ │ │ ├── search_sensitive_exact_exactkindplus.perf │ │ │ │ ├── search_sensitive_exact_language.out │ │ │ │ ├── search_sensitive_exact_language.perf │ │ │ │ ├── search_sensitive_exact_multilanguage.out │ │ │ │ ├── search_sensitive_exact_multilanguage.perf │ │ │ │ ├── search_sensitive_exact_nokind.out │ │ │ │ ├── search_sensitive_exact_nokind.perf │ │ │ │ ├── search_sensitive_exact_notlanguage.out │ │ │ │ ├── search_sensitive_exact_notlanguage.perf │ │ │ │ ├── search_sensitive_prefix_exactkind.out │ │ │ │ ├── search_sensitive_prefix_exactkind.perf │ │ │ │ ├── search_sensitive_prefix_exactkindplus.out │ │ │ │ ├── search_sensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_sensitive_prefix_nokind.out │ │ │ │ ├── search_sensitive_prefix_nokind.perf │ │ │ │ ├── searchbyname.out │ │ │ │ ├── srcfiles.out │ │ │ │ ├── test.cpp │ │ │ │ ├── typealias_lowercase.out │ │ │ │ └── variable_lowercase.out │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.out │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.perf │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.query │ │ │ │ ├── codemarkup_EntityReferences_decl.out │ │ │ │ ├── codemarkup_EntityReferences_decl.perf │ │ │ │ ├── codemarkup_EntityReferences_decl.query │ │ │ │ ├── codemarkup_EntityReferences_defn.out │ │ │ │ ├── codemarkup_EntityReferences_defn.perf │ │ │ │ ├── codemarkup_EntityReferences_defn.query │ │ │ │ ├── codemarkup_EntityReferences_enum.out │ │ │ │ ├── codemarkup_EntityReferences_enum.perf │ │ │ │ ├── codemarkup_EntityReferences_enum.query │ │ │ │ ├── codemarkup_EntitySource.out │ │ │ │ ├── codemarkup_EntitySource.perf │ │ │ │ ├── codemarkup_EntitySource.query │ │ │ │ ├── codemarkup_searchbyname.out │ │ │ │ ├── codemarkup_searchbyname.query │ │ │ │ ├── containers │ │ │ │ ├── CxxContainsParentEntity_decl.out │ │ │ │ ├── CxxContainsParentEntity_decl.perf │ │ │ │ ├── CxxContainsParentEntity_defn.out │ │ │ │ ├── CxxContainsParentEntity_defn.perf │ │ │ │ ├── CxxFileEntityIdl.out │ │ │ │ ├── CxxFileEntityIdl.perf │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.out │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.out │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.perf │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ ├── PpEntityTraceXRefLocations.out │ │ │ │ ├── PpEntityTraceXRefLocations.perf │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.out │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.perf │ │ │ │ ├── codemarkup_EntityReferences_decl.out │ │ │ │ ├── codemarkup_EntityReferences_decl.perf │ │ │ │ ├── codemarkup_EntityReferences_defn.out │ │ │ │ ├── codemarkup_EntityReferences_defn.perf │ │ │ │ ├── codemarkup_EntityReferences_enum.out │ │ │ │ ├── codemarkup_EntityReferences_enum.perf │ │ │ │ ├── codemarkup_EntitySource.out │ │ │ │ ├── codemarkup_EntitySource.perf │ │ │ │ ├── codemarkup_searchbyname.out │ │ │ │ ├── cxxFileXRefs.out │ │ │ │ ├── cxxFileXRefs.perf │ │ │ │ ├── cxx_entity_location.out │ │ │ │ ├── cxx_entity_location.perf │ │ │ │ ├── decltodeftodecl.out │ │ │ │ ├── decltodeftodecl.perf │ │ │ │ ├── enum_lowercase.out │ │ │ │ ├── enumerator_lowercase.out │ │ │ │ ├── fileentities.out │ │ │ │ ├── fileentityinfo.out │ │ │ │ ├── fileentityxrefkind.out │ │ │ │ ├── fileentityxrefs.out │ │ │ │ ├── fileentityxrefsgeneric.out │ │ │ │ ├── filexrefmap.out │ │ │ │ ├── function_name_lowercase.out │ │ │ │ ├── ppPPEntityLocation.out │ │ │ │ ├── ppPPEntityLocation.perf │ │ │ │ ├── pp_PpIncludeXRefLocations.out │ │ │ │ ├── record_name_lowercase_class.out │ │ │ │ ├── record_name_lowercase_struct.out │ │ │ │ ├── record_name_lowercase_union.out │ │ │ │ ├── search_by_name_kind.out │ │ │ │ ├── search_by_name_kind.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild.out │ │ │ │ ├── search_by_name_kind_anymatch_wild.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.out │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.perf │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.out │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.perf │ │ │ │ ├── search_by_name_kind_class.out │ │ │ │ ├── search_by_name_kind_class.perf │ │ │ │ ├── search_by_name_kind_class_namespace.out │ │ │ │ ├── search_by_name_kind_class_namespace.perf │ │ │ │ ├── search_by_name_kind_enum.out │ │ │ │ ├── search_by_name_kind_enum.perf │ │ │ │ ├── search_by_name_kind_enumerator.out │ │ │ │ ├── search_by_name_kind_enumerator.perf │ │ │ │ ├── search_by_name_kind_function.out │ │ │ │ ├── search_by_name_kind_function.perf │ │ │ │ ├── search_by_name_kind_function_prefix.out │ │ │ │ ├── search_by_name_kind_function_prefix.perf │ │ │ │ ├── search_by_name_kind_namespace.out │ │ │ │ ├── search_by_name_kind_namespace.perf │ │ │ │ ├── search_by_name_kind_no_match.out │ │ │ │ ├── search_by_name_kind_no_match.perf │ │ │ │ ├── search_by_name_kind_no_match_enumerator.out │ │ │ │ ├── search_by_name_kind_no_match_enumerator.perf │ │ │ │ ├── search_by_name_kind_no_match_filtered.out │ │ │ │ ├── search_by_name_kind_no_match_filtered.perf │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_function.out │ │ │ │ ├── search_by_name_kind_nomatch_function.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.out │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.perf │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.out │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.perf │ │ │ │ ├── search_by_name_kind_nomatch_using.out │ │ │ │ ├── search_by_name_kind_nomatch_using.perf │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.out │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.perf │ │ │ │ ├── search_by_name_kind_nomatch_variable.out │ │ │ │ ├── search_by_name_kind_nomatch_variable.perf │ │ │ │ ├── search_by_name_kind_nothing_anymatch.out │ │ │ │ ├── search_by_name_kind_nothing_anymatch.perf │ │ │ │ ├── search_by_name_kind_objc_interface.out │ │ │ │ ├── search_by_name_kind_objc_interface.perf │ │ │ │ ├── search_by_name_kind_struct.out │ │ │ │ ├── search_by_name_kind_struct.perf │ │ │ │ ├── search_by_name_kind_struct_union_enum.out │ │ │ │ ├── search_by_name_kind_struct_union_enum.perf │ │ │ │ ├── search_by_name_kind_type.out │ │ │ │ ├── search_by_name_kind_type.perf │ │ │ │ ├── search_by_name_kind_union.out │ │ │ │ ├── search_by_name_kind_union.perf │ │ │ │ ├── search_by_name_kind_using.out │ │ │ │ ├── search_by_name_kind_using.perf │ │ │ │ ├── search_by_name_kind_variable.out │ │ │ │ ├── search_by_name_kind_variable.perf │ │ │ │ ├── search_by_scope.out │ │ │ │ ├── search_by_scope.perf │ │ │ │ ├── search_by_scope_record.out │ │ │ │ ├── search_by_scope_record.perf │ │ │ │ ├── search_by_scope_record_ignorecase.out │ │ │ │ ├── search_by_scope_record_ignorecase.perf │ │ │ │ ├── search_insensitive_exact_exactkind.out │ │ │ │ ├── search_insensitive_exact_exactkind.perf │ │ │ │ ├── search_insensitive_exact_nokind.out │ │ │ │ ├── search_insensitive_exact_nokind.perf │ │ │ │ ├── search_insensitive_prefix_exactkind.out │ │ │ │ ├── search_insensitive_prefix_exactkind.perf │ │ │ │ ├── search_insensitive_prefix_exactkindplus.out │ │ │ │ ├── search_insensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_insensitive_prefix_nokind.out │ │ │ │ ├── search_insensitive_prefix_nokind.perf │ │ │ │ ├── search_kind_class.out │ │ │ │ ├── search_kind_class.perf │ │ │ │ ├── search_kind_class_neg.out │ │ │ │ ├── search_kind_class_neg.perf │ │ │ │ ├── search_kind_enum.out │ │ │ │ ├── search_kind_enum.perf │ │ │ │ ├── search_kind_enum_neg.out │ │ │ │ ├── search_kind_enum_neg.perf │ │ │ │ ├── search_kind_namespace.out │ │ │ │ ├── search_kind_namespace.perf │ │ │ │ ├── search_kind_namespace_neg.out │ │ │ │ ├── search_kind_namespace_neg.perf │ │ │ │ ├── search_kind_struct.out │ │ │ │ ├── search_kind_struct.perf │ │ │ │ ├── search_kind_struct_neg.out │ │ │ │ ├── search_kind_struct_neg.perf │ │ │ │ ├── search_kind_union.out │ │ │ │ ├── search_kind_union.perf │ │ │ │ ├── search_kind_union_neg.out │ │ │ │ ├── search_kind_union_neg.perf │ │ │ │ ├── search_related_contains_child.out │ │ │ │ ├── search_related_contains_child.perf │ │ │ │ ├── search_related_contains_child_namespace.out │ │ │ │ ├── search_related_contains_child_namespace.perf │ │ │ │ ├── search_sensitive_exact_exactkind.out │ │ │ │ ├── search_sensitive_exact_exactkind.perf │ │ │ │ ├── search_sensitive_exact_exactkindplus.out │ │ │ │ ├── search_sensitive_exact_exactkindplus.perf │ │ │ │ ├── search_sensitive_exact_language.out │ │ │ │ ├── search_sensitive_exact_language.perf │ │ │ │ ├── search_sensitive_exact_multilanguage.out │ │ │ │ ├── search_sensitive_exact_multilanguage.perf │ │ │ │ ├── search_sensitive_exact_nokind.out │ │ │ │ ├── search_sensitive_exact_nokind.perf │ │ │ │ ├── search_sensitive_exact_notlanguage.out │ │ │ │ ├── search_sensitive_exact_notlanguage.perf │ │ │ │ ├── search_sensitive_prefix_exactkind.out │ │ │ │ ├── search_sensitive_prefix_exactkind.perf │ │ │ │ ├── search_sensitive_prefix_exactkindplus.out │ │ │ │ ├── search_sensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_sensitive_prefix_nokind.out │ │ │ │ ├── search_sensitive_prefix_nokind.perf │ │ │ │ ├── searchbyname.out │ │ │ │ ├── srcfiles.out │ │ │ │ ├── test.cpp │ │ │ │ ├── typealias_lowercase.out │ │ │ │ └── variable_lowercase.out │ │ │ │ ├── cxxFileXRefs.out │ │ │ │ ├── cxxFileXRefs.perf │ │ │ │ ├── cxxFileXRefs.query │ │ │ │ ├── cxx_entity_location.out │ │ │ │ ├── cxx_entity_location.perf │ │ │ │ ├── cxx_entity_location.query │ │ │ │ ├── decltodeftodecl.out │ │ │ │ ├── decltodeftodecl.perf │ │ │ │ ├── decltodeftodecl.query │ │ │ │ ├── enum_lowercase.out │ │ │ │ ├── enum_lowercase.query │ │ │ │ ├── enumerator_lowercase.out │ │ │ │ ├── enumerator_lowercase.query │ │ │ │ ├── fileentities.out │ │ │ │ ├── fileentities.query │ │ │ │ ├── fileentityinfo.out │ │ │ │ ├── fileentityinfo.query │ │ │ │ ├── fileentityxrefkind.out │ │ │ │ ├── fileentityxrefkind.query │ │ │ │ ├── fileentityxrefs.out │ │ │ │ ├── fileentityxrefs.query │ │ │ │ ├── fileentityxrefsgeneric.out │ │ │ │ ├── fileentityxrefsgeneric.query │ │ │ │ ├── filexrefmap.out │ │ │ │ ├── filexrefmap.query │ │ │ │ ├── function_name_lowercase.out │ │ │ │ ├── function_name_lowercase.query │ │ │ │ ├── macro1 │ │ │ │ ├── CxxContainsParentEntity_decl.out │ │ │ │ ├── CxxContainsParentEntity_decl.perf │ │ │ │ ├── CxxContainsParentEntity_defn.out │ │ │ │ ├── CxxContainsParentEntity_defn.perf │ │ │ │ ├── CxxFileEntityIdl.out │ │ │ │ ├── CxxFileEntityIdl.perf │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.out │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.out │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.perf │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ ├── PpEntityTraceXRefLocations.out │ │ │ │ ├── PpEntityTraceXRefLocations.perf │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.out │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.perf │ │ │ │ ├── codemarkup_EntityReferences_decl.out │ │ │ │ ├── codemarkup_EntityReferences_decl.perf │ │ │ │ ├── codemarkup_EntityReferences_defn.out │ │ │ │ ├── codemarkup_EntityReferences_defn.perf │ │ │ │ ├── codemarkup_EntityReferences_enum.out │ │ │ │ ├── codemarkup_EntityReferences_enum.perf │ │ │ │ ├── codemarkup_EntitySource.out │ │ │ │ ├── codemarkup_EntitySource.perf │ │ │ │ ├── codemarkup_searchbyname.out │ │ │ │ ├── cxxFileXRefs.out │ │ │ │ ├── cxxFileXRefs.perf │ │ │ │ ├── cxx_entity_location.out │ │ │ │ ├── cxx_entity_location.perf │ │ │ │ ├── decltodeftodecl.out │ │ │ │ ├── decltodeftodecl.perf │ │ │ │ ├── enum_lowercase.out │ │ │ │ ├── enumerator_lowercase.out │ │ │ │ ├── fileentities.out │ │ │ │ ├── fileentityinfo.out │ │ │ │ ├── fileentityxrefkind.out │ │ │ │ ├── fileentityxrefs.out │ │ │ │ ├── fileentityxrefsgeneric.out │ │ │ │ ├── filexrefmap.out │ │ │ │ ├── function_name_lowercase.out │ │ │ │ ├── ppPPEntityLocation.out │ │ │ │ ├── ppPPEntityLocation.perf │ │ │ │ ├── pp_PpIncludeXRefLocations.out │ │ │ │ ├── record_name_lowercase_class.out │ │ │ │ ├── record_name_lowercase_struct.out │ │ │ │ ├── record_name_lowercase_union.out │ │ │ │ ├── search_by_name_kind.out │ │ │ │ ├── search_by_name_kind.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild.out │ │ │ │ ├── search_by_name_kind_anymatch_wild.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.out │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.perf │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.out │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.perf │ │ │ │ ├── search_by_name_kind_class.out │ │ │ │ ├── search_by_name_kind_class.perf │ │ │ │ ├── search_by_name_kind_class_namespace.out │ │ │ │ ├── search_by_name_kind_class_namespace.perf │ │ │ │ ├── search_by_name_kind_enum.out │ │ │ │ ├── search_by_name_kind_enum.perf │ │ │ │ ├── search_by_name_kind_enumerator.out │ │ │ │ ├── search_by_name_kind_enumerator.perf │ │ │ │ ├── search_by_name_kind_function.out │ │ │ │ ├── search_by_name_kind_function.perf │ │ │ │ ├── search_by_name_kind_function_prefix.out │ │ │ │ ├── search_by_name_kind_function_prefix.perf │ │ │ │ ├── search_by_name_kind_namespace.out │ │ │ │ ├── search_by_name_kind_namespace.perf │ │ │ │ ├── search_by_name_kind_no_match.out │ │ │ │ ├── search_by_name_kind_no_match.perf │ │ │ │ ├── search_by_name_kind_no_match_enumerator.out │ │ │ │ ├── search_by_name_kind_no_match_enumerator.perf │ │ │ │ ├── search_by_name_kind_no_match_filtered.out │ │ │ │ ├── search_by_name_kind_no_match_filtered.perf │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_function.out │ │ │ │ ├── search_by_name_kind_nomatch_function.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.out │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.perf │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.out │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.perf │ │ │ │ ├── search_by_name_kind_nomatch_using.out │ │ │ │ ├── search_by_name_kind_nomatch_using.perf │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.out │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.perf │ │ │ │ ├── search_by_name_kind_nomatch_variable.out │ │ │ │ ├── search_by_name_kind_nomatch_variable.perf │ │ │ │ ├── search_by_name_kind_nothing_anymatch.out │ │ │ │ ├── search_by_name_kind_nothing_anymatch.perf │ │ │ │ ├── search_by_name_kind_objc_interface.out │ │ │ │ ├── search_by_name_kind_objc_interface.perf │ │ │ │ ├── search_by_name_kind_struct.out │ │ │ │ ├── search_by_name_kind_struct.perf │ │ │ │ ├── search_by_name_kind_struct_union_enum.out │ │ │ │ ├── search_by_name_kind_struct_union_enum.perf │ │ │ │ ├── search_by_name_kind_type.out │ │ │ │ ├── search_by_name_kind_type.perf │ │ │ │ ├── search_by_name_kind_union.out │ │ │ │ ├── search_by_name_kind_union.perf │ │ │ │ ├── search_by_name_kind_using.out │ │ │ │ ├── search_by_name_kind_using.perf │ │ │ │ ├── search_by_name_kind_variable.out │ │ │ │ ├── search_by_name_kind_variable.perf │ │ │ │ ├── search_by_scope.out │ │ │ │ ├── search_by_scope.perf │ │ │ │ ├── search_by_scope_record.out │ │ │ │ ├── search_by_scope_record.perf │ │ │ │ ├── search_by_scope_record_ignorecase.out │ │ │ │ ├── search_by_scope_record_ignorecase.perf │ │ │ │ ├── search_insensitive_exact_exactkind.out │ │ │ │ ├── search_insensitive_exact_exactkind.perf │ │ │ │ ├── search_insensitive_exact_nokind.out │ │ │ │ ├── search_insensitive_exact_nokind.perf │ │ │ │ ├── search_insensitive_prefix_exactkind.out │ │ │ │ ├── search_insensitive_prefix_exactkind.perf │ │ │ │ ├── search_insensitive_prefix_exactkindplus.out │ │ │ │ ├── search_insensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_insensitive_prefix_nokind.out │ │ │ │ ├── search_insensitive_prefix_nokind.perf │ │ │ │ ├── search_kind_class.out │ │ │ │ ├── search_kind_class.perf │ │ │ │ ├── search_kind_class_neg.out │ │ │ │ ├── search_kind_class_neg.perf │ │ │ │ ├── search_kind_enum.out │ │ │ │ ├── search_kind_enum.perf │ │ │ │ ├── search_kind_enum_neg.out │ │ │ │ ├── search_kind_enum_neg.perf │ │ │ │ ├── search_kind_namespace.out │ │ │ │ ├── search_kind_namespace.perf │ │ │ │ ├── search_kind_namespace_neg.out │ │ │ │ ├── search_kind_namespace_neg.perf │ │ │ │ ├── search_kind_struct.out │ │ │ │ ├── search_kind_struct.perf │ │ │ │ ├── search_kind_struct_neg.out │ │ │ │ ├── search_kind_struct_neg.perf │ │ │ │ ├── search_kind_union.out │ │ │ │ ├── search_kind_union.perf │ │ │ │ ├── search_kind_union_neg.out │ │ │ │ ├── search_kind_union_neg.perf │ │ │ │ ├── search_related_contains_child.out │ │ │ │ ├── search_related_contains_child.perf │ │ │ │ ├── search_related_contains_child_namespace.out │ │ │ │ ├── search_related_contains_child_namespace.perf │ │ │ │ ├── search_sensitive_exact_exactkind.out │ │ │ │ ├── search_sensitive_exact_exactkind.perf │ │ │ │ ├── search_sensitive_exact_exactkindplus.out │ │ │ │ ├── search_sensitive_exact_exactkindplus.perf │ │ │ │ ├── search_sensitive_exact_language.out │ │ │ │ ├── search_sensitive_exact_language.perf │ │ │ │ ├── search_sensitive_exact_multilanguage.out │ │ │ │ ├── search_sensitive_exact_multilanguage.perf │ │ │ │ ├── search_sensitive_exact_nokind.out │ │ │ │ ├── search_sensitive_exact_nokind.perf │ │ │ │ ├── search_sensitive_exact_notlanguage.out │ │ │ │ ├── search_sensitive_exact_notlanguage.perf │ │ │ │ ├── search_sensitive_prefix_exactkind.out │ │ │ │ ├── search_sensitive_prefix_exactkind.perf │ │ │ │ ├── search_sensitive_prefix_exactkindplus.out │ │ │ │ ├── search_sensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_sensitive_prefix_nokind.out │ │ │ │ ├── search_sensitive_prefix_nokind.perf │ │ │ │ ├── searchbyname.out │ │ │ │ ├── srcfiles.out │ │ │ │ ├── test.cpp │ │ │ │ ├── typealias_lowercase.out │ │ │ │ └── variable_lowercase.out │ │ │ │ ├── macro2 │ │ │ │ ├── CxxContainsParentEntity_decl.out │ │ │ │ ├── CxxContainsParentEntity_decl.perf │ │ │ │ ├── CxxContainsParentEntity_defn.out │ │ │ │ ├── CxxContainsParentEntity_defn.perf │ │ │ │ ├── CxxFileEntityIdl.out │ │ │ │ ├── CxxFileEntityIdl.perf │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.out │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.out │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.perf │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ ├── PpEntityTraceXRefLocations.out │ │ │ │ ├── PpEntityTraceXRefLocations.perf │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.out │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.perf │ │ │ │ ├── codemarkup_EntityReferences_decl.out │ │ │ │ ├── codemarkup_EntityReferences_decl.perf │ │ │ │ ├── codemarkup_EntityReferences_defn.out │ │ │ │ ├── codemarkup_EntityReferences_defn.perf │ │ │ │ ├── codemarkup_EntityReferences_enum.out │ │ │ │ ├── codemarkup_EntityReferences_enum.perf │ │ │ │ ├── codemarkup_EntitySource.out │ │ │ │ ├── codemarkup_EntitySource.perf │ │ │ │ ├── codemarkup_searchbyname.out │ │ │ │ ├── cxxFileXRefs.out │ │ │ │ ├── cxxFileXRefs.perf │ │ │ │ ├── cxx_entity_location.out │ │ │ │ ├── cxx_entity_location.perf │ │ │ │ ├── decltodeftodecl.out │ │ │ │ ├── decltodeftodecl.perf │ │ │ │ ├── enum_lowercase.out │ │ │ │ ├── enumerator_lowercase.out │ │ │ │ ├── fileentities.out │ │ │ │ ├── fileentityinfo.out │ │ │ │ ├── fileentityxrefkind.out │ │ │ │ ├── fileentityxrefs.out │ │ │ │ ├── fileentityxrefsgeneric.out │ │ │ │ ├── filexrefmap.out │ │ │ │ ├── function_name_lowercase.out │ │ │ │ ├── ppPPEntityLocation.out │ │ │ │ ├── ppPPEntityLocation.perf │ │ │ │ ├── pp_PpIncludeXRefLocations.out │ │ │ │ ├── record_name_lowercase_class.out │ │ │ │ ├── record_name_lowercase_struct.out │ │ │ │ ├── record_name_lowercase_union.out │ │ │ │ ├── search_by_name_kind.out │ │ │ │ ├── search_by_name_kind.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild.out │ │ │ │ ├── search_by_name_kind_anymatch_wild.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.out │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.perf │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.out │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.perf │ │ │ │ ├── search_by_name_kind_class.out │ │ │ │ ├── search_by_name_kind_class.perf │ │ │ │ ├── search_by_name_kind_class_namespace.out │ │ │ │ ├── search_by_name_kind_class_namespace.perf │ │ │ │ ├── search_by_name_kind_enum.out │ │ │ │ ├── search_by_name_kind_enum.perf │ │ │ │ ├── search_by_name_kind_enumerator.out │ │ │ │ ├── search_by_name_kind_enumerator.perf │ │ │ │ ├── search_by_name_kind_function.out │ │ │ │ ├── search_by_name_kind_function.perf │ │ │ │ ├── search_by_name_kind_function_prefix.out │ │ │ │ ├── search_by_name_kind_function_prefix.perf │ │ │ │ ├── search_by_name_kind_namespace.out │ │ │ │ ├── search_by_name_kind_namespace.perf │ │ │ │ ├── search_by_name_kind_no_match.out │ │ │ │ ├── search_by_name_kind_no_match.perf │ │ │ │ ├── search_by_name_kind_no_match_enumerator.out │ │ │ │ ├── search_by_name_kind_no_match_enumerator.perf │ │ │ │ ├── search_by_name_kind_no_match_filtered.out │ │ │ │ ├── search_by_name_kind_no_match_filtered.perf │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_function.out │ │ │ │ ├── search_by_name_kind_nomatch_function.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.out │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.perf │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.out │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.perf │ │ │ │ ├── search_by_name_kind_nomatch_using.out │ │ │ │ ├── search_by_name_kind_nomatch_using.perf │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.out │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.perf │ │ │ │ ├── search_by_name_kind_nomatch_variable.out │ │ │ │ ├── search_by_name_kind_nomatch_variable.perf │ │ │ │ ├── search_by_name_kind_nothing_anymatch.out │ │ │ │ ├── search_by_name_kind_nothing_anymatch.perf │ │ │ │ ├── search_by_name_kind_objc_interface.out │ │ │ │ ├── search_by_name_kind_objc_interface.perf │ │ │ │ ├── search_by_name_kind_struct.out │ │ │ │ ├── search_by_name_kind_struct.perf │ │ │ │ ├── search_by_name_kind_struct_union_enum.out │ │ │ │ ├── search_by_name_kind_struct_union_enum.perf │ │ │ │ ├── search_by_name_kind_type.out │ │ │ │ ├── search_by_name_kind_type.perf │ │ │ │ ├── search_by_name_kind_union.out │ │ │ │ ├── search_by_name_kind_union.perf │ │ │ │ ├── search_by_name_kind_using.out │ │ │ │ ├── search_by_name_kind_using.perf │ │ │ │ ├── search_by_name_kind_variable.out │ │ │ │ ├── search_by_name_kind_variable.perf │ │ │ │ ├── search_by_scope.out │ │ │ │ ├── search_by_scope.perf │ │ │ │ ├── search_by_scope_record.out │ │ │ │ ├── search_by_scope_record.perf │ │ │ │ ├── search_by_scope_record_ignorecase.out │ │ │ │ ├── search_by_scope_record_ignorecase.perf │ │ │ │ ├── search_insensitive_exact_exactkind.out │ │ │ │ ├── search_insensitive_exact_exactkind.perf │ │ │ │ ├── search_insensitive_exact_nokind.out │ │ │ │ ├── search_insensitive_exact_nokind.perf │ │ │ │ ├── search_insensitive_prefix_exactkind.out │ │ │ │ ├── search_insensitive_prefix_exactkind.perf │ │ │ │ ├── search_insensitive_prefix_exactkindplus.out │ │ │ │ ├── search_insensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_insensitive_prefix_nokind.out │ │ │ │ ├── search_insensitive_prefix_nokind.perf │ │ │ │ ├── search_kind_class.out │ │ │ │ ├── search_kind_class.perf │ │ │ │ ├── search_kind_class_neg.out │ │ │ │ ├── search_kind_class_neg.perf │ │ │ │ ├── search_kind_enum.out │ │ │ │ ├── search_kind_enum.perf │ │ │ │ ├── search_kind_enum_neg.out │ │ │ │ ├── search_kind_enum_neg.perf │ │ │ │ ├── search_kind_namespace.out │ │ │ │ ├── search_kind_namespace.perf │ │ │ │ ├── search_kind_namespace_neg.out │ │ │ │ ├── search_kind_namespace_neg.perf │ │ │ │ ├── search_kind_struct.out │ │ │ │ ├── search_kind_struct.perf │ │ │ │ ├── search_kind_struct_neg.out │ │ │ │ ├── search_kind_struct_neg.perf │ │ │ │ ├── search_kind_union.out │ │ │ │ ├── search_kind_union.perf │ │ │ │ ├── search_kind_union_neg.out │ │ │ │ ├── search_kind_union_neg.perf │ │ │ │ ├── search_related_contains_child.out │ │ │ │ ├── search_related_contains_child.perf │ │ │ │ ├── search_related_contains_child_namespace.out │ │ │ │ ├── search_related_contains_child_namespace.perf │ │ │ │ ├── search_sensitive_exact_exactkind.out │ │ │ │ ├── search_sensitive_exact_exactkind.perf │ │ │ │ ├── search_sensitive_exact_exactkindplus.out │ │ │ │ ├── search_sensitive_exact_exactkindplus.perf │ │ │ │ ├── search_sensitive_exact_language.out │ │ │ │ ├── search_sensitive_exact_language.perf │ │ │ │ ├── search_sensitive_exact_multilanguage.out │ │ │ │ ├── search_sensitive_exact_multilanguage.perf │ │ │ │ ├── search_sensitive_exact_nokind.out │ │ │ │ ├── search_sensitive_exact_nokind.perf │ │ │ │ ├── search_sensitive_exact_notlanguage.out │ │ │ │ ├── search_sensitive_exact_notlanguage.perf │ │ │ │ ├── search_sensitive_prefix_exactkind.out │ │ │ │ ├── search_sensitive_prefix_exactkind.perf │ │ │ │ ├── search_sensitive_prefix_exactkindplus.out │ │ │ │ ├── search_sensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_sensitive_prefix_nokind.out │ │ │ │ ├── search_sensitive_prefix_nokind.perf │ │ │ │ ├── searchbyname.out │ │ │ │ ├── srcfiles.out │ │ │ │ ├── test.cpp │ │ │ │ ├── typealias_lowercase.out │ │ │ │ └── variable_lowercase.out │ │ │ │ ├── macro3 │ │ │ │ ├── CxxContainsParentEntity_decl.out │ │ │ │ ├── CxxContainsParentEntity_decl.perf │ │ │ │ ├── CxxContainsParentEntity_defn.out │ │ │ │ ├── CxxContainsParentEntity_defn.perf │ │ │ │ ├── CxxFileEntityIdl.out │ │ │ │ ├── CxxFileEntityIdl.perf │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.out │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.out │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.perf │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ ├── PpEntityTraceXRefLocations.out │ │ │ │ ├── PpEntityTraceXRefLocations.perf │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.out │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.perf │ │ │ │ ├── codemarkup_EntityReferences_decl.out │ │ │ │ ├── codemarkup_EntityReferences_decl.perf │ │ │ │ ├── codemarkup_EntityReferences_defn.out │ │ │ │ ├── codemarkup_EntityReferences_defn.perf │ │ │ │ ├── codemarkup_EntityReferences_enum.out │ │ │ │ ├── codemarkup_EntityReferences_enum.perf │ │ │ │ ├── codemarkup_EntitySource.out │ │ │ │ ├── codemarkup_EntitySource.perf │ │ │ │ ├── codemarkup_searchbyname.out │ │ │ │ ├── cxxFileXRefs.out │ │ │ │ ├── cxxFileXRefs.perf │ │ │ │ ├── cxx_entity_location.out │ │ │ │ ├── cxx_entity_location.perf │ │ │ │ ├── decltodeftodecl.out │ │ │ │ ├── decltodeftodecl.perf │ │ │ │ ├── enum_lowercase.out │ │ │ │ ├── enumerator_lowercase.out │ │ │ │ ├── fileentities.out │ │ │ │ ├── fileentityinfo.out │ │ │ │ ├── fileentityxrefkind.out │ │ │ │ ├── fileentityxrefs.out │ │ │ │ ├── fileentityxrefsgeneric.out │ │ │ │ ├── filexrefmap.out │ │ │ │ ├── function_name_lowercase.out │ │ │ │ ├── ppPPEntityLocation.out │ │ │ │ ├── ppPPEntityLocation.perf │ │ │ │ ├── pp_PpIncludeXRefLocations.out │ │ │ │ ├── record_name_lowercase_class.out │ │ │ │ ├── record_name_lowercase_struct.out │ │ │ │ ├── record_name_lowercase_union.out │ │ │ │ ├── search_by_name_kind.out │ │ │ │ ├── search_by_name_kind.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild.out │ │ │ │ ├── search_by_name_kind_anymatch_wild.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.out │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.perf │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.out │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.perf │ │ │ │ ├── search_by_name_kind_class.out │ │ │ │ ├── search_by_name_kind_class.perf │ │ │ │ ├── search_by_name_kind_class_namespace.out │ │ │ │ ├── search_by_name_kind_class_namespace.perf │ │ │ │ ├── search_by_name_kind_enum.out │ │ │ │ ├── search_by_name_kind_enum.perf │ │ │ │ ├── search_by_name_kind_enumerator.out │ │ │ │ ├── search_by_name_kind_enumerator.perf │ │ │ │ ├── search_by_name_kind_function.out │ │ │ │ ├── search_by_name_kind_function.perf │ │ │ │ ├── search_by_name_kind_function_prefix.out │ │ │ │ ├── search_by_name_kind_function_prefix.perf │ │ │ │ ├── search_by_name_kind_namespace.out │ │ │ │ ├── search_by_name_kind_namespace.perf │ │ │ │ ├── search_by_name_kind_no_match.out │ │ │ │ ├── search_by_name_kind_no_match.perf │ │ │ │ ├── search_by_name_kind_no_match_enumerator.out │ │ │ │ ├── search_by_name_kind_no_match_enumerator.perf │ │ │ │ ├── search_by_name_kind_no_match_filtered.out │ │ │ │ ├── search_by_name_kind_no_match_filtered.perf │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_function.out │ │ │ │ ├── search_by_name_kind_nomatch_function.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.out │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.perf │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.out │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.perf │ │ │ │ ├── search_by_name_kind_nomatch_using.out │ │ │ │ ├── search_by_name_kind_nomatch_using.perf │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.out │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.perf │ │ │ │ ├── search_by_name_kind_nomatch_variable.out │ │ │ │ ├── search_by_name_kind_nomatch_variable.perf │ │ │ │ ├── search_by_name_kind_nothing_anymatch.out │ │ │ │ ├── search_by_name_kind_nothing_anymatch.perf │ │ │ │ ├── search_by_name_kind_objc_interface.out │ │ │ │ ├── search_by_name_kind_objc_interface.perf │ │ │ │ ├── search_by_name_kind_struct.out │ │ │ │ ├── search_by_name_kind_struct.perf │ │ │ │ ├── search_by_name_kind_struct_union_enum.out │ │ │ │ ├── search_by_name_kind_struct_union_enum.perf │ │ │ │ ├── search_by_name_kind_type.out │ │ │ │ ├── search_by_name_kind_type.perf │ │ │ │ ├── search_by_name_kind_union.out │ │ │ │ ├── search_by_name_kind_union.perf │ │ │ │ ├── search_by_name_kind_using.out │ │ │ │ ├── search_by_name_kind_using.perf │ │ │ │ ├── search_by_name_kind_variable.out │ │ │ │ ├── search_by_name_kind_variable.perf │ │ │ │ ├── search_by_scope.out │ │ │ │ ├── search_by_scope.perf │ │ │ │ ├── search_by_scope_record.out │ │ │ │ ├── search_by_scope_record.perf │ │ │ │ ├── search_by_scope_record_ignorecase.out │ │ │ │ ├── search_by_scope_record_ignorecase.perf │ │ │ │ ├── search_insensitive_exact_exactkind.out │ │ │ │ ├── search_insensitive_exact_exactkind.perf │ │ │ │ ├── search_insensitive_exact_nokind.out │ │ │ │ ├── search_insensitive_exact_nokind.perf │ │ │ │ ├── search_insensitive_prefix_exactkind.out │ │ │ │ ├── search_insensitive_prefix_exactkind.perf │ │ │ │ ├── search_insensitive_prefix_exactkindplus.out │ │ │ │ ├── search_insensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_insensitive_prefix_nokind.out │ │ │ │ ├── search_insensitive_prefix_nokind.perf │ │ │ │ ├── search_kind_class.out │ │ │ │ ├── search_kind_class.perf │ │ │ │ ├── search_kind_class_neg.out │ │ │ │ ├── search_kind_class_neg.perf │ │ │ │ ├── search_kind_enum.out │ │ │ │ ├── search_kind_enum.perf │ │ │ │ ├── search_kind_enum_neg.out │ │ │ │ ├── search_kind_enum_neg.perf │ │ │ │ ├── search_kind_namespace.out │ │ │ │ ├── search_kind_namespace.perf │ │ │ │ ├── search_kind_namespace_neg.out │ │ │ │ ├── search_kind_namespace_neg.perf │ │ │ │ ├── search_kind_struct.out │ │ │ │ ├── search_kind_struct.perf │ │ │ │ ├── search_kind_struct_neg.out │ │ │ │ ├── search_kind_struct_neg.perf │ │ │ │ ├── search_kind_union.out │ │ │ │ ├── search_kind_union.perf │ │ │ │ ├── search_kind_union_neg.out │ │ │ │ ├── search_kind_union_neg.perf │ │ │ │ ├── search_related_contains_child.out │ │ │ │ ├── search_related_contains_child.perf │ │ │ │ ├── search_related_contains_child_namespace.out │ │ │ │ ├── search_related_contains_child_namespace.perf │ │ │ │ ├── search_sensitive_exact_exactkind.out │ │ │ │ ├── search_sensitive_exact_exactkind.perf │ │ │ │ ├── search_sensitive_exact_exactkindplus.out │ │ │ │ ├── search_sensitive_exact_exactkindplus.perf │ │ │ │ ├── search_sensitive_exact_language.out │ │ │ │ ├── search_sensitive_exact_language.perf │ │ │ │ ├── search_sensitive_exact_multilanguage.out │ │ │ │ ├── search_sensitive_exact_multilanguage.perf │ │ │ │ ├── search_sensitive_exact_nokind.out │ │ │ │ ├── search_sensitive_exact_nokind.perf │ │ │ │ ├── search_sensitive_exact_notlanguage.out │ │ │ │ ├── search_sensitive_exact_notlanguage.perf │ │ │ │ ├── search_sensitive_prefix_exactkind.out │ │ │ │ ├── search_sensitive_prefix_exactkind.perf │ │ │ │ ├── search_sensitive_prefix_exactkindplus.out │ │ │ │ ├── search_sensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_sensitive_prefix_nokind.out │ │ │ │ ├── search_sensitive_prefix_nokind.perf │ │ │ │ ├── searchbyname.out │ │ │ │ ├── srcfiles.out │ │ │ │ ├── test.cpp │ │ │ │ ├── typealias_lowercase.out │ │ │ │ └── variable_lowercase.out │ │ │ │ ├── macro4 │ │ │ │ ├── CxxContainsParentEntity_decl.out │ │ │ │ ├── CxxContainsParentEntity_decl.perf │ │ │ │ ├── CxxContainsParentEntity_defn.out │ │ │ │ ├── CxxContainsParentEntity_defn.perf │ │ │ │ ├── CxxFileEntityIdl.out │ │ │ │ ├── CxxFileEntityIdl.perf │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.out │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.out │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.perf │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ ├── PpEntityTraceXRefLocations.out │ │ │ │ ├── PpEntityTraceXRefLocations.perf │ │ │ │ ├── a.h │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.out │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.perf │ │ │ │ ├── codemarkup_EntityReferences_decl.out │ │ │ │ ├── codemarkup_EntityReferences_decl.perf │ │ │ │ ├── codemarkup_EntityReferences_defn.out │ │ │ │ ├── codemarkup_EntityReferences_defn.perf │ │ │ │ ├── codemarkup_EntityReferences_enum.out │ │ │ │ ├── codemarkup_EntityReferences_enum.perf │ │ │ │ ├── codemarkup_EntitySource.out │ │ │ │ ├── codemarkup_EntitySource.perf │ │ │ │ ├── codemarkup_searchbyname.out │ │ │ │ ├── cxxFileXRefs.out │ │ │ │ ├── cxxFileXRefs.perf │ │ │ │ ├── cxx_entity_location.out │ │ │ │ ├── cxx_entity_location.perf │ │ │ │ ├── decltodeftodecl.out │ │ │ │ ├── decltodeftodecl.perf │ │ │ │ ├── enum_lowercase.out │ │ │ │ ├── enumerator_lowercase.out │ │ │ │ ├── fileentities.out │ │ │ │ ├── fileentityinfo.out │ │ │ │ ├── fileentityxrefkind.out │ │ │ │ ├── fileentityxrefs.out │ │ │ │ ├── fileentityxrefsgeneric.out │ │ │ │ ├── filexrefmap.out │ │ │ │ ├── function_name_lowercase.out │ │ │ │ ├── ppPPEntityLocation.out │ │ │ │ ├── ppPPEntityLocation.perf │ │ │ │ ├── pp_PpIncludeXRefLocations.out │ │ │ │ ├── record_name_lowercase_class.out │ │ │ │ ├── record_name_lowercase_struct.out │ │ │ │ ├── record_name_lowercase_union.out │ │ │ │ ├── search_by_name_kind.out │ │ │ │ ├── search_by_name_kind.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild.out │ │ │ │ ├── search_by_name_kind_anymatch_wild.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.out │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.perf │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.out │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.perf │ │ │ │ ├── search_by_name_kind_class.out │ │ │ │ ├── search_by_name_kind_class.perf │ │ │ │ ├── search_by_name_kind_class_namespace.out │ │ │ │ ├── search_by_name_kind_class_namespace.perf │ │ │ │ ├── search_by_name_kind_enum.out │ │ │ │ ├── search_by_name_kind_enum.perf │ │ │ │ ├── search_by_name_kind_enumerator.out │ │ │ │ ├── search_by_name_kind_enumerator.perf │ │ │ │ ├── search_by_name_kind_function.out │ │ │ │ ├── search_by_name_kind_function.perf │ │ │ │ ├── search_by_name_kind_function_prefix.out │ │ │ │ ├── search_by_name_kind_function_prefix.perf │ │ │ │ ├── search_by_name_kind_namespace.out │ │ │ │ ├── search_by_name_kind_namespace.perf │ │ │ │ ├── search_by_name_kind_no_match.out │ │ │ │ ├── search_by_name_kind_no_match.perf │ │ │ │ ├── search_by_name_kind_no_match_enumerator.out │ │ │ │ ├── search_by_name_kind_no_match_enumerator.perf │ │ │ │ ├── search_by_name_kind_no_match_filtered.out │ │ │ │ ├── search_by_name_kind_no_match_filtered.perf │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_function.out │ │ │ │ ├── search_by_name_kind_nomatch_function.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.out │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.perf │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.out │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.perf │ │ │ │ ├── search_by_name_kind_nomatch_using.out │ │ │ │ ├── search_by_name_kind_nomatch_using.perf │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.out │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.perf │ │ │ │ ├── search_by_name_kind_nomatch_variable.out │ │ │ │ ├── search_by_name_kind_nomatch_variable.perf │ │ │ │ ├── search_by_name_kind_nothing_anymatch.out │ │ │ │ ├── search_by_name_kind_nothing_anymatch.perf │ │ │ │ ├── search_by_name_kind_objc_interface.out │ │ │ │ ├── search_by_name_kind_objc_interface.perf │ │ │ │ ├── search_by_name_kind_struct.out │ │ │ │ ├── search_by_name_kind_struct.perf │ │ │ │ ├── search_by_name_kind_struct_union_enum.out │ │ │ │ ├── search_by_name_kind_struct_union_enum.perf │ │ │ │ ├── search_by_name_kind_type.out │ │ │ │ ├── search_by_name_kind_type.perf │ │ │ │ ├── search_by_name_kind_union.out │ │ │ │ ├── search_by_name_kind_union.perf │ │ │ │ ├── search_by_name_kind_using.out │ │ │ │ ├── search_by_name_kind_using.perf │ │ │ │ ├── search_by_name_kind_variable.out │ │ │ │ ├── search_by_name_kind_variable.perf │ │ │ │ ├── search_by_scope.out │ │ │ │ ├── search_by_scope.perf │ │ │ │ ├── search_by_scope_record.out │ │ │ │ ├── search_by_scope_record.perf │ │ │ │ ├── search_by_scope_record_ignorecase.out │ │ │ │ ├── search_by_scope_record_ignorecase.perf │ │ │ │ ├── search_insensitive_exact_exactkind.out │ │ │ │ ├── search_insensitive_exact_exactkind.perf │ │ │ │ ├── search_insensitive_exact_nokind.out │ │ │ │ ├── search_insensitive_exact_nokind.perf │ │ │ │ ├── search_insensitive_prefix_exactkind.out │ │ │ │ ├── search_insensitive_prefix_exactkind.perf │ │ │ │ ├── search_insensitive_prefix_exactkindplus.out │ │ │ │ ├── search_insensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_insensitive_prefix_nokind.out │ │ │ │ ├── search_insensitive_prefix_nokind.perf │ │ │ │ ├── search_kind_class.out │ │ │ │ ├── search_kind_class.perf │ │ │ │ ├── search_kind_class_neg.out │ │ │ │ ├── search_kind_class_neg.perf │ │ │ │ ├── search_kind_enum.out │ │ │ │ ├── search_kind_enum.perf │ │ │ │ ├── search_kind_enum_neg.out │ │ │ │ ├── search_kind_enum_neg.perf │ │ │ │ ├── search_kind_namespace.out │ │ │ │ ├── search_kind_namespace.perf │ │ │ │ ├── search_kind_namespace_neg.out │ │ │ │ ├── search_kind_namespace_neg.perf │ │ │ │ ├── search_kind_struct.out │ │ │ │ ├── search_kind_struct.perf │ │ │ │ ├── search_kind_struct_neg.out │ │ │ │ ├── search_kind_struct_neg.perf │ │ │ │ ├── search_kind_union.out │ │ │ │ ├── search_kind_union.perf │ │ │ │ ├── search_kind_union_neg.out │ │ │ │ ├── search_kind_union_neg.perf │ │ │ │ ├── search_related_contains_child.out │ │ │ │ ├── search_related_contains_child.perf │ │ │ │ ├── search_related_contains_child_namespace.out │ │ │ │ ├── search_related_contains_child_namespace.perf │ │ │ │ ├── search_sensitive_exact_exactkind.out │ │ │ │ ├── search_sensitive_exact_exactkind.perf │ │ │ │ ├── search_sensitive_exact_exactkindplus.out │ │ │ │ ├── search_sensitive_exact_exactkindplus.perf │ │ │ │ ├── search_sensitive_exact_language.out │ │ │ │ ├── search_sensitive_exact_language.perf │ │ │ │ ├── search_sensitive_exact_multilanguage.out │ │ │ │ ├── search_sensitive_exact_multilanguage.perf │ │ │ │ ├── search_sensitive_exact_nokind.out │ │ │ │ ├── search_sensitive_exact_nokind.perf │ │ │ │ ├── search_sensitive_exact_notlanguage.out │ │ │ │ ├── search_sensitive_exact_notlanguage.perf │ │ │ │ ├── search_sensitive_prefix_exactkind.out │ │ │ │ ├── search_sensitive_prefix_exactkind.perf │ │ │ │ ├── search_sensitive_prefix_exactkindplus.out │ │ │ │ ├── search_sensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_sensitive_prefix_nokind.out │ │ │ │ ├── search_sensitive_prefix_nokind.perf │ │ │ │ ├── searchbyname.out │ │ │ │ ├── srcfiles.out │ │ │ │ ├── test.cpp │ │ │ │ ├── typealias_lowercase.out │ │ │ │ └── variable_lowercase.out │ │ │ │ ├── member-xlang │ │ │ │ ├── CxxContainsParentEntity_decl.out │ │ │ │ ├── CxxContainsParentEntity_decl.perf │ │ │ │ ├── CxxContainsParentEntity_defn.out │ │ │ │ ├── CxxContainsParentEntity_defn.perf │ │ │ │ ├── CxxFileEntityIdl.out │ │ │ │ ├── CxxFileEntityIdl.perf │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.out │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.out │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.perf │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ ├── PpEntityTraceXRefLocations.out │ │ │ │ ├── PpEntityTraceXRefLocations.perf │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.out │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.perf │ │ │ │ ├── codemarkup_EntityReferences_decl.out │ │ │ │ ├── codemarkup_EntityReferences_decl.perf │ │ │ │ ├── codemarkup_EntityReferences_defn.out │ │ │ │ ├── codemarkup_EntityReferences_defn.perf │ │ │ │ ├── codemarkup_EntityReferences_enum.out │ │ │ │ ├── codemarkup_EntityReferences_enum.perf │ │ │ │ ├── codemarkup_EntitySource.out │ │ │ │ ├── codemarkup_EntitySource.perf │ │ │ │ ├── codemarkup_searchbyname.out │ │ │ │ ├── cxxFileXRefs.out │ │ │ │ ├── cxxFileXRefs.perf │ │ │ │ ├── cxx_entity_location.out │ │ │ │ ├── cxx_entity_location.perf │ │ │ │ ├── decltodeftodecl.out │ │ │ │ ├── decltodeftodecl.perf │ │ │ │ ├── enum_lowercase.out │ │ │ │ ├── enumerator_lowercase.out │ │ │ │ ├── fileentities.out │ │ │ │ ├── fileentityinfo.out │ │ │ │ ├── fileentityxrefkind.out │ │ │ │ ├── fileentityxrefs.out │ │ │ │ ├── fileentityxrefsgeneric.out │ │ │ │ ├── filexrefmap.out │ │ │ │ ├── function_name_lowercase.out │ │ │ │ ├── ppPPEntityLocation.out │ │ │ │ ├── ppPPEntityLocation.perf │ │ │ │ ├── pp_PpIncludeXRefLocations.out │ │ │ │ ├── record_name_lowercase_class.out │ │ │ │ ├── record_name_lowercase_struct.out │ │ │ │ ├── record_name_lowercase_union.out │ │ │ │ ├── search_by_name_kind.out │ │ │ │ ├── search_by_name_kind.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild.out │ │ │ │ ├── search_by_name_kind_anymatch_wild.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.out │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.perf │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.out │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.perf │ │ │ │ ├── search_by_name_kind_class.out │ │ │ │ ├── search_by_name_kind_class.perf │ │ │ │ ├── search_by_name_kind_class_namespace.out │ │ │ │ ├── search_by_name_kind_class_namespace.perf │ │ │ │ ├── search_by_name_kind_enum.out │ │ │ │ ├── search_by_name_kind_enum.perf │ │ │ │ ├── search_by_name_kind_enumerator.out │ │ │ │ ├── search_by_name_kind_enumerator.perf │ │ │ │ ├── search_by_name_kind_function.out │ │ │ │ ├── search_by_name_kind_function.perf │ │ │ │ ├── search_by_name_kind_function_prefix.out │ │ │ │ ├── search_by_name_kind_function_prefix.perf │ │ │ │ ├── search_by_name_kind_namespace.out │ │ │ │ ├── search_by_name_kind_namespace.perf │ │ │ │ ├── search_by_name_kind_no_match.out │ │ │ │ ├── search_by_name_kind_no_match.perf │ │ │ │ ├── search_by_name_kind_no_match_enumerator.out │ │ │ │ ├── search_by_name_kind_no_match_enumerator.perf │ │ │ │ ├── search_by_name_kind_no_match_filtered.out │ │ │ │ ├── search_by_name_kind_no_match_filtered.perf │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_function.out │ │ │ │ ├── search_by_name_kind_nomatch_function.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.out │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.perf │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.out │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.perf │ │ │ │ ├── search_by_name_kind_nomatch_using.out │ │ │ │ ├── search_by_name_kind_nomatch_using.perf │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.out │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.perf │ │ │ │ ├── search_by_name_kind_nomatch_variable.out │ │ │ │ ├── search_by_name_kind_nomatch_variable.perf │ │ │ │ ├── search_by_name_kind_nothing_anymatch.out │ │ │ │ ├── search_by_name_kind_nothing_anymatch.perf │ │ │ │ ├── search_by_name_kind_objc_interface.out │ │ │ │ ├── search_by_name_kind_objc_interface.perf │ │ │ │ ├── search_by_name_kind_struct.out │ │ │ │ ├── search_by_name_kind_struct.perf │ │ │ │ ├── search_by_name_kind_struct_union_enum.out │ │ │ │ ├── search_by_name_kind_struct_union_enum.perf │ │ │ │ ├── search_by_name_kind_type.out │ │ │ │ ├── search_by_name_kind_type.perf │ │ │ │ ├── search_by_name_kind_union.out │ │ │ │ ├── search_by_name_kind_union.perf │ │ │ │ ├── search_by_name_kind_using.out │ │ │ │ ├── search_by_name_kind_using.perf │ │ │ │ ├── search_by_name_kind_variable.out │ │ │ │ ├── search_by_name_kind_variable.perf │ │ │ │ ├── search_by_scope.out │ │ │ │ ├── search_by_scope.perf │ │ │ │ ├── search_by_scope_record.out │ │ │ │ ├── search_by_scope_record.perf │ │ │ │ ├── search_by_scope_record_ignorecase.out │ │ │ │ ├── search_by_scope_record_ignorecase.perf │ │ │ │ ├── search_insensitive_exact_exactkind.out │ │ │ │ ├── search_insensitive_exact_exactkind.perf │ │ │ │ ├── search_insensitive_exact_nokind.out │ │ │ │ ├── search_insensitive_exact_nokind.perf │ │ │ │ ├── search_insensitive_prefix_exactkind.out │ │ │ │ ├── search_insensitive_prefix_exactkind.perf │ │ │ │ ├── search_insensitive_prefix_exactkindplus.out │ │ │ │ ├── search_insensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_insensitive_prefix_nokind.out │ │ │ │ ├── search_insensitive_prefix_nokind.perf │ │ │ │ ├── search_kind_class.out │ │ │ │ ├── search_kind_class.perf │ │ │ │ ├── search_kind_class_neg.out │ │ │ │ ├── search_kind_class_neg.perf │ │ │ │ ├── search_kind_enum.out │ │ │ │ ├── search_kind_enum.perf │ │ │ │ ├── search_kind_enum_neg.out │ │ │ │ ├── search_kind_enum_neg.perf │ │ │ │ ├── search_kind_namespace.out │ │ │ │ ├── search_kind_namespace.perf │ │ │ │ ├── search_kind_namespace_neg.out │ │ │ │ ├── search_kind_namespace_neg.perf │ │ │ │ ├── search_kind_struct.out │ │ │ │ ├── search_kind_struct.perf │ │ │ │ ├── search_kind_struct_neg.out │ │ │ │ ├── search_kind_struct_neg.perf │ │ │ │ ├── search_kind_union.out │ │ │ │ ├── search_kind_union.perf │ │ │ │ ├── search_kind_union_neg.out │ │ │ │ ├── search_kind_union_neg.perf │ │ │ │ ├── search_related_contains_child.out │ │ │ │ ├── search_related_contains_child.perf │ │ │ │ ├── search_related_contains_child_namespace.out │ │ │ │ ├── search_related_contains_child_namespace.perf │ │ │ │ ├── search_sensitive_exact_exactkind.out │ │ │ │ ├── search_sensitive_exact_exactkind.perf │ │ │ │ ├── search_sensitive_exact_exactkindplus.out │ │ │ │ ├── search_sensitive_exact_exactkindplus.perf │ │ │ │ ├── search_sensitive_exact_language.out │ │ │ │ ├── search_sensitive_exact_language.perf │ │ │ │ ├── search_sensitive_exact_multilanguage.out │ │ │ │ ├── search_sensitive_exact_multilanguage.perf │ │ │ │ ├── search_sensitive_exact_nokind.out │ │ │ │ ├── search_sensitive_exact_nokind.perf │ │ │ │ ├── search_sensitive_exact_notlanguage.out │ │ │ │ ├── search_sensitive_exact_notlanguage.perf │ │ │ │ ├── search_sensitive_prefix_exactkind.out │ │ │ │ ├── search_sensitive_prefix_exactkind.perf │ │ │ │ ├── search_sensitive_prefix_exactkindplus.out │ │ │ │ ├── search_sensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_sensitive_prefix_nokind.out │ │ │ │ ├── search_sensitive_prefix_nokind.perf │ │ │ │ ├── searchbyname.out │ │ │ │ ├── srcfiles.out │ │ │ │ ├── test.cpp │ │ │ │ ├── typealias_lowercase.out │ │ │ │ └── variable_lowercase.out │ │ │ │ ├── member1 │ │ │ │ ├── CxxContainsParentEntity_decl.out │ │ │ │ ├── CxxContainsParentEntity_decl.perf │ │ │ │ ├── CxxContainsParentEntity_defn.out │ │ │ │ ├── CxxContainsParentEntity_defn.perf │ │ │ │ ├── CxxFileEntityIdl.out │ │ │ │ ├── CxxFileEntityIdl.perf │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.out │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.out │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.perf │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ ├── PpEntityTraceXRefLocations.out │ │ │ │ ├── PpEntityTraceXRefLocations.perf │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.out │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.perf │ │ │ │ ├── codemarkup_EntityReferences_decl.out │ │ │ │ ├── codemarkup_EntityReferences_decl.perf │ │ │ │ ├── codemarkup_EntityReferences_defn.out │ │ │ │ ├── codemarkup_EntityReferences_defn.perf │ │ │ │ ├── codemarkup_EntityReferences_enum.out │ │ │ │ ├── codemarkup_EntityReferences_enum.perf │ │ │ │ ├── codemarkup_EntitySource.out │ │ │ │ ├── codemarkup_EntitySource.perf │ │ │ │ ├── codemarkup_searchbyname.out │ │ │ │ ├── cxxFileXRefs.out │ │ │ │ ├── cxxFileXRefs.perf │ │ │ │ ├── cxx_entity_location.out │ │ │ │ ├── cxx_entity_location.perf │ │ │ │ ├── decltodeftodecl.out │ │ │ │ ├── decltodeftodecl.perf │ │ │ │ ├── enum_lowercase.out │ │ │ │ ├── enumerator_lowercase.out │ │ │ │ ├── fileentities.out │ │ │ │ ├── fileentityinfo.out │ │ │ │ ├── fileentityxrefkind.out │ │ │ │ ├── fileentityxrefs.out │ │ │ │ ├── fileentityxrefsgeneric.out │ │ │ │ ├── filexrefmap.out │ │ │ │ ├── function_name_lowercase.out │ │ │ │ ├── ppPPEntityLocation.out │ │ │ │ ├── ppPPEntityLocation.perf │ │ │ │ ├── pp_PpIncludeXRefLocations.out │ │ │ │ ├── record_name_lowercase_class.out │ │ │ │ ├── record_name_lowercase_struct.out │ │ │ │ ├── record_name_lowercase_union.out │ │ │ │ ├── search_by_name_kind.out │ │ │ │ ├── search_by_name_kind.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild.out │ │ │ │ ├── search_by_name_kind_anymatch_wild.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.out │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.perf │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.out │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.perf │ │ │ │ ├── search_by_name_kind_class.out │ │ │ │ ├── search_by_name_kind_class.perf │ │ │ │ ├── search_by_name_kind_class_namespace.out │ │ │ │ ├── search_by_name_kind_class_namespace.perf │ │ │ │ ├── search_by_name_kind_enum.out │ │ │ │ ├── search_by_name_kind_enum.perf │ │ │ │ ├── search_by_name_kind_enumerator.out │ │ │ │ ├── search_by_name_kind_enumerator.perf │ │ │ │ ├── search_by_name_kind_function.out │ │ │ │ ├── search_by_name_kind_function.perf │ │ │ │ ├── search_by_name_kind_function_prefix.out │ │ │ │ ├── search_by_name_kind_function_prefix.perf │ │ │ │ ├── search_by_name_kind_namespace.out │ │ │ │ ├── search_by_name_kind_namespace.perf │ │ │ │ ├── search_by_name_kind_no_match.out │ │ │ │ ├── search_by_name_kind_no_match.perf │ │ │ │ ├── search_by_name_kind_no_match_enumerator.out │ │ │ │ ├── search_by_name_kind_no_match_enumerator.perf │ │ │ │ ├── search_by_name_kind_no_match_filtered.out │ │ │ │ ├── search_by_name_kind_no_match_filtered.perf │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_function.out │ │ │ │ ├── search_by_name_kind_nomatch_function.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.out │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.perf │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.out │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.perf │ │ │ │ ├── search_by_name_kind_nomatch_using.out │ │ │ │ ├── search_by_name_kind_nomatch_using.perf │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.out │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.perf │ │ │ │ ├── search_by_name_kind_nomatch_variable.out │ │ │ │ ├── search_by_name_kind_nomatch_variable.perf │ │ │ │ ├── search_by_name_kind_nothing_anymatch.out │ │ │ │ ├── search_by_name_kind_nothing_anymatch.perf │ │ │ │ ├── search_by_name_kind_objc_interface.out │ │ │ │ ├── search_by_name_kind_objc_interface.perf │ │ │ │ ├── search_by_name_kind_struct.out │ │ │ │ ├── search_by_name_kind_struct.perf │ │ │ │ ├── search_by_name_kind_struct_union_enum.out │ │ │ │ ├── search_by_name_kind_struct_union_enum.perf │ │ │ │ ├── search_by_name_kind_type.out │ │ │ │ ├── search_by_name_kind_type.perf │ │ │ │ ├── search_by_name_kind_union.out │ │ │ │ ├── search_by_name_kind_union.perf │ │ │ │ ├── search_by_name_kind_using.out │ │ │ │ ├── search_by_name_kind_using.perf │ │ │ │ ├── search_by_name_kind_variable.out │ │ │ │ ├── search_by_name_kind_variable.perf │ │ │ │ ├── search_by_scope.out │ │ │ │ ├── search_by_scope.perf │ │ │ │ ├── search_by_scope_record.out │ │ │ │ ├── search_by_scope_record.perf │ │ │ │ ├── search_by_scope_record_ignorecase.out │ │ │ │ ├── search_by_scope_record_ignorecase.perf │ │ │ │ ├── search_insensitive_exact_exactkind.out │ │ │ │ ├── search_insensitive_exact_exactkind.perf │ │ │ │ ├── search_insensitive_exact_nokind.out │ │ │ │ ├── search_insensitive_exact_nokind.perf │ │ │ │ ├── search_insensitive_prefix_exactkind.out │ │ │ │ ├── search_insensitive_prefix_exactkind.perf │ │ │ │ ├── search_insensitive_prefix_exactkindplus.out │ │ │ │ ├── search_insensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_insensitive_prefix_nokind.out │ │ │ │ ├── search_insensitive_prefix_nokind.perf │ │ │ │ ├── search_kind_class.out │ │ │ │ ├── search_kind_class.perf │ │ │ │ ├── search_kind_class_neg.out │ │ │ │ ├── search_kind_class_neg.perf │ │ │ │ ├── search_kind_enum.out │ │ │ │ ├── search_kind_enum.perf │ │ │ │ ├── search_kind_enum_neg.out │ │ │ │ ├── search_kind_enum_neg.perf │ │ │ │ ├── search_kind_namespace.out │ │ │ │ ├── search_kind_namespace.perf │ │ │ │ ├── search_kind_namespace_neg.out │ │ │ │ ├── search_kind_namespace_neg.perf │ │ │ │ ├── search_kind_struct.out │ │ │ │ ├── search_kind_struct.perf │ │ │ │ ├── search_kind_struct_neg.out │ │ │ │ ├── search_kind_struct_neg.perf │ │ │ │ ├── search_kind_union.out │ │ │ │ ├── search_kind_union.perf │ │ │ │ ├── search_kind_union_neg.out │ │ │ │ ├── search_kind_union_neg.perf │ │ │ │ ├── search_related_contains_child.out │ │ │ │ ├── search_related_contains_child.perf │ │ │ │ ├── search_related_contains_child_namespace.out │ │ │ │ ├── search_related_contains_child_namespace.perf │ │ │ │ ├── search_sensitive_exact_exactkind.out │ │ │ │ ├── search_sensitive_exact_exactkind.perf │ │ │ │ ├── search_sensitive_exact_exactkindplus.out │ │ │ │ ├── search_sensitive_exact_exactkindplus.perf │ │ │ │ ├── search_sensitive_exact_language.out │ │ │ │ ├── search_sensitive_exact_language.perf │ │ │ │ ├── search_sensitive_exact_multilanguage.out │ │ │ │ ├── search_sensitive_exact_multilanguage.perf │ │ │ │ ├── search_sensitive_exact_nokind.out │ │ │ │ ├── search_sensitive_exact_nokind.perf │ │ │ │ ├── search_sensitive_exact_notlanguage.out │ │ │ │ ├── search_sensitive_exact_notlanguage.perf │ │ │ │ ├── search_sensitive_prefix_exactkind.out │ │ │ │ ├── search_sensitive_prefix_exactkind.perf │ │ │ │ ├── search_sensitive_prefix_exactkindplus.out │ │ │ │ ├── search_sensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_sensitive_prefix_nokind.out │ │ │ │ ├── search_sensitive_prefix_nokind.perf │ │ │ │ ├── searchbyname.out │ │ │ │ ├── srcfiles.out │ │ │ │ ├── test.cpp │ │ │ │ ├── typealias_lowercase.out │ │ │ │ └── variable_lowercase.out │ │ │ │ ├── multifile-xlang │ │ │ │ ├── CxxContainsParentEntity_decl.out │ │ │ │ ├── CxxContainsParentEntity_decl.perf │ │ │ │ ├── CxxContainsParentEntity_defn.out │ │ │ │ ├── CxxContainsParentEntity_defn.perf │ │ │ │ ├── CxxFileEntityIdl.out │ │ │ │ ├── CxxFileEntityIdl.perf │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.out │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.out │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.perf │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ ├── PpEntityTraceXRefLocations.out │ │ │ │ ├── PpEntityTraceXRefLocations.perf │ │ │ │ ├── a.h │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.out │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.perf │ │ │ │ ├── codemarkup_EntityReferences_decl.out │ │ │ │ ├── codemarkup_EntityReferences_decl.perf │ │ │ │ ├── codemarkup_EntityReferences_defn.out │ │ │ │ ├── codemarkup_EntityReferences_defn.perf │ │ │ │ ├── codemarkup_EntityReferences_enum.out │ │ │ │ ├── codemarkup_EntityReferences_enum.perf │ │ │ │ ├── codemarkup_EntitySource.out │ │ │ │ ├── codemarkup_EntitySource.perf │ │ │ │ ├── codemarkup_searchbyname.out │ │ │ │ ├── cxxFileXRefs.out │ │ │ │ ├── cxxFileXRefs.perf │ │ │ │ ├── cxx_entity_location.out │ │ │ │ ├── cxx_entity_location.perf │ │ │ │ ├── decltodeftodecl.out │ │ │ │ ├── decltodeftodecl.perf │ │ │ │ ├── enum_lowercase.out │ │ │ │ ├── enumerator_lowercase.out │ │ │ │ ├── fileentities.out │ │ │ │ ├── fileentityinfo.out │ │ │ │ ├── fileentityxrefkind.out │ │ │ │ ├── fileentityxrefs.out │ │ │ │ ├── fileentityxrefsgeneric.out │ │ │ │ ├── filexrefmap.out │ │ │ │ ├── function_name_lowercase.out │ │ │ │ ├── ppPPEntityLocation.out │ │ │ │ ├── ppPPEntityLocation.perf │ │ │ │ ├── pp_PpIncludeXRefLocations.out │ │ │ │ ├── record_name_lowercase_class.out │ │ │ │ ├── record_name_lowercase_struct.out │ │ │ │ ├── record_name_lowercase_union.out │ │ │ │ ├── search_by_name_kind.out │ │ │ │ ├── search_by_name_kind.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild.out │ │ │ │ ├── search_by_name_kind_anymatch_wild.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.out │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.perf │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.out │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.perf │ │ │ │ ├── search_by_name_kind_class.out │ │ │ │ ├── search_by_name_kind_class.perf │ │ │ │ ├── search_by_name_kind_class_namespace.out │ │ │ │ ├── search_by_name_kind_class_namespace.perf │ │ │ │ ├── search_by_name_kind_enum.out │ │ │ │ ├── search_by_name_kind_enum.perf │ │ │ │ ├── search_by_name_kind_enumerator.out │ │ │ │ ├── search_by_name_kind_enumerator.perf │ │ │ │ ├── search_by_name_kind_function.out │ │ │ │ ├── search_by_name_kind_function.perf │ │ │ │ ├── search_by_name_kind_function_prefix.out │ │ │ │ ├── search_by_name_kind_function_prefix.perf │ │ │ │ ├── search_by_name_kind_namespace.out │ │ │ │ ├── search_by_name_kind_namespace.perf │ │ │ │ ├── search_by_name_kind_no_match.out │ │ │ │ ├── search_by_name_kind_no_match.perf │ │ │ │ ├── search_by_name_kind_no_match_enumerator.out │ │ │ │ ├── search_by_name_kind_no_match_enumerator.perf │ │ │ │ ├── search_by_name_kind_no_match_filtered.out │ │ │ │ ├── search_by_name_kind_no_match_filtered.perf │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_function.out │ │ │ │ ├── search_by_name_kind_nomatch_function.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.out │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.perf │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.out │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.perf │ │ │ │ ├── search_by_name_kind_nomatch_using.out │ │ │ │ ├── search_by_name_kind_nomatch_using.perf │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.out │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.perf │ │ │ │ ├── search_by_name_kind_nomatch_variable.out │ │ │ │ ├── search_by_name_kind_nomatch_variable.perf │ │ │ │ ├── search_by_name_kind_nothing_anymatch.out │ │ │ │ ├── search_by_name_kind_nothing_anymatch.perf │ │ │ │ ├── search_by_name_kind_objc_interface.out │ │ │ │ ├── search_by_name_kind_objc_interface.perf │ │ │ │ ├── search_by_name_kind_struct.out │ │ │ │ ├── search_by_name_kind_struct.perf │ │ │ │ ├── search_by_name_kind_struct_union_enum.out │ │ │ │ ├── search_by_name_kind_struct_union_enum.perf │ │ │ │ ├── search_by_name_kind_type.out │ │ │ │ ├── search_by_name_kind_type.perf │ │ │ │ ├── search_by_name_kind_union.out │ │ │ │ ├── search_by_name_kind_union.perf │ │ │ │ ├── search_by_name_kind_using.out │ │ │ │ ├── search_by_name_kind_using.perf │ │ │ │ ├── search_by_name_kind_variable.out │ │ │ │ ├── search_by_name_kind_variable.perf │ │ │ │ ├── search_by_scope.out │ │ │ │ ├── search_by_scope.perf │ │ │ │ ├── search_by_scope_record.out │ │ │ │ ├── search_by_scope_record.perf │ │ │ │ ├── search_by_scope_record_ignorecase.out │ │ │ │ ├── search_by_scope_record_ignorecase.perf │ │ │ │ ├── search_insensitive_exact_exactkind.out │ │ │ │ ├── search_insensitive_exact_exactkind.perf │ │ │ │ ├── search_insensitive_exact_nokind.out │ │ │ │ ├── search_insensitive_exact_nokind.perf │ │ │ │ ├── search_insensitive_prefix_exactkind.out │ │ │ │ ├── search_insensitive_prefix_exactkind.perf │ │ │ │ ├── search_insensitive_prefix_exactkindplus.out │ │ │ │ ├── search_insensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_insensitive_prefix_nokind.out │ │ │ │ ├── search_insensitive_prefix_nokind.perf │ │ │ │ ├── search_kind_class.out │ │ │ │ ├── search_kind_class.perf │ │ │ │ ├── search_kind_class_neg.out │ │ │ │ ├── search_kind_class_neg.perf │ │ │ │ ├── search_kind_enum.out │ │ │ │ ├── search_kind_enum.perf │ │ │ │ ├── search_kind_enum_neg.out │ │ │ │ ├── search_kind_enum_neg.perf │ │ │ │ ├── search_kind_namespace.out │ │ │ │ ├── search_kind_namespace.perf │ │ │ │ ├── search_kind_namespace_neg.out │ │ │ │ ├── search_kind_namespace_neg.perf │ │ │ │ ├── search_kind_struct.out │ │ │ │ ├── search_kind_struct.perf │ │ │ │ ├── search_kind_struct_neg.out │ │ │ │ ├── search_kind_struct_neg.perf │ │ │ │ ├── search_kind_union.out │ │ │ │ ├── search_kind_union.perf │ │ │ │ ├── search_kind_union_neg.out │ │ │ │ ├── search_kind_union_neg.perf │ │ │ │ ├── search_related_contains_child.out │ │ │ │ ├── search_related_contains_child.perf │ │ │ │ ├── search_related_contains_child_namespace.out │ │ │ │ ├── search_related_contains_child_namespace.perf │ │ │ │ ├── search_sensitive_exact_exactkind.out │ │ │ │ ├── search_sensitive_exact_exactkind.perf │ │ │ │ ├── search_sensitive_exact_exactkindplus.out │ │ │ │ ├── search_sensitive_exact_exactkindplus.perf │ │ │ │ ├── search_sensitive_exact_language.out │ │ │ │ ├── search_sensitive_exact_language.perf │ │ │ │ ├── search_sensitive_exact_multilanguage.out │ │ │ │ ├── search_sensitive_exact_multilanguage.perf │ │ │ │ ├── search_sensitive_exact_nokind.out │ │ │ │ ├── search_sensitive_exact_nokind.perf │ │ │ │ ├── search_sensitive_exact_notlanguage.out │ │ │ │ ├── search_sensitive_exact_notlanguage.perf │ │ │ │ ├── search_sensitive_prefix_exactkind.out │ │ │ │ ├── search_sensitive_prefix_exactkind.perf │ │ │ │ ├── search_sensitive_prefix_exactkindplus.out │ │ │ │ ├── search_sensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_sensitive_prefix_nokind.out │ │ │ │ ├── search_sensitive_prefix_nokind.perf │ │ │ │ ├── searchbyname.out │ │ │ │ ├── srcfiles.out │ │ │ │ ├── test.cpp │ │ │ │ ├── typealias_lowercase.out │ │ │ │ └── variable_lowercase.out │ │ │ │ ├── multifile1 │ │ │ │ ├── CxxContainsParentEntity_decl.out │ │ │ │ ├── CxxContainsParentEntity_decl.perf │ │ │ │ ├── CxxContainsParentEntity_defn.out │ │ │ │ ├── CxxContainsParentEntity_defn.perf │ │ │ │ ├── CxxFileEntityIdl.out │ │ │ │ ├── CxxFileEntityIdl.perf │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.out │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.out │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.perf │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ ├── PpEntityTraceXRefLocations.out │ │ │ │ ├── PpEntityTraceXRefLocations.perf │ │ │ │ ├── a.h │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.out │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.perf │ │ │ │ ├── codemarkup_EntityReferences_decl.out │ │ │ │ ├── codemarkup_EntityReferences_decl.perf │ │ │ │ ├── codemarkup_EntityReferences_defn.out │ │ │ │ ├── codemarkup_EntityReferences_defn.perf │ │ │ │ ├── codemarkup_EntityReferences_enum.out │ │ │ │ ├── codemarkup_EntityReferences_enum.perf │ │ │ │ ├── codemarkup_EntitySource.out │ │ │ │ ├── codemarkup_EntitySource.perf │ │ │ │ ├── codemarkup_searchbyname.out │ │ │ │ ├── cxxFileXRefs.out │ │ │ │ ├── cxxFileXRefs.perf │ │ │ │ ├── cxx_entity_location.out │ │ │ │ ├── cxx_entity_location.perf │ │ │ │ ├── decltodeftodecl.out │ │ │ │ ├── decltodeftodecl.perf │ │ │ │ ├── enum_lowercase.out │ │ │ │ ├── enumerator_lowercase.out │ │ │ │ ├── fileentities.out │ │ │ │ ├── fileentityinfo.out │ │ │ │ ├── fileentityxrefkind.out │ │ │ │ ├── fileentityxrefs.out │ │ │ │ ├── fileentityxrefsgeneric.out │ │ │ │ ├── filexrefmap.out │ │ │ │ ├── function_name_lowercase.out │ │ │ │ ├── ppPPEntityLocation.out │ │ │ │ ├── ppPPEntityLocation.perf │ │ │ │ ├── pp_PpIncludeXRefLocations.out │ │ │ │ ├── record_name_lowercase_class.out │ │ │ │ ├── record_name_lowercase_struct.out │ │ │ │ ├── record_name_lowercase_union.out │ │ │ │ ├── search_by_name_kind.out │ │ │ │ ├── search_by_name_kind.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild.out │ │ │ │ ├── search_by_name_kind_anymatch_wild.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.out │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.perf │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.out │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.perf │ │ │ │ ├── search_by_name_kind_class.out │ │ │ │ ├── search_by_name_kind_class.perf │ │ │ │ ├── search_by_name_kind_class_namespace.out │ │ │ │ ├── search_by_name_kind_class_namespace.perf │ │ │ │ ├── search_by_name_kind_enum.out │ │ │ │ ├── search_by_name_kind_enum.perf │ │ │ │ ├── search_by_name_kind_enumerator.out │ │ │ │ ├── search_by_name_kind_enumerator.perf │ │ │ │ ├── search_by_name_kind_function.out │ │ │ │ ├── search_by_name_kind_function.perf │ │ │ │ ├── search_by_name_kind_function_prefix.out │ │ │ │ ├── search_by_name_kind_function_prefix.perf │ │ │ │ ├── search_by_name_kind_namespace.out │ │ │ │ ├── search_by_name_kind_namespace.perf │ │ │ │ ├── search_by_name_kind_no_match.out │ │ │ │ ├── search_by_name_kind_no_match.perf │ │ │ │ ├── search_by_name_kind_no_match_enumerator.out │ │ │ │ ├── search_by_name_kind_no_match_enumerator.perf │ │ │ │ ├── search_by_name_kind_no_match_filtered.out │ │ │ │ ├── search_by_name_kind_no_match_filtered.perf │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_function.out │ │ │ │ ├── search_by_name_kind_nomatch_function.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.out │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.perf │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.out │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.perf │ │ │ │ ├── search_by_name_kind_nomatch_using.out │ │ │ │ ├── search_by_name_kind_nomatch_using.perf │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.out │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.perf │ │ │ │ ├── search_by_name_kind_nomatch_variable.out │ │ │ │ ├── search_by_name_kind_nomatch_variable.perf │ │ │ │ ├── search_by_name_kind_nothing_anymatch.out │ │ │ │ ├── search_by_name_kind_nothing_anymatch.perf │ │ │ │ ├── search_by_name_kind_objc_interface.out │ │ │ │ ├── search_by_name_kind_objc_interface.perf │ │ │ │ ├── search_by_name_kind_struct.out │ │ │ │ ├── search_by_name_kind_struct.perf │ │ │ │ ├── search_by_name_kind_struct_union_enum.out │ │ │ │ ├── search_by_name_kind_struct_union_enum.perf │ │ │ │ ├── search_by_name_kind_type.out │ │ │ │ ├── search_by_name_kind_type.perf │ │ │ │ ├── search_by_name_kind_union.out │ │ │ │ ├── search_by_name_kind_union.perf │ │ │ │ ├── search_by_name_kind_using.out │ │ │ │ ├── search_by_name_kind_using.perf │ │ │ │ ├── search_by_name_kind_variable.out │ │ │ │ ├── search_by_name_kind_variable.perf │ │ │ │ ├── search_by_scope.out │ │ │ │ ├── search_by_scope.perf │ │ │ │ ├── search_by_scope_record.out │ │ │ │ ├── search_by_scope_record.perf │ │ │ │ ├── search_by_scope_record_ignorecase.out │ │ │ │ ├── search_by_scope_record_ignorecase.perf │ │ │ │ ├── search_insensitive_exact_exactkind.out │ │ │ │ ├── search_insensitive_exact_exactkind.perf │ │ │ │ ├── search_insensitive_exact_nokind.out │ │ │ │ ├── search_insensitive_exact_nokind.perf │ │ │ │ ├── search_insensitive_prefix_exactkind.out │ │ │ │ ├── search_insensitive_prefix_exactkind.perf │ │ │ │ ├── search_insensitive_prefix_exactkindplus.out │ │ │ │ ├── search_insensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_insensitive_prefix_nokind.out │ │ │ │ ├── search_insensitive_prefix_nokind.perf │ │ │ │ ├── search_kind_class.out │ │ │ │ ├── search_kind_class.perf │ │ │ │ ├── search_kind_class_neg.out │ │ │ │ ├── search_kind_class_neg.perf │ │ │ │ ├── search_kind_enum.out │ │ │ │ ├── search_kind_enum.perf │ │ │ │ ├── search_kind_enum_neg.out │ │ │ │ ├── search_kind_enum_neg.perf │ │ │ │ ├── search_kind_namespace.out │ │ │ │ ├── search_kind_namespace.perf │ │ │ │ ├── search_kind_namespace_neg.out │ │ │ │ ├── search_kind_namespace_neg.perf │ │ │ │ ├── search_kind_struct.out │ │ │ │ ├── search_kind_struct.perf │ │ │ │ ├── search_kind_struct_neg.out │ │ │ │ ├── search_kind_struct_neg.perf │ │ │ │ ├── search_kind_union.out │ │ │ │ ├── search_kind_union.perf │ │ │ │ ├── search_kind_union_neg.out │ │ │ │ ├── search_kind_union_neg.perf │ │ │ │ ├── search_related_contains_child.out │ │ │ │ ├── search_related_contains_child.perf │ │ │ │ ├── search_related_contains_child_namespace.out │ │ │ │ ├── search_related_contains_child_namespace.perf │ │ │ │ ├── search_sensitive_exact_exactkind.out │ │ │ │ ├── search_sensitive_exact_exactkind.perf │ │ │ │ ├── search_sensitive_exact_exactkindplus.out │ │ │ │ ├── search_sensitive_exact_exactkindplus.perf │ │ │ │ ├── search_sensitive_exact_language.out │ │ │ │ ├── search_sensitive_exact_language.perf │ │ │ │ ├── search_sensitive_exact_multilanguage.out │ │ │ │ ├── search_sensitive_exact_multilanguage.perf │ │ │ │ ├── search_sensitive_exact_nokind.out │ │ │ │ ├── search_sensitive_exact_nokind.perf │ │ │ │ ├── search_sensitive_exact_notlanguage.out │ │ │ │ ├── search_sensitive_exact_notlanguage.perf │ │ │ │ ├── search_sensitive_prefix_exactkind.out │ │ │ │ ├── search_sensitive_prefix_exactkind.perf │ │ │ │ ├── search_sensitive_prefix_exactkindplus.out │ │ │ │ ├── search_sensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_sensitive_prefix_nokind.out │ │ │ │ ├── search_sensitive_prefix_nokind.perf │ │ │ │ ├── searchbyname.out │ │ │ │ ├── srcfiles.out │ │ │ │ ├── test.cpp │ │ │ │ ├── typealias_lowercase.out │ │ │ │ └── variable_lowercase.out │ │ │ │ ├── multifile2 │ │ │ │ ├── CxxContainsParentEntity_decl.out │ │ │ │ ├── CxxContainsParentEntity_decl.perf │ │ │ │ ├── CxxContainsParentEntity_defn.out │ │ │ │ ├── CxxContainsParentEntity_defn.perf │ │ │ │ ├── CxxFileEntityIdl.out │ │ │ │ ├── CxxFileEntityIdl.perf │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.out │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.out │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.perf │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ ├── PpEntityTraceXRefLocations.out │ │ │ │ ├── PpEntityTraceXRefLocations.perf │ │ │ │ ├── a.h │ │ │ │ ├── b.h │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.out │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.perf │ │ │ │ ├── codemarkup_EntityReferences_decl.out │ │ │ │ ├── codemarkup_EntityReferences_decl.perf │ │ │ │ ├── codemarkup_EntityReferences_defn.out │ │ │ │ ├── codemarkup_EntityReferences_defn.perf │ │ │ │ ├── codemarkup_EntityReferences_enum.out │ │ │ │ ├── codemarkup_EntityReferences_enum.perf │ │ │ │ ├── codemarkup_EntitySource.out │ │ │ │ ├── codemarkup_EntitySource.perf │ │ │ │ ├── codemarkup_searchbyname.out │ │ │ │ ├── cxxFileXRefs.out │ │ │ │ ├── cxxFileXRefs.perf │ │ │ │ ├── cxx_entity_location.out │ │ │ │ ├── cxx_entity_location.perf │ │ │ │ ├── decltodeftodecl.out │ │ │ │ ├── decltodeftodecl.perf │ │ │ │ ├── enum_lowercase.out │ │ │ │ ├── enumerator_lowercase.out │ │ │ │ ├── fileentities.out │ │ │ │ ├── fileentityinfo.out │ │ │ │ ├── fileentityxrefkind.out │ │ │ │ ├── fileentityxrefs.out │ │ │ │ ├── fileentityxrefsgeneric.out │ │ │ │ ├── filexrefmap.out │ │ │ │ ├── function_name_lowercase.out │ │ │ │ ├── ppPPEntityLocation.out │ │ │ │ ├── ppPPEntityLocation.perf │ │ │ │ ├── pp_PpIncludeXRefLocations.out │ │ │ │ ├── record_name_lowercase_class.out │ │ │ │ ├── record_name_lowercase_struct.out │ │ │ │ ├── record_name_lowercase_union.out │ │ │ │ ├── search_by_name_kind.out │ │ │ │ ├── search_by_name_kind.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild.out │ │ │ │ ├── search_by_name_kind_anymatch_wild.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.out │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.perf │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.out │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.perf │ │ │ │ ├── search_by_name_kind_class.out │ │ │ │ ├── search_by_name_kind_class.perf │ │ │ │ ├── search_by_name_kind_class_namespace.out │ │ │ │ ├── search_by_name_kind_class_namespace.perf │ │ │ │ ├── search_by_name_kind_enum.out │ │ │ │ ├── search_by_name_kind_enum.perf │ │ │ │ ├── search_by_name_kind_enumerator.out │ │ │ │ ├── search_by_name_kind_enumerator.perf │ │ │ │ ├── search_by_name_kind_function.out │ │ │ │ ├── search_by_name_kind_function.perf │ │ │ │ ├── search_by_name_kind_function_prefix.out │ │ │ │ ├── search_by_name_kind_function_prefix.perf │ │ │ │ ├── search_by_name_kind_namespace.out │ │ │ │ ├── search_by_name_kind_namespace.perf │ │ │ │ ├── search_by_name_kind_no_match.out │ │ │ │ ├── search_by_name_kind_no_match.perf │ │ │ │ ├── search_by_name_kind_no_match_enumerator.out │ │ │ │ ├── search_by_name_kind_no_match_enumerator.perf │ │ │ │ ├── search_by_name_kind_no_match_filtered.out │ │ │ │ ├── search_by_name_kind_no_match_filtered.perf │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_function.out │ │ │ │ ├── search_by_name_kind_nomatch_function.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.out │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.perf │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.out │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.perf │ │ │ │ ├── search_by_name_kind_nomatch_using.out │ │ │ │ ├── search_by_name_kind_nomatch_using.perf │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.out │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.perf │ │ │ │ ├── search_by_name_kind_nomatch_variable.out │ │ │ │ ├── search_by_name_kind_nomatch_variable.perf │ │ │ │ ├── search_by_name_kind_nothing_anymatch.out │ │ │ │ ├── search_by_name_kind_nothing_anymatch.perf │ │ │ │ ├── search_by_name_kind_objc_interface.out │ │ │ │ ├── search_by_name_kind_objc_interface.perf │ │ │ │ ├── search_by_name_kind_struct.out │ │ │ │ ├── search_by_name_kind_struct.perf │ │ │ │ ├── search_by_name_kind_struct_union_enum.out │ │ │ │ ├── search_by_name_kind_struct_union_enum.perf │ │ │ │ ├── search_by_name_kind_type.out │ │ │ │ ├── search_by_name_kind_type.perf │ │ │ │ ├── search_by_name_kind_union.out │ │ │ │ ├── search_by_name_kind_union.perf │ │ │ │ ├── search_by_name_kind_using.out │ │ │ │ ├── search_by_name_kind_using.perf │ │ │ │ ├── search_by_name_kind_variable.out │ │ │ │ ├── search_by_name_kind_variable.perf │ │ │ │ ├── search_by_scope.out │ │ │ │ ├── search_by_scope.perf │ │ │ │ ├── search_by_scope_record.out │ │ │ │ ├── search_by_scope_record.perf │ │ │ │ ├── search_by_scope_record_ignorecase.out │ │ │ │ ├── search_by_scope_record_ignorecase.perf │ │ │ │ ├── search_insensitive_exact_exactkind.out │ │ │ │ ├── search_insensitive_exact_exactkind.perf │ │ │ │ ├── search_insensitive_exact_nokind.out │ │ │ │ ├── search_insensitive_exact_nokind.perf │ │ │ │ ├── search_insensitive_prefix_exactkind.out │ │ │ │ ├── search_insensitive_prefix_exactkind.perf │ │ │ │ ├── search_insensitive_prefix_exactkindplus.out │ │ │ │ ├── search_insensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_insensitive_prefix_nokind.out │ │ │ │ ├── search_insensitive_prefix_nokind.perf │ │ │ │ ├── search_kind_class.out │ │ │ │ ├── search_kind_class.perf │ │ │ │ ├── search_kind_class_neg.out │ │ │ │ ├── search_kind_class_neg.perf │ │ │ │ ├── search_kind_enum.out │ │ │ │ ├── search_kind_enum.perf │ │ │ │ ├── search_kind_enum_neg.out │ │ │ │ ├── search_kind_enum_neg.perf │ │ │ │ ├── search_kind_namespace.out │ │ │ │ ├── search_kind_namespace.perf │ │ │ │ ├── search_kind_namespace_neg.out │ │ │ │ ├── search_kind_namespace_neg.perf │ │ │ │ ├── search_kind_struct.out │ │ │ │ ├── search_kind_struct.perf │ │ │ │ ├── search_kind_struct_neg.out │ │ │ │ ├── search_kind_struct_neg.perf │ │ │ │ ├── search_kind_union.out │ │ │ │ ├── search_kind_union.perf │ │ │ │ ├── search_kind_union_neg.out │ │ │ │ ├── search_kind_union_neg.perf │ │ │ │ ├── search_related_contains_child.out │ │ │ │ ├── search_related_contains_child.perf │ │ │ │ ├── search_related_contains_child_namespace.out │ │ │ │ ├── search_related_contains_child_namespace.perf │ │ │ │ ├── search_sensitive_exact_exactkind.out │ │ │ │ ├── search_sensitive_exact_exactkind.perf │ │ │ │ ├── search_sensitive_exact_exactkindplus.out │ │ │ │ ├── search_sensitive_exact_exactkindplus.perf │ │ │ │ ├── search_sensitive_exact_language.out │ │ │ │ ├── search_sensitive_exact_language.perf │ │ │ │ ├── search_sensitive_exact_multilanguage.out │ │ │ │ ├── search_sensitive_exact_multilanguage.perf │ │ │ │ ├── search_sensitive_exact_nokind.out │ │ │ │ ├── search_sensitive_exact_nokind.perf │ │ │ │ ├── search_sensitive_exact_notlanguage.out │ │ │ │ ├── search_sensitive_exact_notlanguage.perf │ │ │ │ ├── search_sensitive_prefix_exactkind.out │ │ │ │ ├── search_sensitive_prefix_exactkind.perf │ │ │ │ ├── search_sensitive_prefix_exactkindplus.out │ │ │ │ ├── search_sensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_sensitive_prefix_nokind.out │ │ │ │ ├── search_sensitive_prefix_nokind.perf │ │ │ │ ├── searchbyname.out │ │ │ │ ├── srcfiles.out │ │ │ │ ├── test.cpp │ │ │ │ ├── typealias_lowercase.out │ │ │ │ └── variable_lowercase.out │ │ │ │ ├── namespace-nesting │ │ │ │ ├── CxxContainsParentEntity_decl.out │ │ │ │ ├── CxxContainsParentEntity_decl.perf │ │ │ │ ├── CxxContainsParentEntity_defn.out │ │ │ │ ├── CxxContainsParentEntity_defn.perf │ │ │ │ ├── CxxFileEntityIdl.out │ │ │ │ ├── CxxFileEntityIdl.perf │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.out │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.out │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.perf │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ ├── PpEntityTraceXRefLocations.out │ │ │ │ ├── PpEntityTraceXRefLocations.perf │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.out │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.perf │ │ │ │ ├── codemarkup_EntityReferences_decl.out │ │ │ │ ├── codemarkup_EntityReferences_decl.perf │ │ │ │ ├── codemarkup_EntityReferences_defn.out │ │ │ │ ├── codemarkup_EntityReferences_defn.perf │ │ │ │ ├── codemarkup_EntityReferences_enum.out │ │ │ │ ├── codemarkup_EntityReferences_enum.perf │ │ │ │ ├── codemarkup_EntitySource.out │ │ │ │ ├── codemarkup_EntitySource.perf │ │ │ │ ├── codemarkup_searchbyname.out │ │ │ │ ├── cxxFileXRefs.out │ │ │ │ ├── cxxFileXRefs.perf │ │ │ │ ├── cxx_entity_location.out │ │ │ │ ├── cxx_entity_location.perf │ │ │ │ ├── decltodeftodecl.out │ │ │ │ ├── decltodeftodecl.perf │ │ │ │ ├── enum_lowercase.out │ │ │ │ ├── enumerator_lowercase.out │ │ │ │ ├── fileentities.out │ │ │ │ ├── fileentityinfo.out │ │ │ │ ├── fileentityxrefkind.out │ │ │ │ ├── fileentityxrefs.out │ │ │ │ ├── fileentityxrefsgeneric.out │ │ │ │ ├── filexrefmap.out │ │ │ │ ├── function_name_lowercase.out │ │ │ │ ├── ppPPEntityLocation.out │ │ │ │ ├── ppPPEntityLocation.perf │ │ │ │ ├── pp_PpIncludeXRefLocations.out │ │ │ │ ├── record_name_lowercase_class.out │ │ │ │ ├── record_name_lowercase_struct.out │ │ │ │ ├── record_name_lowercase_union.out │ │ │ │ ├── search_by_name_kind.out │ │ │ │ ├── search_by_name_kind.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild.out │ │ │ │ ├── search_by_name_kind_anymatch_wild.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.out │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.perf │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.out │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.perf │ │ │ │ ├── search_by_name_kind_class.out │ │ │ │ ├── search_by_name_kind_class.perf │ │ │ │ ├── search_by_name_kind_class_namespace.out │ │ │ │ ├── search_by_name_kind_class_namespace.perf │ │ │ │ ├── search_by_name_kind_enum.out │ │ │ │ ├── search_by_name_kind_enum.perf │ │ │ │ ├── search_by_name_kind_enumerator.out │ │ │ │ ├── search_by_name_kind_enumerator.perf │ │ │ │ ├── search_by_name_kind_function.out │ │ │ │ ├── search_by_name_kind_function.perf │ │ │ │ ├── search_by_name_kind_function_prefix.out │ │ │ │ ├── search_by_name_kind_function_prefix.perf │ │ │ │ ├── search_by_name_kind_namespace.out │ │ │ │ ├── search_by_name_kind_namespace.perf │ │ │ │ ├── search_by_name_kind_no_match.out │ │ │ │ ├── search_by_name_kind_no_match.perf │ │ │ │ ├── search_by_name_kind_no_match_enumerator.out │ │ │ │ ├── search_by_name_kind_no_match_enumerator.perf │ │ │ │ ├── search_by_name_kind_no_match_filtered.out │ │ │ │ ├── search_by_name_kind_no_match_filtered.perf │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_function.out │ │ │ │ ├── search_by_name_kind_nomatch_function.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.out │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.perf │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.out │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.perf │ │ │ │ ├── search_by_name_kind_nomatch_using.out │ │ │ │ ├── search_by_name_kind_nomatch_using.perf │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.out │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.perf │ │ │ │ ├── search_by_name_kind_nomatch_variable.out │ │ │ │ ├── search_by_name_kind_nomatch_variable.perf │ │ │ │ ├── search_by_name_kind_nothing_anymatch.out │ │ │ │ ├── search_by_name_kind_nothing_anymatch.perf │ │ │ │ ├── search_by_name_kind_objc_interface.out │ │ │ │ ├── search_by_name_kind_objc_interface.perf │ │ │ │ ├── search_by_name_kind_struct.out │ │ │ │ ├── search_by_name_kind_struct.perf │ │ │ │ ├── search_by_name_kind_struct_union_enum.out │ │ │ │ ├── search_by_name_kind_struct_union_enum.perf │ │ │ │ ├── search_by_name_kind_type.out │ │ │ │ ├── search_by_name_kind_type.perf │ │ │ │ ├── search_by_name_kind_union.out │ │ │ │ ├── search_by_name_kind_union.perf │ │ │ │ ├── search_by_name_kind_using.out │ │ │ │ ├── search_by_name_kind_using.perf │ │ │ │ ├── search_by_name_kind_variable.out │ │ │ │ ├── search_by_name_kind_variable.perf │ │ │ │ ├── search_by_scope.out │ │ │ │ ├── search_by_scope.perf │ │ │ │ ├── search_by_scope_nesting.out │ │ │ │ ├── search_by_scope_nesting.perf │ │ │ │ ├── search_by_scope_nesting.query │ │ │ │ ├── search_by_scope_nesting_1ns_1rec.out │ │ │ │ ├── search_by_scope_nesting_1ns_1rec.perf │ │ │ │ ├── search_by_scope_nesting_1ns_1rec.query │ │ │ │ ├── search_by_scope_nesting_1ns_1rec_fun.out │ │ │ │ ├── search_by_scope_nesting_1ns_1rec_fun.perf │ │ │ │ ├── search_by_scope_nesting_1ns_1rec_fun.query │ │ │ │ ├── search_by_scope_nesting_1ns_2rec_class.out │ │ │ │ ├── search_by_scope_nesting_1ns_2rec_class.perf │ │ │ │ ├── search_by_scope_nesting_1ns_2rec_class.query │ │ │ │ ├── search_by_scope_nesting_1ns_3rec.out │ │ │ │ ├── search_by_scope_nesting_1ns_3rec.perf │ │ │ │ ├── search_by_scope_nesting_1ns_3rec.query │ │ │ │ ├── search_by_scope_nesting_2ns.out │ │ │ │ ├── search_by_scope_nesting_2ns.perf │ │ │ │ ├── search_by_scope_nesting_2ns.query │ │ │ │ ├── search_by_scope_nesting_2ns_2rec_fun.out │ │ │ │ ├── search_by_scope_nesting_2ns_2rec_fun.perf │ │ │ │ ├── search_by_scope_nesting_2ns_2rec_fun.query │ │ │ │ ├── search_by_scope_nesting_2ns_nomatch_kind.out │ │ │ │ ├── search_by_scope_nesting_2ns_nomatch_kind.perf │ │ │ │ ├── search_by_scope_nesting_2ns_nomatch_kind.query │ │ │ │ ├── search_by_scope_nesting_2ns_rec_rec.out │ │ │ │ ├── search_by_scope_nesting_2ns_rec_rec.perf │ │ │ │ ├── search_by_scope_nesting_2ns_rec_rec.query │ │ │ │ ├── search_by_scope_nesting_3ns.out │ │ │ │ ├── search_by_scope_nesting_3ns.perf │ │ │ │ ├── search_by_scope_nesting_3ns.query │ │ │ │ ├── search_by_scope_nesting_4ns.out │ │ │ │ ├── search_by_scope_nesting_4ns.perf │ │ │ │ ├── search_by_scope_nesting_4ns.query │ │ │ │ ├── search_by_scope_nesting_4ns_function.out │ │ │ │ ├── search_by_scope_nesting_4ns_function.perf │ │ │ │ ├── search_by_scope_nesting_4ns_function.query │ │ │ │ ├── search_by_scope_nesting_depth_5_prefix_1.out │ │ │ │ ├── search_by_scope_nesting_depth_5_prefix_1.perf │ │ │ │ ├── search_by_scope_nesting_depth_5_prefix_1.query │ │ │ │ ├── search_by_scope_nesting_depth_5_prefix_2.out │ │ │ │ ├── search_by_scope_nesting_depth_5_prefix_2.perf │ │ │ │ ├── search_by_scope_nesting_depth_5_prefix_2.query │ │ │ │ ├── search_by_scope_nesting_depth_5_prefix_3.out │ │ │ │ ├── search_by_scope_nesting_depth_5_prefix_3.perf │ │ │ │ ├── search_by_scope_nesting_depth_5_prefix_3.query │ │ │ │ ├── search_by_scope_nesting_depth_5_prefix_4.out │ │ │ │ ├── search_by_scope_nesting_depth_5_prefix_4.perf │ │ │ │ ├── search_by_scope_nesting_depth_5_prefix_4.query │ │ │ │ ├── search_by_scope_nesting_depth_5_prefix_5.out │ │ │ │ ├── search_by_scope_nesting_depth_5_prefix_5.perf │ │ │ │ ├── search_by_scope_nesting_depth_5_prefix_5.query │ │ │ │ ├── search_by_scope_nesting_fun_in_rec_rec.out │ │ │ │ ├── search_by_scope_nesting_fun_in_rec_rec.perf │ │ │ │ ├── search_by_scope_nesting_fun_in_rec_rec.query │ │ │ │ ├── search_by_scope_nesting_ns2_rec3.out │ │ │ │ ├── search_by_scope_nesting_ns2_rec3.perf │ │ │ │ ├── search_by_scope_nesting_ns2_rec3.query │ │ │ │ ├── search_by_scope_nesting_ns3_rec3.out │ │ │ │ ├── search_by_scope_nesting_ns3_rec3.perf │ │ │ │ ├── search_by_scope_nesting_ns3_rec3.query │ │ │ │ ├── search_by_scope_nesting_ns_ns_rec_rec_fun.out │ │ │ │ ├── search_by_scope_nesting_ns_ns_rec_rec_fun.perf │ │ │ │ ├── search_by_scope_nesting_ns_ns_rec_rec_fun.query │ │ │ │ ├── search_by_scope_nesting_ns_rec_rec_fun.out │ │ │ │ ├── search_by_scope_nesting_ns_rec_rec_fun.perf │ │ │ │ ├── search_by_scope_nesting_ns_rec_rec_fun.query │ │ │ │ ├── search_by_scope_nesting_ns_record.out │ │ │ │ ├── search_by_scope_nesting_ns_record.perf │ │ │ │ ├── search_by_scope_nesting_ns_record.query │ │ │ │ ├── search_by_scope_nesting_rec_rec_rec_fun.out │ │ │ │ ├── search_by_scope_nesting_rec_rec_rec_fun.perf │ │ │ │ ├── search_by_scope_nesting_rec_rec_rec_fun.query │ │ │ │ ├── search_by_scope_ns_0.out │ │ │ │ ├── search_by_scope_ns_0.perf │ │ │ │ ├── search_by_scope_ns_0.query │ │ │ │ ├── search_by_scope_ns_1.out │ │ │ │ ├── search_by_scope_ns_1.perf │ │ │ │ ├── search_by_scope_ns_1.query │ │ │ │ ├── search_by_scope_ns_2.out │ │ │ │ ├── search_by_scope_ns_2.perf │ │ │ │ ├── search_by_scope_ns_2.query │ │ │ │ ├── search_by_scope_ns_3.out │ │ │ │ ├── search_by_scope_ns_3.perf │ │ │ │ ├── search_by_scope_ns_3.query │ │ │ │ ├── search_by_scope_ns_4.out │ │ │ │ ├── search_by_scope_ns_4.perf │ │ │ │ ├── search_by_scope_ns_4.query │ │ │ │ ├── search_by_scope_ns_5.out │ │ │ │ ├── search_by_scope_ns_5.perf │ │ │ │ ├── search_by_scope_ns_5.query │ │ │ │ ├── search_by_scope_ns_6.out │ │ │ │ ├── search_by_scope_ns_6.perf │ │ │ │ ├── search_by_scope_ns_6.query │ │ │ │ ├── search_by_scope_record.out │ │ │ │ ├── search_by_scope_record.perf │ │ │ │ ├── search_by_scope_record_ignorecase.out │ │ │ │ ├── search_by_scope_record_ignorecase.perf │ │ │ │ ├── search_by_scope_top.out │ │ │ │ ├── search_by_scope_top.perf │ │ │ │ ├── search_by_scope_top.query │ │ │ │ ├── search_insensitive_exact_exactkind.out │ │ │ │ ├── search_insensitive_exact_exactkind.perf │ │ │ │ ├── search_insensitive_exact_nokind.out │ │ │ │ ├── search_insensitive_exact_nokind.perf │ │ │ │ ├── search_insensitive_prefix_exactkind.out │ │ │ │ ├── search_insensitive_prefix_exactkind.perf │ │ │ │ ├── search_insensitive_prefix_exactkindplus.out │ │ │ │ ├── search_insensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_insensitive_prefix_nokind.out │ │ │ │ ├── search_insensitive_prefix_nokind.perf │ │ │ │ ├── search_kind_class.out │ │ │ │ ├── search_kind_class.perf │ │ │ │ ├── search_kind_class_neg.out │ │ │ │ ├── search_kind_class_neg.perf │ │ │ │ ├── search_kind_enum.out │ │ │ │ ├── search_kind_enum.perf │ │ │ │ ├── search_kind_enum_neg.out │ │ │ │ ├── search_kind_enum_neg.perf │ │ │ │ ├── search_kind_namespace.out │ │ │ │ ├── search_kind_namespace.perf │ │ │ │ ├── search_kind_namespace_neg.out │ │ │ │ ├── search_kind_namespace_neg.perf │ │ │ │ ├── search_kind_struct.out │ │ │ │ ├── search_kind_struct.perf │ │ │ │ ├── search_kind_struct_neg.out │ │ │ │ ├── search_kind_struct_neg.perf │ │ │ │ ├── search_kind_union.out │ │ │ │ ├── search_kind_union.perf │ │ │ │ ├── search_kind_union_neg.out │ │ │ │ ├── search_kind_union_neg.perf │ │ │ │ ├── search_related_contains_child.out │ │ │ │ ├── search_related_contains_child.perf │ │ │ │ ├── search_related_contains_child_namespace.out │ │ │ │ ├── search_related_contains_child_namespace.perf │ │ │ │ ├── search_sensitive_exact_exactkind.out │ │ │ │ ├── search_sensitive_exact_exactkind.perf │ │ │ │ ├── search_sensitive_exact_exactkindplus.out │ │ │ │ ├── search_sensitive_exact_exactkindplus.perf │ │ │ │ ├── search_sensitive_exact_language.out │ │ │ │ ├── search_sensitive_exact_language.perf │ │ │ │ ├── search_sensitive_exact_multilanguage.out │ │ │ │ ├── search_sensitive_exact_multilanguage.perf │ │ │ │ ├── search_sensitive_exact_nokind.out │ │ │ │ ├── search_sensitive_exact_nokind.perf │ │ │ │ ├── search_sensitive_exact_notlanguage.out │ │ │ │ ├── search_sensitive_exact_notlanguage.perf │ │ │ │ ├── search_sensitive_prefix_exactkind.out │ │ │ │ ├── search_sensitive_prefix_exactkind.perf │ │ │ │ ├── search_sensitive_prefix_exactkindplus.out │ │ │ │ ├── search_sensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_sensitive_prefix_nokind.out │ │ │ │ ├── search_sensitive_prefix_nokind.perf │ │ │ │ ├── searchbyname.out │ │ │ │ ├── srcfiles.out │ │ │ │ ├── test.cpp │ │ │ │ ├── typealias_lowercase.out │ │ │ │ └── variable_lowercase.out │ │ │ │ ├── namespace1 │ │ │ │ ├── CxxContainsParentEntity_decl.out │ │ │ │ ├── CxxContainsParentEntity_decl.perf │ │ │ │ ├── CxxContainsParentEntity_defn.out │ │ │ │ ├── CxxContainsParentEntity_defn.perf │ │ │ │ ├── CxxFileEntityIdl.out │ │ │ │ ├── CxxFileEntityIdl.perf │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.out │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.out │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.perf │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ ├── PpEntityTraceXRefLocations.out │ │ │ │ ├── PpEntityTraceXRefLocations.perf │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.out │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.perf │ │ │ │ ├── codemarkup_EntityReferences_decl.out │ │ │ │ ├── codemarkup_EntityReferences_decl.perf │ │ │ │ ├── codemarkup_EntityReferences_defn.out │ │ │ │ ├── codemarkup_EntityReferences_defn.perf │ │ │ │ ├── codemarkup_EntityReferences_enum.out │ │ │ │ ├── codemarkup_EntityReferences_enum.perf │ │ │ │ ├── codemarkup_EntitySource.out │ │ │ │ ├── codemarkup_EntitySource.perf │ │ │ │ ├── codemarkup_searchbyname.out │ │ │ │ ├── cxxFileXRefs.out │ │ │ │ ├── cxxFileXRefs.perf │ │ │ │ ├── cxx_entity_location.out │ │ │ │ ├── cxx_entity_location.perf │ │ │ │ ├── decltodeftodecl.out │ │ │ │ ├── decltodeftodecl.perf │ │ │ │ ├── enum_lowercase.out │ │ │ │ ├── enumerator_lowercase.out │ │ │ │ ├── fileentities.out │ │ │ │ ├── fileentityinfo.out │ │ │ │ ├── fileentityxrefkind.out │ │ │ │ ├── fileentityxrefs.out │ │ │ │ ├── fileentityxrefsgeneric.out │ │ │ │ ├── filexrefmap.out │ │ │ │ ├── function_name_lowercase.out │ │ │ │ ├── namespace_lowercase.out │ │ │ │ ├── namespace_lowercase.query │ │ │ │ ├── ppPPEntityLocation.out │ │ │ │ ├── ppPPEntityLocation.perf │ │ │ │ ├── pp_PpIncludeXRefLocations.out │ │ │ │ ├── record_name_lowercase_class.out │ │ │ │ ├── record_name_lowercase_struct.out │ │ │ │ ├── record_name_lowercase_union.out │ │ │ │ ├── search_by_name_kind.out │ │ │ │ ├── search_by_name_kind.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild.out │ │ │ │ ├── search_by_name_kind_anymatch_wild.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.out │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.perf │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.out │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.perf │ │ │ │ ├── search_by_name_kind_class.out │ │ │ │ ├── search_by_name_kind_class.perf │ │ │ │ ├── search_by_name_kind_class_namespace.out │ │ │ │ ├── search_by_name_kind_class_namespace.perf │ │ │ │ ├── search_by_name_kind_enum.out │ │ │ │ ├── search_by_name_kind_enum.perf │ │ │ │ ├── search_by_name_kind_enumerator.out │ │ │ │ ├── search_by_name_kind_enumerator.perf │ │ │ │ ├── search_by_name_kind_function.out │ │ │ │ ├── search_by_name_kind_function.perf │ │ │ │ ├── search_by_name_kind_function_prefix.out │ │ │ │ ├── search_by_name_kind_function_prefix.perf │ │ │ │ ├── search_by_name_kind_namespace.out │ │ │ │ ├── search_by_name_kind_namespace.perf │ │ │ │ ├── search_by_name_kind_no_match.out │ │ │ │ ├── search_by_name_kind_no_match.perf │ │ │ │ ├── search_by_name_kind_no_match_enumerator.out │ │ │ │ ├── search_by_name_kind_no_match_enumerator.perf │ │ │ │ ├── search_by_name_kind_no_match_filtered.out │ │ │ │ ├── search_by_name_kind_no_match_filtered.perf │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_function.out │ │ │ │ ├── search_by_name_kind_nomatch_function.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.out │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.perf │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.out │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.perf │ │ │ │ ├── search_by_name_kind_nomatch_using.out │ │ │ │ ├── search_by_name_kind_nomatch_using.perf │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.out │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.perf │ │ │ │ ├── search_by_name_kind_nomatch_variable.out │ │ │ │ ├── search_by_name_kind_nomatch_variable.perf │ │ │ │ ├── search_by_name_kind_nothing_anymatch.out │ │ │ │ ├── search_by_name_kind_nothing_anymatch.perf │ │ │ │ ├── search_by_name_kind_objc_interface.out │ │ │ │ ├── search_by_name_kind_objc_interface.perf │ │ │ │ ├── search_by_name_kind_struct.out │ │ │ │ ├── search_by_name_kind_struct.perf │ │ │ │ ├── search_by_name_kind_struct_union_enum.out │ │ │ │ ├── search_by_name_kind_struct_union_enum.perf │ │ │ │ ├── search_by_name_kind_type.out │ │ │ │ ├── search_by_name_kind_type.perf │ │ │ │ ├── search_by_name_kind_union.out │ │ │ │ ├── search_by_name_kind_union.perf │ │ │ │ ├── search_by_name_kind_using.out │ │ │ │ ├── search_by_name_kind_using.perf │ │ │ │ ├── search_by_name_kind_variable.out │ │ │ │ ├── search_by_name_kind_variable.perf │ │ │ │ ├── search_by_scope.out │ │ │ │ ├── search_by_scope.perf │ │ │ │ ├── search_by_scope_record.out │ │ │ │ ├── search_by_scope_record.perf │ │ │ │ ├── search_by_scope_record_ignorecase.out │ │ │ │ ├── search_by_scope_record_ignorecase.perf │ │ │ │ ├── search_insensitive_exact_exactkind.out │ │ │ │ ├── search_insensitive_exact_exactkind.perf │ │ │ │ ├── search_insensitive_exact_nokind.out │ │ │ │ ├── search_insensitive_exact_nokind.perf │ │ │ │ ├── search_insensitive_prefix_exactkind.out │ │ │ │ ├── search_insensitive_prefix_exactkind.perf │ │ │ │ ├── search_insensitive_prefix_exactkindplus.out │ │ │ │ ├── search_insensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_insensitive_prefix_nokind.out │ │ │ │ ├── search_insensitive_prefix_nokind.perf │ │ │ │ ├── search_kind_class.out │ │ │ │ ├── search_kind_class.perf │ │ │ │ ├── search_kind_class_neg.out │ │ │ │ ├── search_kind_class_neg.perf │ │ │ │ ├── search_kind_enum.out │ │ │ │ ├── search_kind_enum.perf │ │ │ │ ├── search_kind_enum_neg.out │ │ │ │ ├── search_kind_enum_neg.perf │ │ │ │ ├── search_kind_namespace.out │ │ │ │ ├── search_kind_namespace.perf │ │ │ │ ├── search_kind_namespace_neg.out │ │ │ │ ├── search_kind_namespace_neg.perf │ │ │ │ ├── search_kind_struct.out │ │ │ │ ├── search_kind_struct.perf │ │ │ │ ├── search_kind_struct_neg.out │ │ │ │ ├── search_kind_struct_neg.perf │ │ │ │ ├── search_kind_union.out │ │ │ │ ├── search_kind_union.perf │ │ │ │ ├── search_kind_union_neg.out │ │ │ │ ├── search_kind_union_neg.perf │ │ │ │ ├── search_related_contains_child.out │ │ │ │ ├── search_related_contains_child.perf │ │ │ │ ├── search_related_contains_child_namespace.out │ │ │ │ ├── search_related_contains_child_namespace.perf │ │ │ │ ├── search_sensitive_exact_exactkind.out │ │ │ │ ├── search_sensitive_exact_exactkind.perf │ │ │ │ ├── search_sensitive_exact_exactkindplus.out │ │ │ │ ├── search_sensitive_exact_exactkindplus.perf │ │ │ │ ├── search_sensitive_exact_language.out │ │ │ │ ├── search_sensitive_exact_language.perf │ │ │ │ ├── search_sensitive_exact_multilanguage.out │ │ │ │ ├── search_sensitive_exact_multilanguage.perf │ │ │ │ ├── search_sensitive_exact_nokind.out │ │ │ │ ├── search_sensitive_exact_nokind.perf │ │ │ │ ├── search_sensitive_exact_notlanguage.out │ │ │ │ ├── search_sensitive_exact_notlanguage.perf │ │ │ │ ├── search_sensitive_prefix_exactkind.out │ │ │ │ ├── search_sensitive_prefix_exactkind.perf │ │ │ │ ├── search_sensitive_prefix_exactkindplus.out │ │ │ │ ├── search_sensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_sensitive_prefix_nokind.out │ │ │ │ ├── search_sensitive_prefix_nokind.perf │ │ │ │ ├── searchbyname.out │ │ │ │ ├── srcfiles.out │ │ │ │ ├── test.cpp │ │ │ │ ├── typealias_lowercase.out │ │ │ │ └── variable_lowercase.out │ │ │ │ ├── objc-implicit-class-method1 │ │ │ │ ├── CxxContainsParentEntity_decl.out │ │ │ │ ├── CxxContainsParentEntity_decl.perf │ │ │ │ ├── CxxContainsParentEntity_defn.out │ │ │ │ ├── CxxContainsParentEntity_defn.perf │ │ │ │ ├── CxxFileEntityIdl.out │ │ │ │ ├── CxxFileEntityIdl.perf │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.out │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.out │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.perf │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ ├── PpEntityTraceXRefLocations.out │ │ │ │ ├── PpEntityTraceXRefLocations.perf │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.out │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.perf │ │ │ │ ├── codemarkup_EntityReferences_decl.out │ │ │ │ ├── codemarkup_EntityReferences_decl.perf │ │ │ │ ├── codemarkup_EntityReferences_defn.out │ │ │ │ ├── codemarkup_EntityReferences_defn.perf │ │ │ │ ├── codemarkup_EntityReferences_enum.out │ │ │ │ ├── codemarkup_EntityReferences_enum.perf │ │ │ │ ├── codemarkup_EntitySource.out │ │ │ │ ├── codemarkup_EntitySource.perf │ │ │ │ ├── codemarkup_searchbyname.out │ │ │ │ ├── cxxFileXRefs.out │ │ │ │ ├── cxxFileXRefs.perf │ │ │ │ ├── cxx_entity_location.out │ │ │ │ ├── cxx_entity_location.perf │ │ │ │ ├── decltodeftodecl.out │ │ │ │ ├── decltodeftodecl.perf │ │ │ │ ├── enum_lowercase.out │ │ │ │ ├── enumerator_lowercase.out │ │ │ │ ├── fileentities.out │ │ │ │ ├── fileentityinfo.out │ │ │ │ ├── fileentityxrefkind.out │ │ │ │ ├── fileentityxrefs.out │ │ │ │ ├── fileentityxrefsgeneric.out │ │ │ │ ├── filexrefmap.out │ │ │ │ ├── function_name_lowercase.out │ │ │ │ ├── ppPPEntityLocation.out │ │ │ │ ├── ppPPEntityLocation.perf │ │ │ │ ├── pp_PpIncludeXRefLocations.out │ │ │ │ ├── record_name_lowercase_class.out │ │ │ │ ├── record_name_lowercase_struct.out │ │ │ │ ├── record_name_lowercase_union.out │ │ │ │ ├── search_by_name_kind.out │ │ │ │ ├── search_by_name_kind.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild.out │ │ │ │ ├── search_by_name_kind_anymatch_wild.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.out │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.perf │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.out │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.perf │ │ │ │ ├── search_by_name_kind_class.out │ │ │ │ ├── search_by_name_kind_class.perf │ │ │ │ ├── search_by_name_kind_class_namespace.out │ │ │ │ ├── search_by_name_kind_class_namespace.perf │ │ │ │ ├── search_by_name_kind_enum.out │ │ │ │ ├── search_by_name_kind_enum.perf │ │ │ │ ├── search_by_name_kind_enumerator.out │ │ │ │ ├── search_by_name_kind_enumerator.perf │ │ │ │ ├── search_by_name_kind_function.out │ │ │ │ ├── search_by_name_kind_function.perf │ │ │ │ ├── search_by_name_kind_function_prefix.out │ │ │ │ ├── search_by_name_kind_function_prefix.perf │ │ │ │ ├── search_by_name_kind_namespace.out │ │ │ │ ├── search_by_name_kind_namespace.perf │ │ │ │ ├── search_by_name_kind_no_match.out │ │ │ │ ├── search_by_name_kind_no_match.perf │ │ │ │ ├── search_by_name_kind_no_match_enumerator.out │ │ │ │ ├── search_by_name_kind_no_match_enumerator.perf │ │ │ │ ├── search_by_name_kind_no_match_filtered.out │ │ │ │ ├── search_by_name_kind_no_match_filtered.perf │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_function.out │ │ │ │ ├── search_by_name_kind_nomatch_function.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.out │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.perf │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.out │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.perf │ │ │ │ ├── search_by_name_kind_nomatch_using.out │ │ │ │ ├── search_by_name_kind_nomatch_using.perf │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.out │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.perf │ │ │ │ ├── search_by_name_kind_nomatch_variable.out │ │ │ │ ├── search_by_name_kind_nomatch_variable.perf │ │ │ │ ├── search_by_name_kind_nothing_anymatch.out │ │ │ │ ├── search_by_name_kind_nothing_anymatch.perf │ │ │ │ ├── search_by_name_kind_objc_interface.out │ │ │ │ ├── search_by_name_kind_objc_interface.perf │ │ │ │ ├── search_by_name_kind_struct.out │ │ │ │ ├── search_by_name_kind_struct.perf │ │ │ │ ├── search_by_name_kind_struct_union_enum.out │ │ │ │ ├── search_by_name_kind_struct_union_enum.perf │ │ │ │ ├── search_by_name_kind_type.out │ │ │ │ ├── search_by_name_kind_type.perf │ │ │ │ ├── search_by_name_kind_union.out │ │ │ │ ├── search_by_name_kind_union.perf │ │ │ │ ├── search_by_name_kind_using.out │ │ │ │ ├── search_by_name_kind_using.perf │ │ │ │ ├── search_by_name_kind_variable.out │ │ │ │ ├── search_by_name_kind_variable.perf │ │ │ │ ├── search_by_scope.out │ │ │ │ ├── search_by_scope.perf │ │ │ │ ├── search_by_scope_record.out │ │ │ │ ├── search_by_scope_record.perf │ │ │ │ ├── search_by_scope_record_ignorecase.out │ │ │ │ ├── search_by_scope_record_ignorecase.perf │ │ │ │ ├── search_insensitive_exact_exactkind.out │ │ │ │ ├── search_insensitive_exact_exactkind.perf │ │ │ │ ├── search_insensitive_exact_nokind.out │ │ │ │ ├── search_insensitive_exact_nokind.perf │ │ │ │ ├── search_insensitive_prefix_exactkind.out │ │ │ │ ├── search_insensitive_prefix_exactkind.perf │ │ │ │ ├── search_insensitive_prefix_exactkindplus.out │ │ │ │ ├── search_insensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_insensitive_prefix_nokind.out │ │ │ │ ├── search_insensitive_prefix_nokind.perf │ │ │ │ ├── search_kind_class.out │ │ │ │ ├── search_kind_class.perf │ │ │ │ ├── search_kind_class_neg.out │ │ │ │ ├── search_kind_class_neg.perf │ │ │ │ ├── search_kind_enum.out │ │ │ │ ├── search_kind_enum.perf │ │ │ │ ├── search_kind_enum_neg.out │ │ │ │ ├── search_kind_enum_neg.perf │ │ │ │ ├── search_kind_namespace.out │ │ │ │ ├── search_kind_namespace.perf │ │ │ │ ├── search_kind_namespace_neg.out │ │ │ │ ├── search_kind_namespace_neg.perf │ │ │ │ ├── search_kind_struct.out │ │ │ │ ├── search_kind_struct.perf │ │ │ │ ├── search_kind_struct_neg.out │ │ │ │ ├── search_kind_struct_neg.perf │ │ │ │ ├── search_kind_union.out │ │ │ │ ├── search_kind_union.perf │ │ │ │ ├── search_kind_union_neg.out │ │ │ │ ├── search_kind_union_neg.perf │ │ │ │ ├── search_related_contains_child.out │ │ │ │ ├── search_related_contains_child.perf │ │ │ │ ├── search_related_contains_child_namespace.out │ │ │ │ ├── search_related_contains_child_namespace.perf │ │ │ │ ├── search_sensitive_exact_exactkind.out │ │ │ │ ├── search_sensitive_exact_exactkind.perf │ │ │ │ ├── search_sensitive_exact_exactkindplus.out │ │ │ │ ├── search_sensitive_exact_exactkindplus.perf │ │ │ │ ├── search_sensitive_exact_language.out │ │ │ │ ├── search_sensitive_exact_language.perf │ │ │ │ ├── search_sensitive_exact_multilanguage.out │ │ │ │ ├── search_sensitive_exact_multilanguage.perf │ │ │ │ ├── search_sensitive_exact_nokind.out │ │ │ │ ├── search_sensitive_exact_nokind.perf │ │ │ │ ├── search_sensitive_exact_notlanguage.out │ │ │ │ ├── search_sensitive_exact_notlanguage.perf │ │ │ │ ├── search_sensitive_prefix_exactkind.out │ │ │ │ ├── search_sensitive_prefix_exactkind.perf │ │ │ │ ├── search_sensitive_prefix_exactkindplus.out │ │ │ │ ├── search_sensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_sensitive_prefix_nokind.out │ │ │ │ ├── search_sensitive_prefix_nokind.perf │ │ │ │ ├── searchbyname.out │ │ │ │ ├── srcfiles.out │ │ │ │ ├── test.m │ │ │ │ ├── typealias_lowercase.out │ │ │ │ └── variable_lowercase.out │ │ │ │ ├── objc-ivar1 │ │ │ │ ├── CxxContainsParentEntity_decl.out │ │ │ │ ├── CxxContainsParentEntity_decl.perf │ │ │ │ ├── CxxContainsParentEntity_defn.out │ │ │ │ ├── CxxContainsParentEntity_defn.perf │ │ │ │ ├── CxxFileEntityIdl.out │ │ │ │ ├── CxxFileEntityIdl.perf │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.out │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.out │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.perf │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ ├── PpEntityTraceXRefLocations.out │ │ │ │ ├── PpEntityTraceXRefLocations.perf │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.out │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.perf │ │ │ │ ├── codemarkup_EntityReferences_decl.out │ │ │ │ ├── codemarkup_EntityReferences_decl.perf │ │ │ │ ├── codemarkup_EntityReferences_defn.out │ │ │ │ ├── codemarkup_EntityReferences_defn.perf │ │ │ │ ├── codemarkup_EntityReferences_enum.out │ │ │ │ ├── codemarkup_EntityReferences_enum.perf │ │ │ │ ├── codemarkup_EntitySource.out │ │ │ │ ├── codemarkup_EntitySource.perf │ │ │ │ ├── codemarkup_searchbyname.out │ │ │ │ ├── cxxFileXRefs.out │ │ │ │ ├── cxxFileXRefs.perf │ │ │ │ ├── cxx_entity_location.out │ │ │ │ ├── cxx_entity_location.perf │ │ │ │ ├── decltodeftodecl.out │ │ │ │ ├── decltodeftodecl.perf │ │ │ │ ├── enum_lowercase.out │ │ │ │ ├── enumerator_lowercase.out │ │ │ │ ├── fileentities.out │ │ │ │ ├── fileentityinfo.out │ │ │ │ ├── fileentityxrefkind.out │ │ │ │ ├── fileentityxrefs.out │ │ │ │ ├── fileentityxrefsgeneric.out │ │ │ │ ├── filexrefmap.out │ │ │ │ ├── function_name_lowercase.out │ │ │ │ ├── ppPPEntityLocation.out │ │ │ │ ├── ppPPEntityLocation.perf │ │ │ │ ├── pp_PpIncludeXRefLocations.out │ │ │ │ ├── record_name_lowercase_class.out │ │ │ │ ├── record_name_lowercase_struct.out │ │ │ │ ├── record_name_lowercase_union.out │ │ │ │ ├── search_by_name_kind.out │ │ │ │ ├── search_by_name_kind.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild.out │ │ │ │ ├── search_by_name_kind_anymatch_wild.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.out │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.perf │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.out │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.perf │ │ │ │ ├── search_by_name_kind_class.out │ │ │ │ ├── search_by_name_kind_class.perf │ │ │ │ ├── search_by_name_kind_class_namespace.out │ │ │ │ ├── search_by_name_kind_class_namespace.perf │ │ │ │ ├── search_by_name_kind_enum.out │ │ │ │ ├── search_by_name_kind_enum.perf │ │ │ │ ├── search_by_name_kind_enumerator.out │ │ │ │ ├── search_by_name_kind_enumerator.perf │ │ │ │ ├── search_by_name_kind_function.out │ │ │ │ ├── search_by_name_kind_function.perf │ │ │ │ ├── search_by_name_kind_function_prefix.out │ │ │ │ ├── search_by_name_kind_function_prefix.perf │ │ │ │ ├── search_by_name_kind_namespace.out │ │ │ │ ├── search_by_name_kind_namespace.perf │ │ │ │ ├── search_by_name_kind_no_match.out │ │ │ │ ├── search_by_name_kind_no_match.perf │ │ │ │ ├── search_by_name_kind_no_match_enumerator.out │ │ │ │ ├── search_by_name_kind_no_match_enumerator.perf │ │ │ │ ├── search_by_name_kind_no_match_filtered.out │ │ │ │ ├── search_by_name_kind_no_match_filtered.perf │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_function.out │ │ │ │ ├── search_by_name_kind_nomatch_function.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.out │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.perf │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.out │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.perf │ │ │ │ ├── search_by_name_kind_nomatch_using.out │ │ │ │ ├── search_by_name_kind_nomatch_using.perf │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.out │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.perf │ │ │ │ ├── search_by_name_kind_nomatch_variable.out │ │ │ │ ├── search_by_name_kind_nomatch_variable.perf │ │ │ │ ├── search_by_name_kind_nothing_anymatch.out │ │ │ │ ├── search_by_name_kind_nothing_anymatch.perf │ │ │ │ ├── search_by_name_kind_objc_interface.out │ │ │ │ ├── search_by_name_kind_objc_interface.perf │ │ │ │ ├── search_by_name_kind_struct.out │ │ │ │ ├── search_by_name_kind_struct.perf │ │ │ │ ├── search_by_name_kind_struct_union_enum.out │ │ │ │ ├── search_by_name_kind_struct_union_enum.perf │ │ │ │ ├── search_by_name_kind_type.out │ │ │ │ ├── search_by_name_kind_type.perf │ │ │ │ ├── search_by_name_kind_union.out │ │ │ │ ├── search_by_name_kind_union.perf │ │ │ │ ├── search_by_name_kind_using.out │ │ │ │ ├── search_by_name_kind_using.perf │ │ │ │ ├── search_by_name_kind_variable.out │ │ │ │ ├── search_by_name_kind_variable.perf │ │ │ │ ├── search_by_scope.out │ │ │ │ ├── search_by_scope.perf │ │ │ │ ├── search_by_scope_record.out │ │ │ │ ├── search_by_scope_record.perf │ │ │ │ ├── search_by_scope_record_ignorecase.out │ │ │ │ ├── search_by_scope_record_ignorecase.perf │ │ │ │ ├── search_insensitive_exact_exactkind.out │ │ │ │ ├── search_insensitive_exact_exactkind.perf │ │ │ │ ├── search_insensitive_exact_nokind.out │ │ │ │ ├── search_insensitive_exact_nokind.perf │ │ │ │ ├── search_insensitive_prefix_exactkind.out │ │ │ │ ├── search_insensitive_prefix_exactkind.perf │ │ │ │ ├── search_insensitive_prefix_exactkindplus.out │ │ │ │ ├── search_insensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_insensitive_prefix_nokind.out │ │ │ │ ├── search_insensitive_prefix_nokind.perf │ │ │ │ ├── search_kind_class.out │ │ │ │ ├── search_kind_class.perf │ │ │ │ ├── search_kind_class_neg.out │ │ │ │ ├── search_kind_class_neg.perf │ │ │ │ ├── search_kind_enum.out │ │ │ │ ├── search_kind_enum.perf │ │ │ │ ├── search_kind_enum_neg.out │ │ │ │ ├── search_kind_enum_neg.perf │ │ │ │ ├── search_kind_namespace.out │ │ │ │ ├── search_kind_namespace.perf │ │ │ │ ├── search_kind_namespace_neg.out │ │ │ │ ├── search_kind_namespace_neg.perf │ │ │ │ ├── search_kind_struct.out │ │ │ │ ├── search_kind_struct.perf │ │ │ │ ├── search_kind_struct_neg.out │ │ │ │ ├── search_kind_struct_neg.perf │ │ │ │ ├── search_kind_union.out │ │ │ │ ├── search_kind_union.perf │ │ │ │ ├── search_kind_union_neg.out │ │ │ │ ├── search_kind_union_neg.perf │ │ │ │ ├── search_related_contains_child.out │ │ │ │ ├── search_related_contains_child.perf │ │ │ │ ├── search_related_contains_child_namespace.out │ │ │ │ ├── search_related_contains_child_namespace.perf │ │ │ │ ├── search_sensitive_exact_exactkind.out │ │ │ │ ├── search_sensitive_exact_exactkind.perf │ │ │ │ ├── search_sensitive_exact_exactkindplus.out │ │ │ │ ├── search_sensitive_exact_exactkindplus.perf │ │ │ │ ├── search_sensitive_exact_language.out │ │ │ │ ├── search_sensitive_exact_language.perf │ │ │ │ ├── search_sensitive_exact_multilanguage.out │ │ │ │ ├── search_sensitive_exact_multilanguage.perf │ │ │ │ ├── search_sensitive_exact_nokind.out │ │ │ │ ├── search_sensitive_exact_nokind.perf │ │ │ │ ├── search_sensitive_exact_notlanguage.out │ │ │ │ ├── search_sensitive_exact_notlanguage.perf │ │ │ │ ├── search_sensitive_prefix_exactkind.out │ │ │ │ ├── search_sensitive_prefix_exactkind.perf │ │ │ │ ├── search_sensitive_prefix_exactkindplus.out │ │ │ │ ├── search_sensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_sensitive_prefix_nokind.out │ │ │ │ ├── search_sensitive_prefix_nokind.perf │ │ │ │ ├── searchbyname.out │ │ │ │ ├── srcfiles.out │ │ │ │ ├── test.m │ │ │ │ ├── typealias_lowercase.out │ │ │ │ └── variable_lowercase.out │ │ │ │ ├── objc-method1 │ │ │ │ ├── CxxContainsParentEntity_decl.out │ │ │ │ ├── CxxContainsParentEntity_decl.perf │ │ │ │ ├── CxxContainsParentEntity_defn.out │ │ │ │ ├── CxxContainsParentEntity_defn.perf │ │ │ │ ├── CxxFileEntityIdl.out │ │ │ │ ├── CxxFileEntityIdl.perf │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.out │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.out │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.perf │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ ├── PpEntityTraceXRefLocations.out │ │ │ │ ├── PpEntityTraceXRefLocations.perf │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.out │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.perf │ │ │ │ ├── codemarkup_EntityReferences_decl.out │ │ │ │ ├── codemarkup_EntityReferences_decl.perf │ │ │ │ ├── codemarkup_EntityReferences_defn.out │ │ │ │ ├── codemarkup_EntityReferences_defn.perf │ │ │ │ ├── codemarkup_EntityReferences_enum.out │ │ │ │ ├── codemarkup_EntityReferences_enum.perf │ │ │ │ ├── codemarkup_EntitySource.out │ │ │ │ ├── codemarkup_EntitySource.perf │ │ │ │ ├── codemarkup_searchbyname.out │ │ │ │ ├── cxxFileXRefs.out │ │ │ │ ├── cxxFileXRefs.perf │ │ │ │ ├── cxx_entity_location.out │ │ │ │ ├── cxx_entity_location.perf │ │ │ │ ├── decltodeftodecl.out │ │ │ │ ├── decltodeftodecl.perf │ │ │ │ ├── enum_lowercase.out │ │ │ │ ├── enumerator_lowercase.out │ │ │ │ ├── fileentities.out │ │ │ │ ├── fileentityinfo.out │ │ │ │ ├── fileentityxrefkind.out │ │ │ │ ├── fileentityxrefs.out │ │ │ │ ├── fileentityxrefsgeneric.out │ │ │ │ ├── filexrefmap.out │ │ │ │ ├── function_name_lowercase.out │ │ │ │ ├── ppPPEntityLocation.out │ │ │ │ ├── ppPPEntityLocation.perf │ │ │ │ ├── pp_PpIncludeXRefLocations.out │ │ │ │ ├── record_name_lowercase_class.out │ │ │ │ ├── record_name_lowercase_struct.out │ │ │ │ ├── record_name_lowercase_union.out │ │ │ │ ├── search_by_name_kind.out │ │ │ │ ├── search_by_name_kind.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild.out │ │ │ │ ├── search_by_name_kind_anymatch_wild.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.out │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.perf │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.out │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.perf │ │ │ │ ├── search_by_name_kind_class.out │ │ │ │ ├── search_by_name_kind_class.perf │ │ │ │ ├── search_by_name_kind_class_namespace.out │ │ │ │ ├── search_by_name_kind_class_namespace.perf │ │ │ │ ├── search_by_name_kind_enum.out │ │ │ │ ├── search_by_name_kind_enum.perf │ │ │ │ ├── search_by_name_kind_enumerator.out │ │ │ │ ├── search_by_name_kind_enumerator.perf │ │ │ │ ├── search_by_name_kind_function.out │ │ │ │ ├── search_by_name_kind_function.perf │ │ │ │ ├── search_by_name_kind_function_prefix.out │ │ │ │ ├── search_by_name_kind_function_prefix.perf │ │ │ │ ├── search_by_name_kind_namespace.out │ │ │ │ ├── search_by_name_kind_namespace.perf │ │ │ │ ├── search_by_name_kind_no_match.out │ │ │ │ ├── search_by_name_kind_no_match.perf │ │ │ │ ├── search_by_name_kind_no_match_enumerator.out │ │ │ │ ├── search_by_name_kind_no_match_enumerator.perf │ │ │ │ ├── search_by_name_kind_no_match_filtered.out │ │ │ │ ├── search_by_name_kind_no_match_filtered.perf │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_function.out │ │ │ │ ├── search_by_name_kind_nomatch_function.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.out │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.perf │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.out │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.perf │ │ │ │ ├── search_by_name_kind_nomatch_using.out │ │ │ │ ├── search_by_name_kind_nomatch_using.perf │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.out │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.perf │ │ │ │ ├── search_by_name_kind_nomatch_variable.out │ │ │ │ ├── search_by_name_kind_nomatch_variable.perf │ │ │ │ ├── search_by_name_kind_nothing_anymatch.out │ │ │ │ ├── search_by_name_kind_nothing_anymatch.perf │ │ │ │ ├── search_by_name_kind_objc_interface.out │ │ │ │ ├── search_by_name_kind_objc_interface.perf │ │ │ │ ├── search_by_name_kind_struct.out │ │ │ │ ├── search_by_name_kind_struct.perf │ │ │ │ ├── search_by_name_kind_struct_union_enum.out │ │ │ │ ├── search_by_name_kind_struct_union_enum.perf │ │ │ │ ├── search_by_name_kind_type.out │ │ │ │ ├── search_by_name_kind_type.perf │ │ │ │ ├── search_by_name_kind_union.out │ │ │ │ ├── search_by_name_kind_union.perf │ │ │ │ ├── search_by_name_kind_using.out │ │ │ │ ├── search_by_name_kind_using.perf │ │ │ │ ├── search_by_name_kind_variable.out │ │ │ │ ├── search_by_name_kind_variable.perf │ │ │ │ ├── search_by_scope.out │ │ │ │ ├── search_by_scope.perf │ │ │ │ ├── search_by_scope_record.out │ │ │ │ ├── search_by_scope_record.perf │ │ │ │ ├── search_by_scope_record_ignorecase.out │ │ │ │ ├── search_by_scope_record_ignorecase.perf │ │ │ │ ├── search_insensitive_exact_exactkind.out │ │ │ │ ├── search_insensitive_exact_exactkind.perf │ │ │ │ ├── search_insensitive_exact_nokind.out │ │ │ │ ├── search_insensitive_exact_nokind.perf │ │ │ │ ├── search_insensitive_prefix_exactkind.out │ │ │ │ ├── search_insensitive_prefix_exactkind.perf │ │ │ │ ├── search_insensitive_prefix_exactkindplus.out │ │ │ │ ├── search_insensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_insensitive_prefix_nokind.out │ │ │ │ ├── search_insensitive_prefix_nokind.perf │ │ │ │ ├── search_kind_class.out │ │ │ │ ├── search_kind_class.perf │ │ │ │ ├── search_kind_class_neg.out │ │ │ │ ├── search_kind_class_neg.perf │ │ │ │ ├── search_kind_enum.out │ │ │ │ ├── search_kind_enum.perf │ │ │ │ ├── search_kind_enum_neg.out │ │ │ │ ├── search_kind_enum_neg.perf │ │ │ │ ├── search_kind_namespace.out │ │ │ │ ├── search_kind_namespace.perf │ │ │ │ ├── search_kind_namespace_neg.out │ │ │ │ ├── search_kind_namespace_neg.perf │ │ │ │ ├── search_kind_struct.out │ │ │ │ ├── search_kind_struct.perf │ │ │ │ ├── search_kind_struct_neg.out │ │ │ │ ├── search_kind_struct_neg.perf │ │ │ │ ├── search_kind_union.out │ │ │ │ ├── search_kind_union.perf │ │ │ │ ├── search_kind_union_neg.out │ │ │ │ ├── search_kind_union_neg.perf │ │ │ │ ├── search_related_contains_child.out │ │ │ │ ├── search_related_contains_child.perf │ │ │ │ ├── search_related_contains_child_namespace.out │ │ │ │ ├── search_related_contains_child_namespace.perf │ │ │ │ ├── search_sensitive_exact_exactkind.out │ │ │ │ ├── search_sensitive_exact_exactkind.perf │ │ │ │ ├── search_sensitive_exact_exactkindplus.out │ │ │ │ ├── search_sensitive_exact_exactkindplus.perf │ │ │ │ ├── search_sensitive_exact_language.out │ │ │ │ ├── search_sensitive_exact_language.perf │ │ │ │ ├── search_sensitive_exact_multilanguage.out │ │ │ │ ├── search_sensitive_exact_multilanguage.perf │ │ │ │ ├── search_sensitive_exact_nokind.out │ │ │ │ ├── search_sensitive_exact_nokind.perf │ │ │ │ ├── search_sensitive_exact_notlanguage.out │ │ │ │ ├── search_sensitive_exact_notlanguage.perf │ │ │ │ ├── search_sensitive_prefix_exactkind.out │ │ │ │ ├── search_sensitive_prefix_exactkind.perf │ │ │ │ ├── search_sensitive_prefix_exactkindplus.out │ │ │ │ ├── search_sensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_sensitive_prefix_nokind.out │ │ │ │ ├── search_sensitive_prefix_nokind.perf │ │ │ │ ├── searchbyname.out │ │ │ │ ├── srcfiles.out │ │ │ │ ├── test.mm │ │ │ │ ├── typealias_lowercase.out │ │ │ │ └── variable_lowercase.out │ │ │ │ ├── objc-property1 │ │ │ │ ├── CxxContainsParentEntity_decl.out │ │ │ │ ├── CxxContainsParentEntity_decl.perf │ │ │ │ ├── CxxContainsParentEntity_defn.out │ │ │ │ ├── CxxContainsParentEntity_defn.perf │ │ │ │ ├── CxxFileEntityIdl.out │ │ │ │ ├── CxxFileEntityIdl.perf │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.out │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.out │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.perf │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ ├── PpEntityTraceXRefLocations.out │ │ │ │ ├── PpEntityTraceXRefLocations.perf │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.out │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.perf │ │ │ │ ├── codemarkup_EntityReferences_decl.out │ │ │ │ ├── codemarkup_EntityReferences_decl.perf │ │ │ │ ├── codemarkup_EntityReferences_defn.out │ │ │ │ ├── codemarkup_EntityReferences_defn.perf │ │ │ │ ├── codemarkup_EntityReferences_enum.out │ │ │ │ ├── codemarkup_EntityReferences_enum.perf │ │ │ │ ├── codemarkup_EntitySource.out │ │ │ │ ├── codemarkup_EntitySource.perf │ │ │ │ ├── codemarkup_searchbyname.out │ │ │ │ ├── cxxFileXRefs.out │ │ │ │ ├── cxxFileXRefs.perf │ │ │ │ ├── cxx_entity_location.out │ │ │ │ ├── cxx_entity_location.perf │ │ │ │ ├── decltodeftodecl.out │ │ │ │ ├── decltodeftodecl.perf │ │ │ │ ├── enum_lowercase.out │ │ │ │ ├── enumerator_lowercase.out │ │ │ │ ├── fileentities.out │ │ │ │ ├── fileentityinfo.out │ │ │ │ ├── fileentityxrefkind.out │ │ │ │ ├── fileentityxrefs.out │ │ │ │ ├── fileentityxrefsgeneric.out │ │ │ │ ├── filexrefmap.out │ │ │ │ ├── function_name_lowercase.out │ │ │ │ ├── ppPPEntityLocation.out │ │ │ │ ├── ppPPEntityLocation.perf │ │ │ │ ├── pp_PpIncludeXRefLocations.out │ │ │ │ ├── record_name_lowercase_class.out │ │ │ │ ├── record_name_lowercase_struct.out │ │ │ │ ├── record_name_lowercase_union.out │ │ │ │ ├── search_by_name_kind.out │ │ │ │ ├── search_by_name_kind.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild.out │ │ │ │ ├── search_by_name_kind_anymatch_wild.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.out │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.perf │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.out │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.perf │ │ │ │ ├── search_by_name_kind_class.out │ │ │ │ ├── search_by_name_kind_class.perf │ │ │ │ ├── search_by_name_kind_class_namespace.out │ │ │ │ ├── search_by_name_kind_class_namespace.perf │ │ │ │ ├── search_by_name_kind_enum.out │ │ │ │ ├── search_by_name_kind_enum.perf │ │ │ │ ├── search_by_name_kind_enumerator.out │ │ │ │ ├── search_by_name_kind_enumerator.perf │ │ │ │ ├── search_by_name_kind_function.out │ │ │ │ ├── search_by_name_kind_function.perf │ │ │ │ ├── search_by_name_kind_function_prefix.out │ │ │ │ ├── search_by_name_kind_function_prefix.perf │ │ │ │ ├── search_by_name_kind_namespace.out │ │ │ │ ├── search_by_name_kind_namespace.perf │ │ │ │ ├── search_by_name_kind_no_match.out │ │ │ │ ├── search_by_name_kind_no_match.perf │ │ │ │ ├── search_by_name_kind_no_match_enumerator.out │ │ │ │ ├── search_by_name_kind_no_match_enumerator.perf │ │ │ │ ├── search_by_name_kind_no_match_filtered.out │ │ │ │ ├── search_by_name_kind_no_match_filtered.perf │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_function.out │ │ │ │ ├── search_by_name_kind_nomatch_function.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.out │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.perf │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.out │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.perf │ │ │ │ ├── search_by_name_kind_nomatch_using.out │ │ │ │ ├── search_by_name_kind_nomatch_using.perf │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.out │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.perf │ │ │ │ ├── search_by_name_kind_nomatch_variable.out │ │ │ │ ├── search_by_name_kind_nomatch_variable.perf │ │ │ │ ├── search_by_name_kind_nothing_anymatch.out │ │ │ │ ├── search_by_name_kind_nothing_anymatch.perf │ │ │ │ ├── search_by_name_kind_objc_interface.out │ │ │ │ ├── search_by_name_kind_objc_interface.perf │ │ │ │ ├── search_by_name_kind_struct.out │ │ │ │ ├── search_by_name_kind_struct.perf │ │ │ │ ├── search_by_name_kind_struct_union_enum.out │ │ │ │ ├── search_by_name_kind_struct_union_enum.perf │ │ │ │ ├── search_by_name_kind_type.out │ │ │ │ ├── search_by_name_kind_type.perf │ │ │ │ ├── search_by_name_kind_union.out │ │ │ │ ├── search_by_name_kind_union.perf │ │ │ │ ├── search_by_name_kind_using.out │ │ │ │ ├── search_by_name_kind_using.perf │ │ │ │ ├── search_by_name_kind_variable.out │ │ │ │ ├── search_by_name_kind_variable.perf │ │ │ │ ├── search_by_scope.out │ │ │ │ ├── search_by_scope.perf │ │ │ │ ├── search_by_scope_record.out │ │ │ │ ├── search_by_scope_record.perf │ │ │ │ ├── search_by_scope_record_ignorecase.out │ │ │ │ ├── search_by_scope_record_ignorecase.perf │ │ │ │ ├── search_insensitive_exact_exactkind.out │ │ │ │ ├── search_insensitive_exact_exactkind.perf │ │ │ │ ├── search_insensitive_exact_nokind.out │ │ │ │ ├── search_insensitive_exact_nokind.perf │ │ │ │ ├── search_insensitive_prefix_exactkind.out │ │ │ │ ├── search_insensitive_prefix_exactkind.perf │ │ │ │ ├── search_insensitive_prefix_exactkindplus.out │ │ │ │ ├── search_insensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_insensitive_prefix_nokind.out │ │ │ │ ├── search_insensitive_prefix_nokind.perf │ │ │ │ ├── search_kind_class.out │ │ │ │ ├── search_kind_class.perf │ │ │ │ ├── search_kind_class_neg.out │ │ │ │ ├── search_kind_class_neg.perf │ │ │ │ ├── search_kind_enum.out │ │ │ │ ├── search_kind_enum.perf │ │ │ │ ├── search_kind_enum_neg.out │ │ │ │ ├── search_kind_enum_neg.perf │ │ │ │ ├── search_kind_namespace.out │ │ │ │ ├── search_kind_namespace.perf │ │ │ │ ├── search_kind_namespace_neg.out │ │ │ │ ├── search_kind_namespace_neg.perf │ │ │ │ ├── search_kind_struct.out │ │ │ │ ├── search_kind_struct.perf │ │ │ │ ├── search_kind_struct_neg.out │ │ │ │ ├── search_kind_struct_neg.perf │ │ │ │ ├── search_kind_union.out │ │ │ │ ├── search_kind_union.perf │ │ │ │ ├── search_kind_union_neg.out │ │ │ │ ├── search_kind_union_neg.perf │ │ │ │ ├── search_related_contains_child.out │ │ │ │ ├── search_related_contains_child.perf │ │ │ │ ├── search_related_contains_child_namespace.out │ │ │ │ ├── search_related_contains_child_namespace.perf │ │ │ │ ├── search_sensitive_exact_exactkind.out │ │ │ │ ├── search_sensitive_exact_exactkind.perf │ │ │ │ ├── search_sensitive_exact_exactkindplus.out │ │ │ │ ├── search_sensitive_exact_exactkindplus.perf │ │ │ │ ├── search_sensitive_exact_language.out │ │ │ │ ├── search_sensitive_exact_language.perf │ │ │ │ ├── search_sensitive_exact_multilanguage.out │ │ │ │ ├── search_sensitive_exact_multilanguage.perf │ │ │ │ ├── search_sensitive_exact_nokind.out │ │ │ │ ├── search_sensitive_exact_nokind.perf │ │ │ │ ├── search_sensitive_exact_notlanguage.out │ │ │ │ ├── search_sensitive_exact_notlanguage.perf │ │ │ │ ├── search_sensitive_prefix_exactkind.out │ │ │ │ ├── search_sensitive_prefix_exactkind.perf │ │ │ │ ├── search_sensitive_prefix_exactkindplus.out │ │ │ │ ├── search_sensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_sensitive_prefix_nokind.out │ │ │ │ ├── search_sensitive_prefix_nokind.perf │ │ │ │ ├── searchbyname.out │ │ │ │ ├── srcfiles.out │ │ │ │ ├── test.m │ │ │ │ ├── typealias_lowercase.out │ │ │ │ └── variable_lowercase.out │ │ │ │ ├── objc-property2 │ │ │ │ ├── CxxContainsParentEntity_decl.out │ │ │ │ ├── CxxContainsParentEntity_decl.perf │ │ │ │ ├── CxxContainsParentEntity_defn.out │ │ │ │ ├── CxxContainsParentEntity_defn.perf │ │ │ │ ├── CxxFileEntityIdl.out │ │ │ │ ├── CxxFileEntityIdl.perf │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.out │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.out │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.perf │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ ├── PpEntityTraceXRefLocations.out │ │ │ │ ├── PpEntityTraceXRefLocations.perf │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.out │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.perf │ │ │ │ ├── codemarkup_EntityReferences_decl.out │ │ │ │ ├── codemarkup_EntityReferences_decl.perf │ │ │ │ ├── codemarkup_EntityReferences_defn.out │ │ │ │ ├── codemarkup_EntityReferences_defn.perf │ │ │ │ ├── codemarkup_EntityReferences_enum.out │ │ │ │ ├── codemarkup_EntityReferences_enum.perf │ │ │ │ ├── codemarkup_EntitySource.out │ │ │ │ ├── codemarkup_EntitySource.perf │ │ │ │ ├── codemarkup_searchbyname.out │ │ │ │ ├── cxxFileXRefs.out │ │ │ │ ├── cxxFileXRefs.perf │ │ │ │ ├── cxx_entity_location.out │ │ │ │ ├── cxx_entity_location.perf │ │ │ │ ├── decltodeftodecl.out │ │ │ │ ├── decltodeftodecl.perf │ │ │ │ ├── enum_lowercase.out │ │ │ │ ├── enumerator_lowercase.out │ │ │ │ ├── fileentities.out │ │ │ │ ├── fileentityinfo.out │ │ │ │ ├── fileentityxrefkind.out │ │ │ │ ├── fileentityxrefs.out │ │ │ │ ├── fileentityxrefsgeneric.out │ │ │ │ ├── filexrefmap.out │ │ │ │ ├── function_name_lowercase.out │ │ │ │ ├── ppPPEntityLocation.out │ │ │ │ ├── ppPPEntityLocation.perf │ │ │ │ ├── pp_PpIncludeXRefLocations.out │ │ │ │ ├── record_name_lowercase_class.out │ │ │ │ ├── record_name_lowercase_struct.out │ │ │ │ ├── record_name_lowercase_union.out │ │ │ │ ├── search_by_name_kind.out │ │ │ │ ├── search_by_name_kind.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild.out │ │ │ │ ├── search_by_name_kind_anymatch_wild.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.out │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.perf │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.out │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.perf │ │ │ │ ├── search_by_name_kind_class.out │ │ │ │ ├── search_by_name_kind_class.perf │ │ │ │ ├── search_by_name_kind_class_namespace.out │ │ │ │ ├── search_by_name_kind_class_namespace.perf │ │ │ │ ├── search_by_name_kind_enum.out │ │ │ │ ├── search_by_name_kind_enum.perf │ │ │ │ ├── search_by_name_kind_enumerator.out │ │ │ │ ├── search_by_name_kind_enumerator.perf │ │ │ │ ├── search_by_name_kind_function.out │ │ │ │ ├── search_by_name_kind_function.perf │ │ │ │ ├── search_by_name_kind_function_prefix.out │ │ │ │ ├── search_by_name_kind_function_prefix.perf │ │ │ │ ├── search_by_name_kind_namespace.out │ │ │ │ ├── search_by_name_kind_namespace.perf │ │ │ │ ├── search_by_name_kind_no_match.out │ │ │ │ ├── search_by_name_kind_no_match.perf │ │ │ │ ├── search_by_name_kind_no_match_enumerator.out │ │ │ │ ├── search_by_name_kind_no_match_enumerator.perf │ │ │ │ ├── search_by_name_kind_no_match_filtered.out │ │ │ │ ├── search_by_name_kind_no_match_filtered.perf │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_function.out │ │ │ │ ├── search_by_name_kind_nomatch_function.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.out │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.perf │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.out │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.perf │ │ │ │ ├── search_by_name_kind_nomatch_using.out │ │ │ │ ├── search_by_name_kind_nomatch_using.perf │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.out │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.perf │ │ │ │ ├── search_by_name_kind_nomatch_variable.out │ │ │ │ ├── search_by_name_kind_nomatch_variable.perf │ │ │ │ ├── search_by_name_kind_nothing_anymatch.out │ │ │ │ ├── search_by_name_kind_nothing_anymatch.perf │ │ │ │ ├── search_by_name_kind_objc_interface.out │ │ │ │ ├── search_by_name_kind_objc_interface.perf │ │ │ │ ├── search_by_name_kind_struct.out │ │ │ │ ├── search_by_name_kind_struct.perf │ │ │ │ ├── search_by_name_kind_struct_union_enum.out │ │ │ │ ├── search_by_name_kind_struct_union_enum.perf │ │ │ │ ├── search_by_name_kind_type.out │ │ │ │ ├── search_by_name_kind_type.perf │ │ │ │ ├── search_by_name_kind_union.out │ │ │ │ ├── search_by_name_kind_union.perf │ │ │ │ ├── search_by_name_kind_using.out │ │ │ │ ├── search_by_name_kind_using.perf │ │ │ │ ├── search_by_name_kind_variable.out │ │ │ │ ├── search_by_name_kind_variable.perf │ │ │ │ ├── search_by_scope.out │ │ │ │ ├── search_by_scope.perf │ │ │ │ ├── search_by_scope_record.out │ │ │ │ ├── search_by_scope_record.perf │ │ │ │ ├── search_by_scope_record_ignorecase.out │ │ │ │ ├── search_by_scope_record_ignorecase.perf │ │ │ │ ├── search_insensitive_exact_exactkind.out │ │ │ │ ├── search_insensitive_exact_exactkind.perf │ │ │ │ ├── search_insensitive_exact_nokind.out │ │ │ │ ├── search_insensitive_exact_nokind.perf │ │ │ │ ├── search_insensitive_prefix_exactkind.out │ │ │ │ ├── search_insensitive_prefix_exactkind.perf │ │ │ │ ├── search_insensitive_prefix_exactkindplus.out │ │ │ │ ├── search_insensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_insensitive_prefix_nokind.out │ │ │ │ ├── search_insensitive_prefix_nokind.perf │ │ │ │ ├── search_kind_class.out │ │ │ │ ├── search_kind_class.perf │ │ │ │ ├── search_kind_class_neg.out │ │ │ │ ├── search_kind_class_neg.perf │ │ │ │ ├── search_kind_enum.out │ │ │ │ ├── search_kind_enum.perf │ │ │ │ ├── search_kind_enum_neg.out │ │ │ │ ├── search_kind_enum_neg.perf │ │ │ │ ├── search_kind_namespace.out │ │ │ │ ├── search_kind_namespace.perf │ │ │ │ ├── search_kind_namespace_neg.out │ │ │ │ ├── search_kind_namespace_neg.perf │ │ │ │ ├── search_kind_struct.out │ │ │ │ ├── search_kind_struct.perf │ │ │ │ ├── search_kind_struct_neg.out │ │ │ │ ├── search_kind_struct_neg.perf │ │ │ │ ├── search_kind_union.out │ │ │ │ ├── search_kind_union.perf │ │ │ │ ├── search_kind_union_neg.out │ │ │ │ ├── search_kind_union_neg.perf │ │ │ │ ├── search_related_contains_child.out │ │ │ │ ├── search_related_contains_child.perf │ │ │ │ ├── search_related_contains_child_namespace.out │ │ │ │ ├── search_related_contains_child_namespace.perf │ │ │ │ ├── search_sensitive_exact_exactkind.out │ │ │ │ ├── search_sensitive_exact_exactkind.perf │ │ │ │ ├── search_sensitive_exact_exactkindplus.out │ │ │ │ ├── search_sensitive_exact_exactkindplus.perf │ │ │ │ ├── search_sensitive_exact_language.out │ │ │ │ ├── search_sensitive_exact_language.perf │ │ │ │ ├── search_sensitive_exact_multilanguage.out │ │ │ │ ├── search_sensitive_exact_multilanguage.perf │ │ │ │ ├── search_sensitive_exact_nokind.out │ │ │ │ ├── search_sensitive_exact_nokind.perf │ │ │ │ ├── search_sensitive_exact_notlanguage.out │ │ │ │ ├── search_sensitive_exact_notlanguage.perf │ │ │ │ ├── search_sensitive_prefix_exactkind.out │ │ │ │ ├── search_sensitive_prefix_exactkind.perf │ │ │ │ ├── search_sensitive_prefix_exactkindplus.out │ │ │ │ ├── search_sensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_sensitive_prefix_nokind.out │ │ │ │ ├── search_sensitive_prefix_nokind.perf │ │ │ │ ├── searchbyname.out │ │ │ │ ├── srcfiles.out │ │ │ │ ├── test.m │ │ │ │ ├── typealias_lowercase.out │ │ │ │ └── variable_lowercase.out │ │ │ │ ├── objc-protocol1 │ │ │ │ ├── CxxContainsParentEntity_decl.out │ │ │ │ ├── CxxContainsParentEntity_decl.perf │ │ │ │ ├── CxxContainsParentEntity_defn.out │ │ │ │ ├── CxxContainsParentEntity_defn.perf │ │ │ │ ├── CxxFileEntityIdl.out │ │ │ │ ├── CxxFileEntityIdl.perf │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.out │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.out │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.perf │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ ├── PpEntityTraceXRefLocations.out │ │ │ │ ├── PpEntityTraceXRefLocations.perf │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.out │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.perf │ │ │ │ ├── codemarkup_EntityReferences_decl.out │ │ │ │ ├── codemarkup_EntityReferences_decl.perf │ │ │ │ ├── codemarkup_EntityReferences_defn.out │ │ │ │ ├── codemarkup_EntityReferences_defn.perf │ │ │ │ ├── codemarkup_EntityReferences_enum.out │ │ │ │ ├── codemarkup_EntityReferences_enum.perf │ │ │ │ ├── codemarkup_EntitySource.out │ │ │ │ ├── codemarkup_EntitySource.perf │ │ │ │ ├── codemarkup_searchbyname.out │ │ │ │ ├── cxxFileXRefs.out │ │ │ │ ├── cxxFileXRefs.perf │ │ │ │ ├── cxx_entity_location.out │ │ │ │ ├── cxx_entity_location.perf │ │ │ │ ├── decltodeftodecl.out │ │ │ │ ├── decltodeftodecl.perf │ │ │ │ ├── enum_lowercase.out │ │ │ │ ├── enumerator_lowercase.out │ │ │ │ ├── fileentities.out │ │ │ │ ├── fileentityinfo.out │ │ │ │ ├── fileentityxrefkind.out │ │ │ │ ├── fileentityxrefs.out │ │ │ │ ├── fileentityxrefsgeneric.out │ │ │ │ ├── filexrefmap.out │ │ │ │ ├── function_name_lowercase.out │ │ │ │ ├── objc_container_interface_lowercase.out │ │ │ │ ├── objc_container_interface_lowercase.query │ │ │ │ ├── ppPPEntityLocation.out │ │ │ │ ├── ppPPEntityLocation.perf │ │ │ │ ├── pp_PpIncludeXRefLocations.out │ │ │ │ ├── record_name_lowercase_class.out │ │ │ │ ├── record_name_lowercase_struct.out │ │ │ │ ├── record_name_lowercase_union.out │ │ │ │ ├── search_by_name_kind.out │ │ │ │ ├── search_by_name_kind.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild.out │ │ │ │ ├── search_by_name_kind_anymatch_wild.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.out │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.perf │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.out │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.perf │ │ │ │ ├── search_by_name_kind_class.out │ │ │ │ ├── search_by_name_kind_class.perf │ │ │ │ ├── search_by_name_kind_class_namespace.out │ │ │ │ ├── search_by_name_kind_class_namespace.perf │ │ │ │ ├── search_by_name_kind_enum.out │ │ │ │ ├── search_by_name_kind_enum.perf │ │ │ │ ├── search_by_name_kind_enumerator.out │ │ │ │ ├── search_by_name_kind_enumerator.perf │ │ │ │ ├── search_by_name_kind_function.out │ │ │ │ ├── search_by_name_kind_function.perf │ │ │ │ ├── search_by_name_kind_function_prefix.out │ │ │ │ ├── search_by_name_kind_function_prefix.perf │ │ │ │ ├── search_by_name_kind_namespace.out │ │ │ │ ├── search_by_name_kind_namespace.perf │ │ │ │ ├── search_by_name_kind_no_match.out │ │ │ │ ├── search_by_name_kind_no_match.perf │ │ │ │ ├── search_by_name_kind_no_match_enumerator.out │ │ │ │ ├── search_by_name_kind_no_match_enumerator.perf │ │ │ │ ├── search_by_name_kind_no_match_filtered.out │ │ │ │ ├── search_by_name_kind_no_match_filtered.perf │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_function.out │ │ │ │ ├── search_by_name_kind_nomatch_function.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.out │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.perf │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.out │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.perf │ │ │ │ ├── search_by_name_kind_nomatch_using.out │ │ │ │ ├── search_by_name_kind_nomatch_using.perf │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.out │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.perf │ │ │ │ ├── search_by_name_kind_nomatch_variable.out │ │ │ │ ├── search_by_name_kind_nomatch_variable.perf │ │ │ │ ├── search_by_name_kind_nothing_anymatch.out │ │ │ │ ├── search_by_name_kind_nothing_anymatch.perf │ │ │ │ ├── search_by_name_kind_objc_interface.out │ │ │ │ ├── search_by_name_kind_objc_interface.perf │ │ │ │ ├── search_by_name_kind_struct.out │ │ │ │ ├── search_by_name_kind_struct.perf │ │ │ │ ├── search_by_name_kind_struct_union_enum.out │ │ │ │ ├── search_by_name_kind_struct_union_enum.perf │ │ │ │ ├── search_by_name_kind_type.out │ │ │ │ ├── search_by_name_kind_type.perf │ │ │ │ ├── search_by_name_kind_union.out │ │ │ │ ├── search_by_name_kind_union.perf │ │ │ │ ├── search_by_name_kind_using.out │ │ │ │ ├── search_by_name_kind_using.perf │ │ │ │ ├── search_by_name_kind_variable.out │ │ │ │ ├── search_by_name_kind_variable.perf │ │ │ │ ├── search_by_scope.out │ │ │ │ ├── search_by_scope.perf │ │ │ │ ├── search_by_scope_record.out │ │ │ │ ├── search_by_scope_record.perf │ │ │ │ ├── search_by_scope_record_ignorecase.out │ │ │ │ ├── search_by_scope_record_ignorecase.perf │ │ │ │ ├── search_insensitive_exact_exactkind.out │ │ │ │ ├── search_insensitive_exact_exactkind.perf │ │ │ │ ├── search_insensitive_exact_nokind.out │ │ │ │ ├── search_insensitive_exact_nokind.perf │ │ │ │ ├── search_insensitive_prefix_exactkind.out │ │ │ │ ├── search_insensitive_prefix_exactkind.perf │ │ │ │ ├── search_insensitive_prefix_exactkindplus.out │ │ │ │ ├── search_insensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_insensitive_prefix_nokind.out │ │ │ │ ├── search_insensitive_prefix_nokind.perf │ │ │ │ ├── search_kind_class.out │ │ │ │ ├── search_kind_class.perf │ │ │ │ ├── search_kind_class_neg.out │ │ │ │ ├── search_kind_class_neg.perf │ │ │ │ ├── search_kind_enum.out │ │ │ │ ├── search_kind_enum.perf │ │ │ │ ├── search_kind_enum_neg.out │ │ │ │ ├── search_kind_enum_neg.perf │ │ │ │ ├── search_kind_namespace.out │ │ │ │ ├── search_kind_namespace.perf │ │ │ │ ├── search_kind_namespace_neg.out │ │ │ │ ├── search_kind_namespace_neg.perf │ │ │ │ ├── search_kind_struct.out │ │ │ │ ├── search_kind_struct.perf │ │ │ │ ├── search_kind_struct_neg.out │ │ │ │ ├── search_kind_struct_neg.perf │ │ │ │ ├── search_kind_union.out │ │ │ │ ├── search_kind_union.perf │ │ │ │ ├── search_kind_union_neg.out │ │ │ │ ├── search_kind_union_neg.perf │ │ │ │ ├── search_related_contains_child.out │ │ │ │ ├── search_related_contains_child.perf │ │ │ │ ├── search_related_contains_child_namespace.out │ │ │ │ ├── search_related_contains_child_namespace.perf │ │ │ │ ├── search_sensitive_exact_exactkind.out │ │ │ │ ├── search_sensitive_exact_exactkind.perf │ │ │ │ ├── search_sensitive_exact_exactkindplus.out │ │ │ │ ├── search_sensitive_exact_exactkindplus.perf │ │ │ │ ├── search_sensitive_exact_language.out │ │ │ │ ├── search_sensitive_exact_language.perf │ │ │ │ ├── search_sensitive_exact_multilanguage.out │ │ │ │ ├── search_sensitive_exact_multilanguage.perf │ │ │ │ ├── search_sensitive_exact_nokind.out │ │ │ │ ├── search_sensitive_exact_nokind.perf │ │ │ │ ├── search_sensitive_exact_notlanguage.out │ │ │ │ ├── search_sensitive_exact_notlanguage.perf │ │ │ │ ├── search_sensitive_prefix_exactkind.out │ │ │ │ ├── search_sensitive_prefix_exactkind.perf │ │ │ │ ├── search_sensitive_prefix_exactkindplus.out │ │ │ │ ├── search_sensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_sensitive_prefix_nokind.out │ │ │ │ ├── search_sensitive_prefix_nokind.perf │ │ │ │ ├── searchbyname.out │ │ │ │ ├── srcfiles.out │ │ │ │ ├── test.m │ │ │ │ ├── typealias_lowercase.out │ │ │ │ └── variable_lowercase.out │ │ │ │ ├── objc-selector1 │ │ │ │ ├── CxxContainsParentEntity_decl.out │ │ │ │ ├── CxxContainsParentEntity_decl.perf │ │ │ │ ├── CxxContainsParentEntity_defn.out │ │ │ │ ├── CxxContainsParentEntity_defn.perf │ │ │ │ ├── CxxFileEntityIdl.out │ │ │ │ ├── CxxFileEntityIdl.perf │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.out │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.out │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.perf │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ ├── PpEntityTraceXRefLocations.out │ │ │ │ ├── PpEntityTraceXRefLocations.perf │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.out │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.perf │ │ │ │ ├── codemarkup_EntityReferences_decl.out │ │ │ │ ├── codemarkup_EntityReferences_decl.perf │ │ │ │ ├── codemarkup_EntityReferences_defn.out │ │ │ │ ├── codemarkup_EntityReferences_defn.perf │ │ │ │ ├── codemarkup_EntityReferences_enum.out │ │ │ │ ├── codemarkup_EntityReferences_enum.perf │ │ │ │ ├── codemarkup_EntitySource.out │ │ │ │ ├── codemarkup_EntitySource.perf │ │ │ │ ├── codemarkup_searchbyname.out │ │ │ │ ├── cxxFileXRefs.out │ │ │ │ ├── cxxFileXRefs.perf │ │ │ │ ├── cxx_entity_location.out │ │ │ │ ├── cxx_entity_location.perf │ │ │ │ ├── decltodeftodecl.out │ │ │ │ ├── decltodeftodecl.perf │ │ │ │ ├── enum_lowercase.out │ │ │ │ ├── enumerator_lowercase.out │ │ │ │ ├── fileentities.out │ │ │ │ ├── fileentityinfo.out │ │ │ │ ├── fileentityxrefkind.out │ │ │ │ ├── fileentityxrefs.out │ │ │ │ ├── fileentityxrefsgeneric.out │ │ │ │ ├── filexrefmap.out │ │ │ │ ├── function_name_lowercase.out │ │ │ │ ├── ppPPEntityLocation.out │ │ │ │ ├── ppPPEntityLocation.perf │ │ │ │ ├── pp_PpIncludeXRefLocations.out │ │ │ │ ├── record_name_lowercase_class.out │ │ │ │ ├── record_name_lowercase_struct.out │ │ │ │ ├── record_name_lowercase_union.out │ │ │ │ ├── search_by_name_kind.out │ │ │ │ ├── search_by_name_kind.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild.out │ │ │ │ ├── search_by_name_kind_anymatch_wild.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.out │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.perf │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.out │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.perf │ │ │ │ ├── search_by_name_kind_class.out │ │ │ │ ├── search_by_name_kind_class.perf │ │ │ │ ├── search_by_name_kind_class_namespace.out │ │ │ │ ├── search_by_name_kind_class_namespace.perf │ │ │ │ ├── search_by_name_kind_enum.out │ │ │ │ ├── search_by_name_kind_enum.perf │ │ │ │ ├── search_by_name_kind_enumerator.out │ │ │ │ ├── search_by_name_kind_enumerator.perf │ │ │ │ ├── search_by_name_kind_function.out │ │ │ │ ├── search_by_name_kind_function.perf │ │ │ │ ├── search_by_name_kind_function_prefix.out │ │ │ │ ├── search_by_name_kind_function_prefix.perf │ │ │ │ ├── search_by_name_kind_namespace.out │ │ │ │ ├── search_by_name_kind_namespace.perf │ │ │ │ ├── search_by_name_kind_no_match.out │ │ │ │ ├── search_by_name_kind_no_match.perf │ │ │ │ ├── search_by_name_kind_no_match_enumerator.out │ │ │ │ ├── search_by_name_kind_no_match_enumerator.perf │ │ │ │ ├── search_by_name_kind_no_match_filtered.out │ │ │ │ ├── search_by_name_kind_no_match_filtered.perf │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_function.out │ │ │ │ ├── search_by_name_kind_nomatch_function.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.out │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.perf │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.out │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.perf │ │ │ │ ├── search_by_name_kind_nomatch_using.out │ │ │ │ ├── search_by_name_kind_nomatch_using.perf │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.out │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.perf │ │ │ │ ├── search_by_name_kind_nomatch_variable.out │ │ │ │ ├── search_by_name_kind_nomatch_variable.perf │ │ │ │ ├── search_by_name_kind_nothing_anymatch.out │ │ │ │ ├── search_by_name_kind_nothing_anymatch.perf │ │ │ │ ├── search_by_name_kind_objc_interface.out │ │ │ │ ├── search_by_name_kind_objc_interface.perf │ │ │ │ ├── search_by_name_kind_struct.out │ │ │ │ ├── search_by_name_kind_struct.perf │ │ │ │ ├── search_by_name_kind_struct_union_enum.out │ │ │ │ ├── search_by_name_kind_struct_union_enum.perf │ │ │ │ ├── search_by_name_kind_type.out │ │ │ │ ├── search_by_name_kind_type.perf │ │ │ │ ├── search_by_name_kind_union.out │ │ │ │ ├── search_by_name_kind_union.perf │ │ │ │ ├── search_by_name_kind_using.out │ │ │ │ ├── search_by_name_kind_using.perf │ │ │ │ ├── search_by_name_kind_variable.out │ │ │ │ ├── search_by_name_kind_variable.perf │ │ │ │ ├── search_by_scope.out │ │ │ │ ├── search_by_scope.perf │ │ │ │ ├── search_by_scope_record.out │ │ │ │ ├── search_by_scope_record.perf │ │ │ │ ├── search_by_scope_record_ignorecase.out │ │ │ │ ├── search_by_scope_record_ignorecase.perf │ │ │ │ ├── search_insensitive_exact_exactkind.out │ │ │ │ ├── search_insensitive_exact_exactkind.perf │ │ │ │ ├── search_insensitive_exact_nokind.out │ │ │ │ ├── search_insensitive_exact_nokind.perf │ │ │ │ ├── search_insensitive_prefix_exactkind.out │ │ │ │ ├── search_insensitive_prefix_exactkind.perf │ │ │ │ ├── search_insensitive_prefix_exactkindplus.out │ │ │ │ ├── search_insensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_insensitive_prefix_nokind.out │ │ │ │ ├── search_insensitive_prefix_nokind.perf │ │ │ │ ├── search_kind_class.out │ │ │ │ ├── search_kind_class.perf │ │ │ │ ├── search_kind_class_neg.out │ │ │ │ ├── search_kind_class_neg.perf │ │ │ │ ├── search_kind_enum.out │ │ │ │ ├── search_kind_enum.perf │ │ │ │ ├── search_kind_enum_neg.out │ │ │ │ ├── search_kind_enum_neg.perf │ │ │ │ ├── search_kind_namespace.out │ │ │ │ ├── search_kind_namespace.perf │ │ │ │ ├── search_kind_namespace_neg.out │ │ │ │ ├── search_kind_namespace_neg.perf │ │ │ │ ├── search_kind_struct.out │ │ │ │ ├── search_kind_struct.perf │ │ │ │ ├── search_kind_struct_neg.out │ │ │ │ ├── search_kind_struct_neg.perf │ │ │ │ ├── search_kind_union.out │ │ │ │ ├── search_kind_union.perf │ │ │ │ ├── search_kind_union_neg.out │ │ │ │ ├── search_kind_union_neg.perf │ │ │ │ ├── search_related_contains_child.out │ │ │ │ ├── search_related_contains_child.perf │ │ │ │ ├── search_related_contains_child_namespace.out │ │ │ │ ├── search_related_contains_child_namespace.perf │ │ │ │ ├── search_sensitive_exact_exactkind.out │ │ │ │ ├── search_sensitive_exact_exactkind.perf │ │ │ │ ├── search_sensitive_exact_exactkindplus.out │ │ │ │ ├── search_sensitive_exact_exactkindplus.perf │ │ │ │ ├── search_sensitive_exact_language.out │ │ │ │ ├── search_sensitive_exact_language.perf │ │ │ │ ├── search_sensitive_exact_multilanguage.out │ │ │ │ ├── search_sensitive_exact_multilanguage.perf │ │ │ │ ├── search_sensitive_exact_nokind.out │ │ │ │ ├── search_sensitive_exact_nokind.perf │ │ │ │ ├── search_sensitive_exact_notlanguage.out │ │ │ │ ├── search_sensitive_exact_notlanguage.perf │ │ │ │ ├── search_sensitive_prefix_exactkind.out │ │ │ │ ├── search_sensitive_prefix_exactkind.perf │ │ │ │ ├── search_sensitive_prefix_exactkindplus.out │ │ │ │ ├── search_sensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_sensitive_prefix_nokind.out │ │ │ │ ├── search_sensitive_prefix_nokind.perf │ │ │ │ ├── searchbyname.out │ │ │ │ ├── srcfiles.out │ │ │ │ ├── test.m │ │ │ │ ├── typealias_lowercase.out │ │ │ │ └── variable_lowercase.out │ │ │ │ ├── ppPPEntityLocation.out │ │ │ │ ├── ppPPEntityLocation.perf │ │ │ │ ├── ppPPEntityLocation.query │ │ │ │ ├── pp_PpIncludeXRefLocations.out │ │ │ │ ├── pp_PpIncludeXRefLocations.query │ │ │ │ ├── record_name_lowercase_class.out │ │ │ │ ├── record_name_lowercase_class.query │ │ │ │ ├── record_name_lowercase_struct.out │ │ │ │ ├── record_name_lowercase_struct.query │ │ │ │ ├── record_name_lowercase_union.out │ │ │ │ ├── record_name_lowercase_union.query │ │ │ │ ├── search_by_name_kind.out │ │ │ │ ├── search_by_name_kind.perf │ │ │ │ ├── search_by_name_kind.query │ │ │ │ ├── search_by_name_kind_anymatch_wild.out │ │ │ │ ├── search_by_name_kind_anymatch_wild.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild.query │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.out │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.query │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.out │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.perf │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.query │ │ │ │ ├── search_by_name_kind_class.out │ │ │ │ ├── search_by_name_kind_class.perf │ │ │ │ ├── search_by_name_kind_class.query │ │ │ │ ├── search_by_name_kind_class_namespace.out │ │ │ │ ├── search_by_name_kind_class_namespace.perf │ │ │ │ ├── search_by_name_kind_class_namespace.query │ │ │ │ ├── search_by_name_kind_enum.out │ │ │ │ ├── search_by_name_kind_enum.perf │ │ │ │ ├── search_by_name_kind_enum.query │ │ │ │ ├── search_by_name_kind_enumerator.out │ │ │ │ ├── search_by_name_kind_enumerator.perf │ │ │ │ ├── search_by_name_kind_enumerator.query │ │ │ │ ├── search_by_name_kind_function.out │ │ │ │ ├── search_by_name_kind_function.perf │ │ │ │ ├── search_by_name_kind_function.query │ │ │ │ ├── search_by_name_kind_function_prefix.out │ │ │ │ ├── search_by_name_kind_function_prefix.perf │ │ │ │ ├── search_by_name_kind_function_prefix.query │ │ │ │ ├── search_by_name_kind_namespace.out │ │ │ │ ├── search_by_name_kind_namespace.perf │ │ │ │ ├── search_by_name_kind_namespace.query │ │ │ │ ├── search_by_name_kind_no_match.out │ │ │ │ ├── search_by_name_kind_no_match.perf │ │ │ │ ├── search_by_name_kind_no_match.query │ │ │ │ ├── search_by_name_kind_no_match_enumerator.out │ │ │ │ ├── search_by_name_kind_no_match_enumerator.perf │ │ │ │ ├── search_by_name_kind_no_match_enumerator.query │ │ │ │ ├── search_by_name_kind_no_match_filtered.out │ │ │ │ ├── search_by_name_kind_no_match_filtered.perf │ │ │ │ ├── search_by_name_kind_no_match_filtered.query │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.query │ │ │ │ ├── search_by_name_kind_nomatch_function.out │ │ │ │ ├── search_by_name_kind_nomatch_function.perf │ │ │ │ ├── search_by_name_kind_nomatch_function.query │ │ │ │ ├── search_by_name_kind_nomatch_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind.query │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.out │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.query │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.out │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.perf │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.query │ │ │ │ ├── search_by_name_kind_nomatch_using.out │ │ │ │ ├── search_by_name_kind_nomatch_using.perf │ │ │ │ ├── search_by_name_kind_nomatch_using.query │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.out │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.perf │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.query │ │ │ │ ├── search_by_name_kind_nomatch_variable.out │ │ │ │ ├── search_by_name_kind_nomatch_variable.perf │ │ │ │ ├── search_by_name_kind_nomatch_variable.query │ │ │ │ ├── search_by_name_kind_nothing_anymatch.out │ │ │ │ ├── search_by_name_kind_nothing_anymatch.perf │ │ │ │ ├── search_by_name_kind_nothing_anymatch.query │ │ │ │ ├── search_by_name_kind_objc_interface.out │ │ │ │ ├── search_by_name_kind_objc_interface.perf │ │ │ │ ├── search_by_name_kind_objc_interface.query │ │ │ │ ├── search_by_name_kind_struct.out │ │ │ │ ├── search_by_name_kind_struct.perf │ │ │ │ ├── search_by_name_kind_struct.query │ │ │ │ ├── search_by_name_kind_struct_union_enum.out │ │ │ │ ├── search_by_name_kind_struct_union_enum.perf │ │ │ │ ├── search_by_name_kind_struct_union_enum.query │ │ │ │ ├── search_by_name_kind_type.out │ │ │ │ ├── search_by_name_kind_type.perf │ │ │ │ ├── search_by_name_kind_type.query │ │ │ │ ├── search_by_name_kind_union.out │ │ │ │ ├── search_by_name_kind_union.perf │ │ │ │ ├── search_by_name_kind_union.query │ │ │ │ ├── search_by_name_kind_using.out │ │ │ │ ├── search_by_name_kind_using.perf │ │ │ │ ├── search_by_name_kind_using.query │ │ │ │ ├── search_by_name_kind_variable.out │ │ │ │ ├── search_by_name_kind_variable.perf │ │ │ │ ├── search_by_name_kind_variable.query │ │ │ │ ├── search_by_scope.out │ │ │ │ ├── search_by_scope.perf │ │ │ │ ├── search_by_scope.query │ │ │ │ ├── search_by_scope_record.out │ │ │ │ ├── search_by_scope_record.perf │ │ │ │ ├── search_by_scope_record.query │ │ │ │ ├── search_by_scope_record_ignorecase.out │ │ │ │ ├── search_by_scope_record_ignorecase.perf │ │ │ │ ├── search_by_scope_record_ignorecase.query │ │ │ │ ├── search_insensitive_exact_exactkind.out │ │ │ │ ├── search_insensitive_exact_exactkind.perf │ │ │ │ ├── search_insensitive_exact_exactkind.query │ │ │ │ ├── search_insensitive_exact_nokind.out │ │ │ │ ├── search_insensitive_exact_nokind.perf │ │ │ │ ├── search_insensitive_exact_nokind.query │ │ │ │ ├── search_insensitive_prefix_exactkind.out │ │ │ │ ├── search_insensitive_prefix_exactkind.perf │ │ │ │ ├── search_insensitive_prefix_exactkind.query │ │ │ │ ├── search_insensitive_prefix_exactkindplus.out │ │ │ │ ├── search_insensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_insensitive_prefix_exactkindplus.query │ │ │ │ ├── search_insensitive_prefix_nokind.out │ │ │ │ ├── search_insensitive_prefix_nokind.perf │ │ │ │ ├── search_insensitive_prefix_nokind.query │ │ │ │ ├── search_kind_class.out │ │ │ │ ├── search_kind_class.perf │ │ │ │ ├── search_kind_class.query │ │ │ │ ├── search_kind_class_neg.out │ │ │ │ ├── search_kind_class_neg.perf │ │ │ │ ├── search_kind_class_neg.query │ │ │ │ ├── search_kind_enum.out │ │ │ │ ├── search_kind_enum.perf │ │ │ │ ├── search_kind_enum.query │ │ │ │ ├── search_kind_enum_neg.out │ │ │ │ ├── search_kind_enum_neg.perf │ │ │ │ ├── search_kind_enum_neg.query │ │ │ │ ├── search_kind_namespace.out │ │ │ │ ├── search_kind_namespace.perf │ │ │ │ ├── search_kind_namespace.query │ │ │ │ ├── search_kind_namespace_neg.out │ │ │ │ ├── search_kind_namespace_neg.perf │ │ │ │ ├── search_kind_namespace_neg.query │ │ │ │ ├── search_kind_struct.out │ │ │ │ ├── search_kind_struct.perf │ │ │ │ ├── search_kind_struct.query │ │ │ │ ├── search_kind_struct_neg.out │ │ │ │ ├── search_kind_struct_neg.perf │ │ │ │ ├── search_kind_struct_neg.query │ │ │ │ ├── search_kind_union.out │ │ │ │ ├── search_kind_union.perf │ │ │ │ ├── search_kind_union.query │ │ │ │ ├── search_kind_union_neg.out │ │ │ │ ├── search_kind_union_neg.perf │ │ │ │ ├── search_kind_union_neg.query │ │ │ │ ├── search_related_contains_child.out │ │ │ │ ├── search_related_contains_child.perf │ │ │ │ ├── search_related_contains_child.query │ │ │ │ ├── search_related_contains_child_namespace.out │ │ │ │ ├── search_related_contains_child_namespace.perf │ │ │ │ ├── search_related_contains_child_namespace.query │ │ │ │ ├── search_sensitive_exact_exactkind.out │ │ │ │ ├── search_sensitive_exact_exactkind.perf │ │ │ │ ├── search_sensitive_exact_exactkind.query │ │ │ │ ├── search_sensitive_exact_exactkindplus.out │ │ │ │ ├── search_sensitive_exact_exactkindplus.perf │ │ │ │ ├── search_sensitive_exact_exactkindplus.query │ │ │ │ ├── search_sensitive_exact_language.out │ │ │ │ ├── search_sensitive_exact_language.perf │ │ │ │ ├── search_sensitive_exact_language.query │ │ │ │ ├── search_sensitive_exact_multilanguage.out │ │ │ │ ├── search_sensitive_exact_multilanguage.perf │ │ │ │ ├── search_sensitive_exact_multilanguage.query │ │ │ │ ├── search_sensitive_exact_nokind.out │ │ │ │ ├── search_sensitive_exact_nokind.perf │ │ │ │ ├── search_sensitive_exact_nokind.query │ │ │ │ ├── search_sensitive_exact_notlanguage.out │ │ │ │ ├── search_sensitive_exact_notlanguage.perf │ │ │ │ ├── search_sensitive_exact_notlanguage.query │ │ │ │ ├── search_sensitive_prefix_exactkind.out │ │ │ │ ├── search_sensitive_prefix_exactkind.perf │ │ │ │ ├── search_sensitive_prefix_exactkind.query │ │ │ │ ├── search_sensitive_prefix_exactkindplus.out │ │ │ │ ├── search_sensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_sensitive_prefix_exactkindplus.query │ │ │ │ ├── search_sensitive_prefix_nokind.out │ │ │ │ ├── search_sensitive_prefix_nokind.perf │ │ │ │ ├── search_sensitive_prefix_nokind.query │ │ │ │ ├── searchbyname.out │ │ │ │ ├── searchbyname.query │ │ │ │ ├── srcfiles.out │ │ │ │ ├── srcfiles.query │ │ │ │ ├── template-alias1 │ │ │ │ ├── CxxContainsParentEntity_decl.out │ │ │ │ ├── CxxContainsParentEntity_decl.perf │ │ │ │ ├── CxxContainsParentEntity_defn.out │ │ │ │ ├── CxxContainsParentEntity_defn.perf │ │ │ │ ├── CxxFileEntityIdl.out │ │ │ │ ├── CxxFileEntityIdl.perf │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.out │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.out │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.perf │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ ├── PpEntityTraceXRefLocations.out │ │ │ │ ├── PpEntityTraceXRefLocations.perf │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.out │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.perf │ │ │ │ ├── codemarkup_EntityReferences_decl.out │ │ │ │ ├── codemarkup_EntityReferences_decl.perf │ │ │ │ ├── codemarkup_EntityReferences_defn.out │ │ │ │ ├── codemarkup_EntityReferences_defn.perf │ │ │ │ ├── codemarkup_EntityReferences_enum.out │ │ │ │ ├── codemarkup_EntityReferences_enum.perf │ │ │ │ ├── codemarkup_EntitySource.out │ │ │ │ ├── codemarkup_EntitySource.perf │ │ │ │ ├── codemarkup_searchbyname.out │ │ │ │ ├── cxxFileXRefs.out │ │ │ │ ├── cxxFileXRefs.perf │ │ │ │ ├── cxx_entity_location.out │ │ │ │ ├── cxx_entity_location.perf │ │ │ │ ├── decltodeftodecl.out │ │ │ │ ├── decltodeftodecl.perf │ │ │ │ ├── enum_lowercase.out │ │ │ │ ├── enumerator_lowercase.out │ │ │ │ ├── fileentities.out │ │ │ │ ├── fileentityinfo.out │ │ │ │ ├── fileentityxrefkind.out │ │ │ │ ├── fileentityxrefs.out │ │ │ │ ├── fileentityxrefsgeneric.out │ │ │ │ ├── filexrefmap.out │ │ │ │ ├── function_name_lowercase.out │ │ │ │ ├── main.cpp │ │ │ │ ├── ppPPEntityLocation.out │ │ │ │ ├── ppPPEntityLocation.perf │ │ │ │ ├── pp_PpIncludeXRefLocations.out │ │ │ │ ├── record_name_lowercase_class.out │ │ │ │ ├── record_name_lowercase_struct.out │ │ │ │ ├── record_name_lowercase_union.out │ │ │ │ ├── search_by_name_kind.out │ │ │ │ ├── search_by_name_kind.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild.out │ │ │ │ ├── search_by_name_kind_anymatch_wild.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.out │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.perf │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.out │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.perf │ │ │ │ ├── search_by_name_kind_class.out │ │ │ │ ├── search_by_name_kind_class.perf │ │ │ │ ├── search_by_name_kind_class_namespace.out │ │ │ │ ├── search_by_name_kind_class_namespace.perf │ │ │ │ ├── search_by_name_kind_enum.out │ │ │ │ ├── search_by_name_kind_enum.perf │ │ │ │ ├── search_by_name_kind_enumerator.out │ │ │ │ ├── search_by_name_kind_enumerator.perf │ │ │ │ ├── search_by_name_kind_function.out │ │ │ │ ├── search_by_name_kind_function.perf │ │ │ │ ├── search_by_name_kind_function_prefix.out │ │ │ │ ├── search_by_name_kind_function_prefix.perf │ │ │ │ ├── search_by_name_kind_namespace.out │ │ │ │ ├── search_by_name_kind_namespace.perf │ │ │ │ ├── search_by_name_kind_no_match.out │ │ │ │ ├── search_by_name_kind_no_match.perf │ │ │ │ ├── search_by_name_kind_no_match_enumerator.out │ │ │ │ ├── search_by_name_kind_no_match_enumerator.perf │ │ │ │ ├── search_by_name_kind_no_match_filtered.out │ │ │ │ ├── search_by_name_kind_no_match_filtered.perf │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_function.out │ │ │ │ ├── search_by_name_kind_nomatch_function.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.out │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.perf │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.out │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.perf │ │ │ │ ├── search_by_name_kind_nomatch_using.out │ │ │ │ ├── search_by_name_kind_nomatch_using.perf │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.out │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.perf │ │ │ │ ├── search_by_name_kind_nomatch_variable.out │ │ │ │ ├── search_by_name_kind_nomatch_variable.perf │ │ │ │ ├── search_by_name_kind_nothing_anymatch.out │ │ │ │ ├── search_by_name_kind_nothing_anymatch.perf │ │ │ │ ├── search_by_name_kind_objc_interface.out │ │ │ │ ├── search_by_name_kind_objc_interface.perf │ │ │ │ ├── search_by_name_kind_struct.out │ │ │ │ ├── search_by_name_kind_struct.perf │ │ │ │ ├── search_by_name_kind_struct_union_enum.out │ │ │ │ ├── search_by_name_kind_struct_union_enum.perf │ │ │ │ ├── search_by_name_kind_type.out │ │ │ │ ├── search_by_name_kind_type.perf │ │ │ │ ├── search_by_name_kind_union.out │ │ │ │ ├── search_by_name_kind_union.perf │ │ │ │ ├── search_by_name_kind_using.out │ │ │ │ ├── search_by_name_kind_using.perf │ │ │ │ ├── search_by_name_kind_variable.out │ │ │ │ ├── search_by_name_kind_variable.perf │ │ │ │ ├── search_by_scope.out │ │ │ │ ├── search_by_scope.perf │ │ │ │ ├── search_by_scope_record.out │ │ │ │ ├── search_by_scope_record.perf │ │ │ │ ├── search_by_scope_record_ignorecase.out │ │ │ │ ├── search_by_scope_record_ignorecase.perf │ │ │ │ ├── search_insensitive_exact_exactkind.out │ │ │ │ ├── search_insensitive_exact_exactkind.perf │ │ │ │ ├── search_insensitive_exact_nokind.out │ │ │ │ ├── search_insensitive_exact_nokind.perf │ │ │ │ ├── search_insensitive_prefix_exactkind.out │ │ │ │ ├── search_insensitive_prefix_exactkind.perf │ │ │ │ ├── search_insensitive_prefix_exactkindplus.out │ │ │ │ ├── search_insensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_insensitive_prefix_nokind.out │ │ │ │ ├── search_insensitive_prefix_nokind.perf │ │ │ │ ├── search_kind_class.out │ │ │ │ ├── search_kind_class.perf │ │ │ │ ├── search_kind_class_neg.out │ │ │ │ ├── search_kind_class_neg.perf │ │ │ │ ├── search_kind_enum.out │ │ │ │ ├── search_kind_enum.perf │ │ │ │ ├── search_kind_enum_neg.out │ │ │ │ ├── search_kind_enum_neg.perf │ │ │ │ ├── search_kind_namespace.out │ │ │ │ ├── search_kind_namespace.perf │ │ │ │ ├── search_kind_namespace_neg.out │ │ │ │ ├── search_kind_namespace_neg.perf │ │ │ │ ├── search_kind_struct.out │ │ │ │ ├── search_kind_struct.perf │ │ │ │ ├── search_kind_struct_neg.out │ │ │ │ ├── search_kind_struct_neg.perf │ │ │ │ ├── search_kind_union.out │ │ │ │ ├── search_kind_union.perf │ │ │ │ ├── search_kind_union_neg.out │ │ │ │ ├── search_kind_union_neg.perf │ │ │ │ ├── search_related_contains_child.out │ │ │ │ ├── search_related_contains_child.perf │ │ │ │ ├── search_related_contains_child_namespace.out │ │ │ │ ├── search_related_contains_child_namespace.perf │ │ │ │ ├── search_sensitive_exact_exactkind.out │ │ │ │ ├── search_sensitive_exact_exactkind.perf │ │ │ │ ├── search_sensitive_exact_exactkindplus.out │ │ │ │ ├── search_sensitive_exact_exactkindplus.perf │ │ │ │ ├── search_sensitive_exact_language.out │ │ │ │ ├── search_sensitive_exact_language.perf │ │ │ │ ├── search_sensitive_exact_multilanguage.out │ │ │ │ ├── search_sensitive_exact_multilanguage.perf │ │ │ │ ├── search_sensitive_exact_nokind.out │ │ │ │ ├── search_sensitive_exact_nokind.perf │ │ │ │ ├── search_sensitive_exact_notlanguage.out │ │ │ │ ├── search_sensitive_exact_notlanguage.perf │ │ │ │ ├── search_sensitive_prefix_exactkind.out │ │ │ │ ├── search_sensitive_prefix_exactkind.perf │ │ │ │ ├── search_sensitive_prefix_exactkindplus.out │ │ │ │ ├── search_sensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_sensitive_prefix_nokind.out │ │ │ │ ├── search_sensitive_prefix_nokind.perf │ │ │ │ ├── searchbyname.out │ │ │ │ ├── srcfiles.out │ │ │ │ ├── typealias_lowercase.out │ │ │ │ └── variable_lowercase.out │ │ │ │ ├── template-fun1 │ │ │ │ ├── CxxContainsParentEntity_decl.out │ │ │ │ ├── CxxContainsParentEntity_decl.perf │ │ │ │ ├── CxxContainsParentEntity_defn.out │ │ │ │ ├── CxxContainsParentEntity_defn.perf │ │ │ │ ├── CxxFileEntityIdl.out │ │ │ │ ├── CxxFileEntityIdl.perf │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.out │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.out │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.perf │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ ├── PpEntityTraceXRefLocations.out │ │ │ │ ├── PpEntityTraceXRefLocations.perf │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.out │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.perf │ │ │ │ ├── codemarkup_EntityReferences_decl.out │ │ │ │ ├── codemarkup_EntityReferences_decl.perf │ │ │ │ ├── codemarkup_EntityReferences_defn.out │ │ │ │ ├── codemarkup_EntityReferences_defn.perf │ │ │ │ ├── codemarkup_EntityReferences_enum.out │ │ │ │ ├── codemarkup_EntityReferences_enum.perf │ │ │ │ ├── codemarkup_EntitySource.out │ │ │ │ ├── codemarkup_EntitySource.perf │ │ │ │ ├── codemarkup_searchbyname.out │ │ │ │ ├── cxxFileXRefs.out │ │ │ │ ├── cxxFileXRefs.perf │ │ │ │ ├── cxx_entity_location.out │ │ │ │ ├── cxx_entity_location.perf │ │ │ │ ├── decltodeftodecl.out │ │ │ │ ├── decltodeftodecl.perf │ │ │ │ ├── enum_lowercase.out │ │ │ │ ├── enumerator_lowercase.out │ │ │ │ ├── fileentities.out │ │ │ │ ├── fileentityinfo.out │ │ │ │ ├── fileentityxrefkind.out │ │ │ │ ├── fileentityxrefs.out │ │ │ │ ├── fileentityxrefsgeneric.out │ │ │ │ ├── filexrefmap.out │ │ │ │ ├── function_name_lowercase.out │ │ │ │ ├── ppPPEntityLocation.out │ │ │ │ ├── ppPPEntityLocation.perf │ │ │ │ ├── pp_PpIncludeXRefLocations.out │ │ │ │ ├── record_name_lowercase_class.out │ │ │ │ ├── record_name_lowercase_struct.out │ │ │ │ ├── record_name_lowercase_union.out │ │ │ │ ├── search_by_name_kind.out │ │ │ │ ├── search_by_name_kind.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild.out │ │ │ │ ├── search_by_name_kind_anymatch_wild.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.out │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.perf │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.out │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.perf │ │ │ │ ├── search_by_name_kind_class.out │ │ │ │ ├── search_by_name_kind_class.perf │ │ │ │ ├── search_by_name_kind_class_namespace.out │ │ │ │ ├── search_by_name_kind_class_namespace.perf │ │ │ │ ├── search_by_name_kind_enum.out │ │ │ │ ├── search_by_name_kind_enum.perf │ │ │ │ ├── search_by_name_kind_enumerator.out │ │ │ │ ├── search_by_name_kind_enumerator.perf │ │ │ │ ├── search_by_name_kind_function.out │ │ │ │ ├── search_by_name_kind_function.perf │ │ │ │ ├── search_by_name_kind_function_prefix.out │ │ │ │ ├── search_by_name_kind_function_prefix.perf │ │ │ │ ├── search_by_name_kind_namespace.out │ │ │ │ ├── search_by_name_kind_namespace.perf │ │ │ │ ├── search_by_name_kind_no_match.out │ │ │ │ ├── search_by_name_kind_no_match.perf │ │ │ │ ├── search_by_name_kind_no_match_enumerator.out │ │ │ │ ├── search_by_name_kind_no_match_enumerator.perf │ │ │ │ ├── search_by_name_kind_no_match_filtered.out │ │ │ │ ├── search_by_name_kind_no_match_filtered.perf │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_function.out │ │ │ │ ├── search_by_name_kind_nomatch_function.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.out │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.perf │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.out │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.perf │ │ │ │ ├── search_by_name_kind_nomatch_using.out │ │ │ │ ├── search_by_name_kind_nomatch_using.perf │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.out │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.perf │ │ │ │ ├── search_by_name_kind_nomatch_variable.out │ │ │ │ ├── search_by_name_kind_nomatch_variable.perf │ │ │ │ ├── search_by_name_kind_nothing_anymatch.out │ │ │ │ ├── search_by_name_kind_nothing_anymatch.perf │ │ │ │ ├── search_by_name_kind_objc_interface.out │ │ │ │ ├── search_by_name_kind_objc_interface.perf │ │ │ │ ├── search_by_name_kind_struct.out │ │ │ │ ├── search_by_name_kind_struct.perf │ │ │ │ ├── search_by_name_kind_struct_union_enum.out │ │ │ │ ├── search_by_name_kind_struct_union_enum.perf │ │ │ │ ├── search_by_name_kind_type.out │ │ │ │ ├── search_by_name_kind_type.perf │ │ │ │ ├── search_by_name_kind_union.out │ │ │ │ ├── search_by_name_kind_union.perf │ │ │ │ ├── search_by_name_kind_using.out │ │ │ │ ├── search_by_name_kind_using.perf │ │ │ │ ├── search_by_name_kind_variable.out │ │ │ │ ├── search_by_name_kind_variable.perf │ │ │ │ ├── search_by_scope.out │ │ │ │ ├── search_by_scope.perf │ │ │ │ ├── search_by_scope_record.out │ │ │ │ ├── search_by_scope_record.perf │ │ │ │ ├── search_by_scope_record_ignorecase.out │ │ │ │ ├── search_by_scope_record_ignorecase.perf │ │ │ │ ├── search_insensitive_exact_exactkind.out │ │ │ │ ├── search_insensitive_exact_exactkind.perf │ │ │ │ ├── search_insensitive_exact_nokind.out │ │ │ │ ├── search_insensitive_exact_nokind.perf │ │ │ │ ├── search_insensitive_prefix_exactkind.out │ │ │ │ ├── search_insensitive_prefix_exactkind.perf │ │ │ │ ├── search_insensitive_prefix_exactkindplus.out │ │ │ │ ├── search_insensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_insensitive_prefix_nokind.out │ │ │ │ ├── search_insensitive_prefix_nokind.perf │ │ │ │ ├── search_kind_class.out │ │ │ │ ├── search_kind_class.perf │ │ │ │ ├── search_kind_class_neg.out │ │ │ │ ├── search_kind_class_neg.perf │ │ │ │ ├── search_kind_enum.out │ │ │ │ ├── search_kind_enum.perf │ │ │ │ ├── search_kind_enum_neg.out │ │ │ │ ├── search_kind_enum_neg.perf │ │ │ │ ├── search_kind_namespace.out │ │ │ │ ├── search_kind_namespace.perf │ │ │ │ ├── search_kind_namespace_neg.out │ │ │ │ ├── search_kind_namespace_neg.perf │ │ │ │ ├── search_kind_struct.out │ │ │ │ ├── search_kind_struct.perf │ │ │ │ ├── search_kind_struct_neg.out │ │ │ │ ├── search_kind_struct_neg.perf │ │ │ │ ├── search_kind_union.out │ │ │ │ ├── search_kind_union.perf │ │ │ │ ├── search_kind_union_neg.out │ │ │ │ ├── search_kind_union_neg.perf │ │ │ │ ├── search_related_contains_child.out │ │ │ │ ├── search_related_contains_child.perf │ │ │ │ ├── search_related_contains_child_namespace.out │ │ │ │ ├── search_related_contains_child_namespace.perf │ │ │ │ ├── search_sensitive_exact_exactkind.out │ │ │ │ ├── search_sensitive_exact_exactkind.perf │ │ │ │ ├── search_sensitive_exact_exactkindplus.out │ │ │ │ ├── search_sensitive_exact_exactkindplus.perf │ │ │ │ ├── search_sensitive_exact_language.out │ │ │ │ ├── search_sensitive_exact_language.perf │ │ │ │ ├── search_sensitive_exact_multilanguage.out │ │ │ │ ├── search_sensitive_exact_multilanguage.perf │ │ │ │ ├── search_sensitive_exact_nokind.out │ │ │ │ ├── search_sensitive_exact_nokind.perf │ │ │ │ ├── search_sensitive_exact_notlanguage.out │ │ │ │ ├── search_sensitive_exact_notlanguage.perf │ │ │ │ ├── search_sensitive_prefix_exactkind.out │ │ │ │ ├── search_sensitive_prefix_exactkind.perf │ │ │ │ ├── search_sensitive_prefix_exactkindplus.out │ │ │ │ ├── search_sensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_sensitive_prefix_nokind.out │ │ │ │ ├── search_sensitive_prefix_nokind.perf │ │ │ │ ├── searchbyname.out │ │ │ │ ├── srcfiles.out │ │ │ │ ├── test.cpp │ │ │ │ ├── typealias_lowercase.out │ │ │ │ └── variable_lowercase.out │ │ │ │ ├── template-member-fun1 │ │ │ │ ├── CxxContainsParentEntity_decl.out │ │ │ │ ├── CxxContainsParentEntity_decl.perf │ │ │ │ ├── CxxContainsParentEntity_defn.out │ │ │ │ ├── CxxContainsParentEntity_defn.perf │ │ │ │ ├── CxxFileEntityIdl.out │ │ │ │ ├── CxxFileEntityIdl.perf │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.out │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.out │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.perf │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ ├── PpEntityTraceXRefLocations.out │ │ │ │ ├── PpEntityTraceXRefLocations.perf │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.out │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.perf │ │ │ │ ├── codemarkup_EntityReferences_decl.out │ │ │ │ ├── codemarkup_EntityReferences_decl.perf │ │ │ │ ├── codemarkup_EntityReferences_defn.out │ │ │ │ ├── codemarkup_EntityReferences_defn.perf │ │ │ │ ├── codemarkup_EntityReferences_enum.out │ │ │ │ ├── codemarkup_EntityReferences_enum.perf │ │ │ │ ├── codemarkup_EntitySource.out │ │ │ │ ├── codemarkup_EntitySource.perf │ │ │ │ ├── codemarkup_searchbyname.out │ │ │ │ ├── cxxFileXRefs.out │ │ │ │ ├── cxxFileXRefs.perf │ │ │ │ ├── cxx_entity_location.out │ │ │ │ ├── cxx_entity_location.perf │ │ │ │ ├── decltodeftodecl.out │ │ │ │ ├── decltodeftodecl.perf │ │ │ │ ├── enum_lowercase.out │ │ │ │ ├── enumerator_lowercase.out │ │ │ │ ├── fileentities.out │ │ │ │ ├── fileentityinfo.out │ │ │ │ ├── fileentityxrefkind.out │ │ │ │ ├── fileentityxrefs.out │ │ │ │ ├── fileentityxrefsgeneric.out │ │ │ │ ├── filexrefmap.out │ │ │ │ ├── function_name_lowercase.out │ │ │ │ ├── ppPPEntityLocation.out │ │ │ │ ├── ppPPEntityLocation.perf │ │ │ │ ├── pp_PpIncludeXRefLocations.out │ │ │ │ ├── record_name_lowercase_class.out │ │ │ │ ├── record_name_lowercase_struct.out │ │ │ │ ├── record_name_lowercase_union.out │ │ │ │ ├── search_by_name_kind.out │ │ │ │ ├── search_by_name_kind.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild.out │ │ │ │ ├── search_by_name_kind_anymatch_wild.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.out │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.perf │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.out │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.perf │ │ │ │ ├── search_by_name_kind_class.out │ │ │ │ ├── search_by_name_kind_class.perf │ │ │ │ ├── search_by_name_kind_class_namespace.out │ │ │ │ ├── search_by_name_kind_class_namespace.perf │ │ │ │ ├── search_by_name_kind_enum.out │ │ │ │ ├── search_by_name_kind_enum.perf │ │ │ │ ├── search_by_name_kind_enumerator.out │ │ │ │ ├── search_by_name_kind_enumerator.perf │ │ │ │ ├── search_by_name_kind_function.out │ │ │ │ ├── search_by_name_kind_function.perf │ │ │ │ ├── search_by_name_kind_function_prefix.out │ │ │ │ ├── search_by_name_kind_function_prefix.perf │ │ │ │ ├── search_by_name_kind_namespace.out │ │ │ │ ├── search_by_name_kind_namespace.perf │ │ │ │ ├── search_by_name_kind_no_match.out │ │ │ │ ├── search_by_name_kind_no_match.perf │ │ │ │ ├── search_by_name_kind_no_match_enumerator.out │ │ │ │ ├── search_by_name_kind_no_match_enumerator.perf │ │ │ │ ├── search_by_name_kind_no_match_filtered.out │ │ │ │ ├── search_by_name_kind_no_match_filtered.perf │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_function.out │ │ │ │ ├── search_by_name_kind_nomatch_function.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.out │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.perf │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.out │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.perf │ │ │ │ ├── search_by_name_kind_nomatch_using.out │ │ │ │ ├── search_by_name_kind_nomatch_using.perf │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.out │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.perf │ │ │ │ ├── search_by_name_kind_nomatch_variable.out │ │ │ │ ├── search_by_name_kind_nomatch_variable.perf │ │ │ │ ├── search_by_name_kind_nothing_anymatch.out │ │ │ │ ├── search_by_name_kind_nothing_anymatch.perf │ │ │ │ ├── search_by_name_kind_objc_interface.out │ │ │ │ ├── search_by_name_kind_objc_interface.perf │ │ │ │ ├── search_by_name_kind_struct.out │ │ │ │ ├── search_by_name_kind_struct.perf │ │ │ │ ├── search_by_name_kind_struct_union_enum.out │ │ │ │ ├── search_by_name_kind_struct_union_enum.perf │ │ │ │ ├── search_by_name_kind_type.out │ │ │ │ ├── search_by_name_kind_type.perf │ │ │ │ ├── search_by_name_kind_union.out │ │ │ │ ├── search_by_name_kind_union.perf │ │ │ │ ├── search_by_name_kind_using.out │ │ │ │ ├── search_by_name_kind_using.perf │ │ │ │ ├── search_by_name_kind_variable.out │ │ │ │ ├── search_by_name_kind_variable.perf │ │ │ │ ├── search_by_scope.out │ │ │ │ ├── search_by_scope.perf │ │ │ │ ├── search_by_scope_record.out │ │ │ │ ├── search_by_scope_record.perf │ │ │ │ ├── search_by_scope_record_ignorecase.out │ │ │ │ ├── search_by_scope_record_ignorecase.perf │ │ │ │ ├── search_insensitive_exact_exactkind.out │ │ │ │ ├── search_insensitive_exact_exactkind.perf │ │ │ │ ├── search_insensitive_exact_nokind.out │ │ │ │ ├── search_insensitive_exact_nokind.perf │ │ │ │ ├── search_insensitive_prefix_exactkind.out │ │ │ │ ├── search_insensitive_prefix_exactkind.perf │ │ │ │ ├── search_insensitive_prefix_exactkindplus.out │ │ │ │ ├── search_insensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_insensitive_prefix_nokind.out │ │ │ │ ├── search_insensitive_prefix_nokind.perf │ │ │ │ ├── search_kind_class.out │ │ │ │ ├── search_kind_class.perf │ │ │ │ ├── search_kind_class_neg.out │ │ │ │ ├── search_kind_class_neg.perf │ │ │ │ ├── search_kind_enum.out │ │ │ │ ├── search_kind_enum.perf │ │ │ │ ├── search_kind_enum_neg.out │ │ │ │ ├── search_kind_enum_neg.perf │ │ │ │ ├── search_kind_namespace.out │ │ │ │ ├── search_kind_namespace.perf │ │ │ │ ├── search_kind_namespace_neg.out │ │ │ │ ├── search_kind_namespace_neg.perf │ │ │ │ ├── search_kind_struct.out │ │ │ │ ├── search_kind_struct.perf │ │ │ │ ├── search_kind_struct_neg.out │ │ │ │ ├── search_kind_struct_neg.perf │ │ │ │ ├── search_kind_union.out │ │ │ │ ├── search_kind_union.perf │ │ │ │ ├── search_kind_union_neg.out │ │ │ │ ├── search_kind_union_neg.perf │ │ │ │ ├── search_related_contains_child.out │ │ │ │ ├── search_related_contains_child.perf │ │ │ │ ├── search_related_contains_child_namespace.out │ │ │ │ ├── search_related_contains_child_namespace.perf │ │ │ │ ├── search_sensitive_exact_exactkind.out │ │ │ │ ├── search_sensitive_exact_exactkind.perf │ │ │ │ ├── search_sensitive_exact_exactkindplus.out │ │ │ │ ├── search_sensitive_exact_exactkindplus.perf │ │ │ │ ├── search_sensitive_exact_language.out │ │ │ │ ├── search_sensitive_exact_language.perf │ │ │ │ ├── search_sensitive_exact_multilanguage.out │ │ │ │ ├── search_sensitive_exact_multilanguage.perf │ │ │ │ ├── search_sensitive_exact_nokind.out │ │ │ │ ├── search_sensitive_exact_nokind.perf │ │ │ │ ├── search_sensitive_exact_notlanguage.out │ │ │ │ ├── search_sensitive_exact_notlanguage.perf │ │ │ │ ├── search_sensitive_prefix_exactkind.out │ │ │ │ ├── search_sensitive_prefix_exactkind.perf │ │ │ │ ├── search_sensitive_prefix_exactkindplus.out │ │ │ │ ├── search_sensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_sensitive_prefix_nokind.out │ │ │ │ ├── search_sensitive_prefix_nokind.perf │ │ │ │ ├── searchbyname.out │ │ │ │ ├── srcfiles.out │ │ │ │ ├── test.cpp │ │ │ │ ├── typealias_lowercase.out │ │ │ │ └── variable_lowercase.out │ │ │ │ ├── template-member-fun2 │ │ │ │ ├── CxxContainsParentEntity_decl.out │ │ │ │ ├── CxxContainsParentEntity_decl.perf │ │ │ │ ├── CxxContainsParentEntity_defn.out │ │ │ │ ├── CxxContainsParentEntity_defn.perf │ │ │ │ ├── CxxFileEntityIdl.out │ │ │ │ ├── CxxFileEntityIdl.perf │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.out │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.out │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.perf │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ ├── PpEntityTraceXRefLocations.out │ │ │ │ ├── PpEntityTraceXRefLocations.perf │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.out │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.perf │ │ │ │ ├── codemarkup_EntityReferences_decl.out │ │ │ │ ├── codemarkup_EntityReferences_decl.perf │ │ │ │ ├── codemarkup_EntityReferences_defn.out │ │ │ │ ├── codemarkup_EntityReferences_defn.perf │ │ │ │ ├── codemarkup_EntityReferences_enum.out │ │ │ │ ├── codemarkup_EntityReferences_enum.perf │ │ │ │ ├── codemarkup_EntitySource.out │ │ │ │ ├── codemarkup_EntitySource.perf │ │ │ │ ├── codemarkup_searchbyname.out │ │ │ │ ├── cxxFileXRefs.out │ │ │ │ ├── cxxFileXRefs.perf │ │ │ │ ├── cxx_entity_location.out │ │ │ │ ├── cxx_entity_location.perf │ │ │ │ ├── decltodeftodecl.out │ │ │ │ ├── decltodeftodecl.perf │ │ │ │ ├── enum_lowercase.out │ │ │ │ ├── enumerator_lowercase.out │ │ │ │ ├── fileentities.out │ │ │ │ ├── fileentityinfo.out │ │ │ │ ├── fileentityxrefkind.out │ │ │ │ ├── fileentityxrefs.out │ │ │ │ ├── fileentityxrefsgeneric.out │ │ │ │ ├── filexrefmap.out │ │ │ │ ├── function_name_lowercase.out │ │ │ │ ├── ppPPEntityLocation.out │ │ │ │ ├── ppPPEntityLocation.perf │ │ │ │ ├── pp_PpIncludeXRefLocations.out │ │ │ │ ├── record_name_lowercase_class.out │ │ │ │ ├── record_name_lowercase_struct.out │ │ │ │ ├── record_name_lowercase_union.out │ │ │ │ ├── search_by_name_kind.out │ │ │ │ ├── search_by_name_kind.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild.out │ │ │ │ ├── search_by_name_kind_anymatch_wild.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.out │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.perf │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.out │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.perf │ │ │ │ ├── search_by_name_kind_class.out │ │ │ │ ├── search_by_name_kind_class.perf │ │ │ │ ├── search_by_name_kind_class_namespace.out │ │ │ │ ├── search_by_name_kind_class_namespace.perf │ │ │ │ ├── search_by_name_kind_enum.out │ │ │ │ ├── search_by_name_kind_enum.perf │ │ │ │ ├── search_by_name_kind_enumerator.out │ │ │ │ ├── search_by_name_kind_enumerator.perf │ │ │ │ ├── search_by_name_kind_function.out │ │ │ │ ├── search_by_name_kind_function.perf │ │ │ │ ├── search_by_name_kind_function_prefix.out │ │ │ │ ├── search_by_name_kind_function_prefix.perf │ │ │ │ ├── search_by_name_kind_namespace.out │ │ │ │ ├── search_by_name_kind_namespace.perf │ │ │ │ ├── search_by_name_kind_no_match.out │ │ │ │ ├── search_by_name_kind_no_match.perf │ │ │ │ ├── search_by_name_kind_no_match_enumerator.out │ │ │ │ ├── search_by_name_kind_no_match_enumerator.perf │ │ │ │ ├── search_by_name_kind_no_match_filtered.out │ │ │ │ ├── search_by_name_kind_no_match_filtered.perf │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_function.out │ │ │ │ ├── search_by_name_kind_nomatch_function.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.out │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.perf │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.out │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.perf │ │ │ │ ├── search_by_name_kind_nomatch_using.out │ │ │ │ ├── search_by_name_kind_nomatch_using.perf │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.out │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.perf │ │ │ │ ├── search_by_name_kind_nomatch_variable.out │ │ │ │ ├── search_by_name_kind_nomatch_variable.perf │ │ │ │ ├── search_by_name_kind_nothing_anymatch.out │ │ │ │ ├── search_by_name_kind_nothing_anymatch.perf │ │ │ │ ├── search_by_name_kind_objc_interface.out │ │ │ │ ├── search_by_name_kind_objc_interface.perf │ │ │ │ ├── search_by_name_kind_struct.out │ │ │ │ ├── search_by_name_kind_struct.perf │ │ │ │ ├── search_by_name_kind_struct_union_enum.out │ │ │ │ ├── search_by_name_kind_struct_union_enum.perf │ │ │ │ ├── search_by_name_kind_type.out │ │ │ │ ├── search_by_name_kind_type.perf │ │ │ │ ├── search_by_name_kind_union.out │ │ │ │ ├── search_by_name_kind_union.perf │ │ │ │ ├── search_by_name_kind_using.out │ │ │ │ ├── search_by_name_kind_using.perf │ │ │ │ ├── search_by_name_kind_variable.out │ │ │ │ ├── search_by_name_kind_variable.perf │ │ │ │ ├── search_by_scope.out │ │ │ │ ├── search_by_scope.perf │ │ │ │ ├── search_by_scope_record.out │ │ │ │ ├── search_by_scope_record.perf │ │ │ │ ├── search_by_scope_record_ignorecase.out │ │ │ │ ├── search_by_scope_record_ignorecase.perf │ │ │ │ ├── search_insensitive_exact_exactkind.out │ │ │ │ ├── search_insensitive_exact_exactkind.perf │ │ │ │ ├── search_insensitive_exact_nokind.out │ │ │ │ ├── search_insensitive_exact_nokind.perf │ │ │ │ ├── search_insensitive_prefix_exactkind.out │ │ │ │ ├── search_insensitive_prefix_exactkind.perf │ │ │ │ ├── search_insensitive_prefix_exactkindplus.out │ │ │ │ ├── search_insensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_insensitive_prefix_nokind.out │ │ │ │ ├── search_insensitive_prefix_nokind.perf │ │ │ │ ├── search_kind_class.out │ │ │ │ ├── search_kind_class.perf │ │ │ │ ├── search_kind_class_neg.out │ │ │ │ ├── search_kind_class_neg.perf │ │ │ │ ├── search_kind_enum.out │ │ │ │ ├── search_kind_enum.perf │ │ │ │ ├── search_kind_enum_neg.out │ │ │ │ ├── search_kind_enum_neg.perf │ │ │ │ ├── search_kind_namespace.out │ │ │ │ ├── search_kind_namespace.perf │ │ │ │ ├── search_kind_namespace_neg.out │ │ │ │ ├── search_kind_namespace_neg.perf │ │ │ │ ├── search_kind_struct.out │ │ │ │ ├── search_kind_struct.perf │ │ │ │ ├── search_kind_struct_neg.out │ │ │ │ ├── search_kind_struct_neg.perf │ │ │ │ ├── search_kind_union.out │ │ │ │ ├── search_kind_union.perf │ │ │ │ ├── search_kind_union_neg.out │ │ │ │ ├── search_kind_union_neg.perf │ │ │ │ ├── search_related_contains_child.out │ │ │ │ ├── search_related_contains_child.perf │ │ │ │ ├── search_related_contains_child_namespace.out │ │ │ │ ├── search_related_contains_child_namespace.perf │ │ │ │ ├── search_sensitive_exact_exactkind.out │ │ │ │ ├── search_sensitive_exact_exactkind.perf │ │ │ │ ├── search_sensitive_exact_exactkindplus.out │ │ │ │ ├── search_sensitive_exact_exactkindplus.perf │ │ │ │ ├── search_sensitive_exact_language.out │ │ │ │ ├── search_sensitive_exact_language.perf │ │ │ │ ├── search_sensitive_exact_multilanguage.out │ │ │ │ ├── search_sensitive_exact_multilanguage.perf │ │ │ │ ├── search_sensitive_exact_nokind.out │ │ │ │ ├── search_sensitive_exact_nokind.perf │ │ │ │ ├── search_sensitive_exact_notlanguage.out │ │ │ │ ├── search_sensitive_exact_notlanguage.perf │ │ │ │ ├── search_sensitive_prefix_exactkind.out │ │ │ │ ├── search_sensitive_prefix_exactkind.perf │ │ │ │ ├── search_sensitive_prefix_exactkindplus.out │ │ │ │ ├── search_sensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_sensitive_prefix_nokind.out │ │ │ │ ├── search_sensitive_prefix_nokind.perf │ │ │ │ ├── searchbyname.out │ │ │ │ ├── srcfiles.out │ │ │ │ ├── test.cpp │ │ │ │ ├── typealias_lowercase.out │ │ │ │ └── variable_lowercase.out │ │ │ │ ├── template-member-var1 │ │ │ │ ├── CxxContainsParentEntity_decl.out │ │ │ │ ├── CxxContainsParentEntity_decl.perf │ │ │ │ ├── CxxContainsParentEntity_defn.out │ │ │ │ ├── CxxContainsParentEntity_defn.perf │ │ │ │ ├── CxxFileEntityIdl.out │ │ │ │ ├── CxxFileEntityIdl.perf │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.out │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.out │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.platform010-clang-17.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.perf │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ ├── CxxPpResolveTraceLocations.platform010-clang-17.out │ │ │ │ ├── PpEntityTraceXRefLocations.out │ │ │ │ ├── PpEntityTraceXRefLocations.perf │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.out │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.perf │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.platform010-clang-17.out │ │ │ │ ├── codemarkup_EntityReferences_decl.out │ │ │ │ ├── codemarkup_EntityReferences_decl.perf │ │ │ │ ├── codemarkup_EntityReferences_decl.platform010-clang-17.out │ │ │ │ ├── codemarkup_EntityReferences_defn.out │ │ │ │ ├── codemarkup_EntityReferences_defn.perf │ │ │ │ ├── codemarkup_EntityReferences_defn.platform010-clang-17.out │ │ │ │ ├── codemarkup_EntityReferences_enum.out │ │ │ │ ├── codemarkup_EntityReferences_enum.perf │ │ │ │ ├── codemarkup_EntitySource.out │ │ │ │ ├── codemarkup_EntitySource.perf │ │ │ │ ├── codemarkup_EntitySource.platform010-clang-17.out │ │ │ │ ├── codemarkup_searchbyname.out │ │ │ │ ├── codemarkup_searchbyname.platform010-clang-17.out │ │ │ │ ├── cxxFileXRefs.out │ │ │ │ ├── cxxFileXRefs.perf │ │ │ │ ├── cxxFileXRefs.platform010-clang-17.out │ │ │ │ ├── cxx_entity_location.out │ │ │ │ ├── cxx_entity_location.perf │ │ │ │ ├── cxx_entity_location.platform010-clang-17.out │ │ │ │ ├── decltodeftodecl.out │ │ │ │ ├── decltodeftodecl.perf │ │ │ │ ├── decltodeftodecl.platform010-clang-17.out │ │ │ │ ├── enum_lowercase.out │ │ │ │ ├── enumerator_lowercase.out │ │ │ │ ├── fileentities.out │ │ │ │ ├── fileentities.platform010-clang-17.out │ │ │ │ ├── fileentityinfo.out │ │ │ │ ├── fileentityinfo.platform010-clang-17.out │ │ │ │ ├── fileentityxrefkind.out │ │ │ │ ├── fileentityxrefkind.platform010-clang-17.out │ │ │ │ ├── fileentityxrefs.out │ │ │ │ ├── fileentityxrefs.platform010-clang-17.out │ │ │ │ ├── fileentityxrefsgeneric.out │ │ │ │ ├── fileentityxrefsgeneric.platform010-clang-17.out │ │ │ │ ├── filexrefmap.out │ │ │ │ ├── filexrefmap.platform010-clang-17.out │ │ │ │ ├── function_name_lowercase.out │ │ │ │ ├── ppPPEntityLocation.out │ │ │ │ ├── ppPPEntityLocation.perf │ │ │ │ ├── pp_PpIncludeXRefLocations.out │ │ │ │ ├── record_name_lowercase_class.out │ │ │ │ ├── record_name_lowercase_struct.out │ │ │ │ ├── record_name_lowercase_union.out │ │ │ │ ├── search_by_name_kind.out │ │ │ │ ├── search_by_name_kind.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild.out │ │ │ │ ├── search_by_name_kind_anymatch_wild.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild.platform010-clang-17.out │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.out │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.platform010-clang-17.out │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.out │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.perf │ │ │ │ ├── search_by_name_kind_class.out │ │ │ │ ├── search_by_name_kind_class.perf │ │ │ │ ├── search_by_name_kind_class_namespace.out │ │ │ │ ├── search_by_name_kind_class_namespace.perf │ │ │ │ ├── search_by_name_kind_enum.out │ │ │ │ ├── search_by_name_kind_enum.perf │ │ │ │ ├── search_by_name_kind_enumerator.out │ │ │ │ ├── search_by_name_kind_enumerator.perf │ │ │ │ ├── search_by_name_kind_function.out │ │ │ │ ├── search_by_name_kind_function.perf │ │ │ │ ├── search_by_name_kind_function_prefix.out │ │ │ │ ├── search_by_name_kind_function_prefix.perf │ │ │ │ ├── search_by_name_kind_namespace.out │ │ │ │ ├── search_by_name_kind_namespace.perf │ │ │ │ ├── search_by_name_kind_no_match.out │ │ │ │ ├── search_by_name_kind_no_match.perf │ │ │ │ ├── search_by_name_kind_no_match_enumerator.out │ │ │ │ ├── search_by_name_kind_no_match_enumerator.perf │ │ │ │ ├── search_by_name_kind_no_match_filtered.out │ │ │ │ ├── search_by_name_kind_no_match_filtered.perf │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_function.out │ │ │ │ ├── search_by_name_kind_nomatch_function.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.out │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.perf │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.out │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.perf │ │ │ │ ├── search_by_name_kind_nomatch_using.out │ │ │ │ ├── search_by_name_kind_nomatch_using.perf │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.out │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.perf │ │ │ │ ├── search_by_name_kind_nomatch_variable.out │ │ │ │ ├── search_by_name_kind_nomatch_variable.perf │ │ │ │ ├── search_by_name_kind_nothing_anymatch.out │ │ │ │ ├── search_by_name_kind_nothing_anymatch.perf │ │ │ │ ├── search_by_name_kind_objc_interface.out │ │ │ │ ├── search_by_name_kind_objc_interface.perf │ │ │ │ ├── search_by_name_kind_struct.out │ │ │ │ ├── search_by_name_kind_struct.perf │ │ │ │ ├── search_by_name_kind_struct_union_enum.out │ │ │ │ ├── search_by_name_kind_struct_union_enum.perf │ │ │ │ ├── search_by_name_kind_type.out │ │ │ │ ├── search_by_name_kind_type.perf │ │ │ │ ├── search_by_name_kind_union.out │ │ │ │ ├── search_by_name_kind_union.perf │ │ │ │ ├── search_by_name_kind_using.out │ │ │ │ ├── search_by_name_kind_using.perf │ │ │ │ ├── search_by_name_kind_variable.out │ │ │ │ ├── search_by_name_kind_variable.perf │ │ │ │ ├── search_by_scope.out │ │ │ │ ├── search_by_scope.perf │ │ │ │ ├── search_by_scope_record.out │ │ │ │ ├── search_by_scope_record.perf │ │ │ │ ├── search_by_scope_record_ignorecase.out │ │ │ │ ├── search_by_scope_record_ignorecase.perf │ │ │ │ ├── search_insensitive_exact_exactkind.out │ │ │ │ ├── search_insensitive_exact_exactkind.perf │ │ │ │ ├── search_insensitive_exact_nokind.out │ │ │ │ ├── search_insensitive_exact_nokind.perf │ │ │ │ ├── search_insensitive_prefix_exactkind.out │ │ │ │ ├── search_insensitive_prefix_exactkind.perf │ │ │ │ ├── search_insensitive_prefix_exactkindplus.out │ │ │ │ ├── search_insensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_insensitive_prefix_nokind.out │ │ │ │ ├── search_insensitive_prefix_nokind.perf │ │ │ │ ├── search_kind_class.out │ │ │ │ ├── search_kind_class.perf │ │ │ │ ├── search_kind_class_neg.out │ │ │ │ ├── search_kind_class_neg.perf │ │ │ │ ├── search_kind_enum.out │ │ │ │ ├── search_kind_enum.perf │ │ │ │ ├── search_kind_enum_neg.out │ │ │ │ ├── search_kind_enum_neg.perf │ │ │ │ ├── search_kind_namespace.out │ │ │ │ ├── search_kind_namespace.perf │ │ │ │ ├── search_kind_namespace_neg.out │ │ │ │ ├── search_kind_namespace_neg.perf │ │ │ │ ├── search_kind_struct.out │ │ │ │ ├── search_kind_struct.perf │ │ │ │ ├── search_kind_struct_neg.out │ │ │ │ ├── search_kind_struct_neg.perf │ │ │ │ ├── search_kind_union.out │ │ │ │ ├── search_kind_union.perf │ │ │ │ ├── search_kind_union_neg.out │ │ │ │ ├── search_kind_union_neg.perf │ │ │ │ ├── search_related_contains_child.out │ │ │ │ ├── search_related_contains_child.perf │ │ │ │ ├── search_related_contains_child_namespace.out │ │ │ │ ├── search_related_contains_child_namespace.perf │ │ │ │ ├── search_sensitive_exact_exactkind.out │ │ │ │ ├── search_sensitive_exact_exactkind.perf │ │ │ │ ├── search_sensitive_exact_exactkindplus.out │ │ │ │ ├── search_sensitive_exact_exactkindplus.perf │ │ │ │ ├── search_sensitive_exact_language.out │ │ │ │ ├── search_sensitive_exact_language.perf │ │ │ │ ├── search_sensitive_exact_multilanguage.out │ │ │ │ ├── search_sensitive_exact_multilanguage.perf │ │ │ │ ├── search_sensitive_exact_nokind.out │ │ │ │ ├── search_sensitive_exact_nokind.perf │ │ │ │ ├── search_sensitive_exact_notlanguage.out │ │ │ │ ├── search_sensitive_exact_notlanguage.perf │ │ │ │ ├── search_sensitive_prefix_exactkind.out │ │ │ │ ├── search_sensitive_prefix_exactkind.perf │ │ │ │ ├── search_sensitive_prefix_exactkindplus.out │ │ │ │ ├── search_sensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_sensitive_prefix_nokind.out │ │ │ │ ├── search_sensitive_prefix_nokind.perf │ │ │ │ ├── searchbyname.out │ │ │ │ ├── searchbyname.platform010-clang-17.out │ │ │ │ ├── srcfiles.out │ │ │ │ ├── test.cpp │ │ │ │ ├── typealias_lowercase.out │ │ │ │ └── variable_lowercase.out │ │ │ │ ├── template-using-fun1 │ │ │ │ ├── CxxContainsParentEntity_decl.out │ │ │ │ ├── CxxContainsParentEntity_decl.perf │ │ │ │ ├── CxxContainsParentEntity_defn.out │ │ │ │ ├── CxxContainsParentEntity_defn.perf │ │ │ │ ├── CxxFileEntityIdl.out │ │ │ │ ├── CxxFileEntityIdl.perf │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.out │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.out │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.perf │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ ├── PpEntityTraceXRefLocations.out │ │ │ │ ├── PpEntityTraceXRefLocations.perf │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.out │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.perf │ │ │ │ ├── codemarkup_EntityReferences_decl.out │ │ │ │ ├── codemarkup_EntityReferences_decl.perf │ │ │ │ ├── codemarkup_EntityReferences_defn.out │ │ │ │ ├── codemarkup_EntityReferences_defn.perf │ │ │ │ ├── codemarkup_EntityReferences_enum.out │ │ │ │ ├── codemarkup_EntityReferences_enum.perf │ │ │ │ ├── codemarkup_EntitySource.out │ │ │ │ ├── codemarkup_EntitySource.perf │ │ │ │ ├── codemarkup_searchbyname.out │ │ │ │ ├── cxxFileXRefs.out │ │ │ │ ├── cxxFileXRefs.perf │ │ │ │ ├── cxx_entity_location.out │ │ │ │ ├── cxx_entity_location.perf │ │ │ │ ├── decltodeftodecl.out │ │ │ │ ├── decltodeftodecl.perf │ │ │ │ ├── enum_lowercase.out │ │ │ │ ├── enumerator_lowercase.out │ │ │ │ ├── fileentities.out │ │ │ │ ├── fileentityinfo.out │ │ │ │ ├── fileentityxrefkind.out │ │ │ │ ├── fileentityxrefs.out │ │ │ │ ├── fileentityxrefsgeneric.out │ │ │ │ ├── filexrefmap.out │ │ │ │ ├── function_name_lowercase.out │ │ │ │ ├── ppPPEntityLocation.out │ │ │ │ ├── ppPPEntityLocation.perf │ │ │ │ ├── pp_PpIncludeXRefLocations.out │ │ │ │ ├── record_name_lowercase_class.out │ │ │ │ ├── record_name_lowercase_struct.out │ │ │ │ ├── record_name_lowercase_union.out │ │ │ │ ├── search_by_name_kind.out │ │ │ │ ├── search_by_name_kind.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild.out │ │ │ │ ├── search_by_name_kind_anymatch_wild.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.out │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.perf │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.out │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.perf │ │ │ │ ├── search_by_name_kind_class.out │ │ │ │ ├── search_by_name_kind_class.perf │ │ │ │ ├── search_by_name_kind_class_namespace.out │ │ │ │ ├── search_by_name_kind_class_namespace.perf │ │ │ │ ├── search_by_name_kind_enum.out │ │ │ │ ├── search_by_name_kind_enum.perf │ │ │ │ ├── search_by_name_kind_enumerator.out │ │ │ │ ├── search_by_name_kind_enumerator.perf │ │ │ │ ├── search_by_name_kind_function.out │ │ │ │ ├── search_by_name_kind_function.perf │ │ │ │ ├── search_by_name_kind_function_prefix.out │ │ │ │ ├── search_by_name_kind_function_prefix.perf │ │ │ │ ├── search_by_name_kind_namespace.out │ │ │ │ ├── search_by_name_kind_namespace.perf │ │ │ │ ├── search_by_name_kind_no_match.out │ │ │ │ ├── search_by_name_kind_no_match.perf │ │ │ │ ├── search_by_name_kind_no_match_enumerator.out │ │ │ │ ├── search_by_name_kind_no_match_enumerator.perf │ │ │ │ ├── search_by_name_kind_no_match_filtered.out │ │ │ │ ├── search_by_name_kind_no_match_filtered.perf │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_function.out │ │ │ │ ├── search_by_name_kind_nomatch_function.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.out │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.perf │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.out │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.perf │ │ │ │ ├── search_by_name_kind_nomatch_using.out │ │ │ │ ├── search_by_name_kind_nomatch_using.perf │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.out │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.perf │ │ │ │ ├── search_by_name_kind_nomatch_variable.out │ │ │ │ ├── search_by_name_kind_nomatch_variable.perf │ │ │ │ ├── search_by_name_kind_nothing_anymatch.out │ │ │ │ ├── search_by_name_kind_nothing_anymatch.perf │ │ │ │ ├── search_by_name_kind_objc_interface.out │ │ │ │ ├── search_by_name_kind_objc_interface.perf │ │ │ │ ├── search_by_name_kind_struct.out │ │ │ │ ├── search_by_name_kind_struct.perf │ │ │ │ ├── search_by_name_kind_struct_union_enum.out │ │ │ │ ├── search_by_name_kind_struct_union_enum.perf │ │ │ │ ├── search_by_name_kind_type.out │ │ │ │ ├── search_by_name_kind_type.perf │ │ │ │ ├── search_by_name_kind_union.out │ │ │ │ ├── search_by_name_kind_union.perf │ │ │ │ ├── search_by_name_kind_using.out │ │ │ │ ├── search_by_name_kind_using.perf │ │ │ │ ├── search_by_name_kind_variable.out │ │ │ │ ├── search_by_name_kind_variable.perf │ │ │ │ ├── search_by_scope.out │ │ │ │ ├── search_by_scope.perf │ │ │ │ ├── search_by_scope_record.out │ │ │ │ ├── search_by_scope_record.perf │ │ │ │ ├── search_by_scope_record_ignorecase.out │ │ │ │ ├── search_by_scope_record_ignorecase.perf │ │ │ │ ├── search_insensitive_exact_exactkind.out │ │ │ │ ├── search_insensitive_exact_exactkind.perf │ │ │ │ ├── search_insensitive_exact_nokind.out │ │ │ │ ├── search_insensitive_exact_nokind.perf │ │ │ │ ├── search_insensitive_prefix_exactkind.out │ │ │ │ ├── search_insensitive_prefix_exactkind.perf │ │ │ │ ├── search_insensitive_prefix_exactkindplus.out │ │ │ │ ├── search_insensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_insensitive_prefix_nokind.out │ │ │ │ ├── search_insensitive_prefix_nokind.perf │ │ │ │ ├── search_kind_class.out │ │ │ │ ├── search_kind_class.perf │ │ │ │ ├── search_kind_class_neg.out │ │ │ │ ├── search_kind_class_neg.perf │ │ │ │ ├── search_kind_enum.out │ │ │ │ ├── search_kind_enum.perf │ │ │ │ ├── search_kind_enum_neg.out │ │ │ │ ├── search_kind_enum_neg.perf │ │ │ │ ├── search_kind_namespace.out │ │ │ │ ├── search_kind_namespace.perf │ │ │ │ ├── search_kind_namespace_neg.out │ │ │ │ ├── search_kind_namespace_neg.perf │ │ │ │ ├── search_kind_struct.out │ │ │ │ ├── search_kind_struct.perf │ │ │ │ ├── search_kind_struct_neg.out │ │ │ │ ├── search_kind_struct_neg.perf │ │ │ │ ├── search_kind_union.out │ │ │ │ ├── search_kind_union.perf │ │ │ │ ├── search_kind_union_neg.out │ │ │ │ ├── search_kind_union_neg.perf │ │ │ │ ├── search_related_contains_child.out │ │ │ │ ├── search_related_contains_child.perf │ │ │ │ ├── search_related_contains_child_namespace.out │ │ │ │ ├── search_related_contains_child_namespace.perf │ │ │ │ ├── search_sensitive_exact_exactkind.out │ │ │ │ ├── search_sensitive_exact_exactkind.perf │ │ │ │ ├── search_sensitive_exact_exactkindplus.out │ │ │ │ ├── search_sensitive_exact_exactkindplus.perf │ │ │ │ ├── search_sensitive_exact_language.out │ │ │ │ ├── search_sensitive_exact_language.perf │ │ │ │ ├── search_sensitive_exact_multilanguage.out │ │ │ │ ├── search_sensitive_exact_multilanguage.perf │ │ │ │ ├── search_sensitive_exact_nokind.out │ │ │ │ ├── search_sensitive_exact_nokind.perf │ │ │ │ ├── search_sensitive_exact_notlanguage.out │ │ │ │ ├── search_sensitive_exact_notlanguage.perf │ │ │ │ ├── search_sensitive_prefix_exactkind.out │ │ │ │ ├── search_sensitive_prefix_exactkind.perf │ │ │ │ ├── search_sensitive_prefix_exactkindplus.out │ │ │ │ ├── search_sensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_sensitive_prefix_nokind.out │ │ │ │ ├── search_sensitive_prefix_nokind.perf │ │ │ │ ├── searchbyname.out │ │ │ │ ├── srcfiles.out │ │ │ │ ├── test.cpp │ │ │ │ ├── typealias_lowercase.out │ │ │ │ └── variable_lowercase.out │ │ │ │ ├── template-using-var1 │ │ │ │ ├── CxxContainsParentEntity_decl.out │ │ │ │ ├── CxxContainsParentEntity_decl.perf │ │ │ │ ├── CxxContainsParentEntity_defn.out │ │ │ │ ├── CxxContainsParentEntity_defn.perf │ │ │ │ ├── CxxFileEntityIdl.out │ │ │ │ ├── CxxFileEntityIdl.perf │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.out │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.out │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.perf │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ ├── PpEntityTraceXRefLocations.out │ │ │ │ ├── PpEntityTraceXRefLocations.perf │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.out │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.perf │ │ │ │ ├── codemarkup_EntityReferences_decl.out │ │ │ │ ├── codemarkup_EntityReferences_decl.perf │ │ │ │ ├── codemarkup_EntityReferences_defn.out │ │ │ │ ├── codemarkup_EntityReferences_defn.perf │ │ │ │ ├── codemarkup_EntityReferences_enum.out │ │ │ │ ├── codemarkup_EntityReferences_enum.perf │ │ │ │ ├── codemarkup_EntitySource.out │ │ │ │ ├── codemarkup_EntitySource.perf │ │ │ │ ├── codemarkup_searchbyname.out │ │ │ │ ├── cxxFileXRefs.out │ │ │ │ ├── cxxFileXRefs.perf │ │ │ │ ├── cxx_entity_location.out │ │ │ │ ├── cxx_entity_location.perf │ │ │ │ ├── decltodeftodecl.out │ │ │ │ ├── decltodeftodecl.perf │ │ │ │ ├── enum_lowercase.out │ │ │ │ ├── enumerator_lowercase.out │ │ │ │ ├── fileentities.out │ │ │ │ ├── fileentityinfo.out │ │ │ │ ├── fileentityxrefkind.out │ │ │ │ ├── fileentityxrefs.out │ │ │ │ ├── fileentityxrefsgeneric.out │ │ │ │ ├── filexrefmap.out │ │ │ │ ├── function_name_lowercase.out │ │ │ │ ├── ppPPEntityLocation.out │ │ │ │ ├── ppPPEntityLocation.perf │ │ │ │ ├── pp_PpIncludeXRefLocations.out │ │ │ │ ├── record_name_lowercase_class.out │ │ │ │ ├── record_name_lowercase_struct.out │ │ │ │ ├── record_name_lowercase_union.out │ │ │ │ ├── search_by_name_kind.out │ │ │ │ ├── search_by_name_kind.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild.out │ │ │ │ ├── search_by_name_kind_anymatch_wild.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.out │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.perf │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.out │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.perf │ │ │ │ ├── search_by_name_kind_class.out │ │ │ │ ├── search_by_name_kind_class.perf │ │ │ │ ├── search_by_name_kind_class_namespace.out │ │ │ │ ├── search_by_name_kind_class_namespace.perf │ │ │ │ ├── search_by_name_kind_enum.out │ │ │ │ ├── search_by_name_kind_enum.perf │ │ │ │ ├── search_by_name_kind_enumerator.out │ │ │ │ ├── search_by_name_kind_enumerator.perf │ │ │ │ ├── search_by_name_kind_function.out │ │ │ │ ├── search_by_name_kind_function.perf │ │ │ │ ├── search_by_name_kind_function_prefix.out │ │ │ │ ├── search_by_name_kind_function_prefix.perf │ │ │ │ ├── search_by_name_kind_namespace.out │ │ │ │ ├── search_by_name_kind_namespace.perf │ │ │ │ ├── search_by_name_kind_no_match.out │ │ │ │ ├── search_by_name_kind_no_match.perf │ │ │ │ ├── search_by_name_kind_no_match_enumerator.out │ │ │ │ ├── search_by_name_kind_no_match_enumerator.perf │ │ │ │ ├── search_by_name_kind_no_match_filtered.out │ │ │ │ ├── search_by_name_kind_no_match_filtered.perf │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_function.out │ │ │ │ ├── search_by_name_kind_nomatch_function.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.out │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.perf │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.out │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.perf │ │ │ │ ├── search_by_name_kind_nomatch_using.out │ │ │ │ ├── search_by_name_kind_nomatch_using.perf │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.out │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.perf │ │ │ │ ├── search_by_name_kind_nomatch_variable.out │ │ │ │ ├── search_by_name_kind_nomatch_variable.perf │ │ │ │ ├── search_by_name_kind_nothing_anymatch.out │ │ │ │ ├── search_by_name_kind_nothing_anymatch.perf │ │ │ │ ├── search_by_name_kind_objc_interface.out │ │ │ │ ├── search_by_name_kind_objc_interface.perf │ │ │ │ ├── search_by_name_kind_struct.out │ │ │ │ ├── search_by_name_kind_struct.perf │ │ │ │ ├── search_by_name_kind_struct_union_enum.out │ │ │ │ ├── search_by_name_kind_struct_union_enum.perf │ │ │ │ ├── search_by_name_kind_type.out │ │ │ │ ├── search_by_name_kind_type.perf │ │ │ │ ├── search_by_name_kind_union.out │ │ │ │ ├── search_by_name_kind_union.perf │ │ │ │ ├── search_by_name_kind_using.out │ │ │ │ ├── search_by_name_kind_using.perf │ │ │ │ ├── search_by_name_kind_variable.out │ │ │ │ ├── search_by_name_kind_variable.perf │ │ │ │ ├── search_by_scope.out │ │ │ │ ├── search_by_scope.perf │ │ │ │ ├── search_by_scope_record.out │ │ │ │ ├── search_by_scope_record.perf │ │ │ │ ├── search_by_scope_record_ignorecase.out │ │ │ │ ├── search_by_scope_record_ignorecase.perf │ │ │ │ ├── search_insensitive_exact_exactkind.out │ │ │ │ ├── search_insensitive_exact_exactkind.perf │ │ │ │ ├── search_insensitive_exact_nokind.out │ │ │ │ ├── search_insensitive_exact_nokind.perf │ │ │ │ ├── search_insensitive_prefix_exactkind.out │ │ │ │ ├── search_insensitive_prefix_exactkind.perf │ │ │ │ ├── search_insensitive_prefix_exactkindplus.out │ │ │ │ ├── search_insensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_insensitive_prefix_nokind.out │ │ │ │ ├── search_insensitive_prefix_nokind.perf │ │ │ │ ├── search_kind_class.out │ │ │ │ ├── search_kind_class.perf │ │ │ │ ├── search_kind_class_neg.out │ │ │ │ ├── search_kind_class_neg.perf │ │ │ │ ├── search_kind_enum.out │ │ │ │ ├── search_kind_enum.perf │ │ │ │ ├── search_kind_enum_neg.out │ │ │ │ ├── search_kind_enum_neg.perf │ │ │ │ ├── search_kind_namespace.out │ │ │ │ ├── search_kind_namespace.perf │ │ │ │ ├── search_kind_namespace_neg.out │ │ │ │ ├── search_kind_namespace_neg.perf │ │ │ │ ├── search_kind_struct.out │ │ │ │ ├── search_kind_struct.perf │ │ │ │ ├── search_kind_struct_neg.out │ │ │ │ ├── search_kind_struct_neg.perf │ │ │ │ ├── search_kind_union.out │ │ │ │ ├── search_kind_union.perf │ │ │ │ ├── search_kind_union_neg.out │ │ │ │ ├── search_kind_union_neg.perf │ │ │ │ ├── search_related_contains_child.out │ │ │ │ ├── search_related_contains_child.perf │ │ │ │ ├── search_related_contains_child_namespace.out │ │ │ │ ├── search_related_contains_child_namespace.perf │ │ │ │ ├── search_sensitive_exact_exactkind.out │ │ │ │ ├── search_sensitive_exact_exactkind.perf │ │ │ │ ├── search_sensitive_exact_exactkindplus.out │ │ │ │ ├── search_sensitive_exact_exactkindplus.perf │ │ │ │ ├── search_sensitive_exact_language.out │ │ │ │ ├── search_sensitive_exact_language.perf │ │ │ │ ├── search_sensitive_exact_multilanguage.out │ │ │ │ ├── search_sensitive_exact_multilanguage.perf │ │ │ │ ├── search_sensitive_exact_nokind.out │ │ │ │ ├── search_sensitive_exact_nokind.perf │ │ │ │ ├── search_sensitive_exact_notlanguage.out │ │ │ │ ├── search_sensitive_exact_notlanguage.perf │ │ │ │ ├── search_sensitive_prefix_exactkind.out │ │ │ │ ├── search_sensitive_prefix_exactkind.perf │ │ │ │ ├── search_sensitive_prefix_exactkindplus.out │ │ │ │ ├── search_sensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_sensitive_prefix_nokind.out │ │ │ │ ├── search_sensitive_prefix_nokind.perf │ │ │ │ ├── searchbyname.out │ │ │ │ ├── srcfiles.out │ │ │ │ ├── test.cpp │ │ │ │ ├── typealias_lowercase.out │ │ │ │ └── variable_lowercase.out │ │ │ │ ├── template-var1 │ │ │ │ ├── CxxContainsParentEntity_decl.out │ │ │ │ ├── CxxContainsParentEntity_decl.perf │ │ │ │ ├── CxxContainsParentEntity_defn.out │ │ │ │ ├── CxxContainsParentEntity_defn.perf │ │ │ │ ├── CxxFileEntityIdl.out │ │ │ │ ├── CxxFileEntityIdl.perf │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.out │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.out │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.perf │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ ├── PpEntityTraceXRefLocations.out │ │ │ │ ├── PpEntityTraceXRefLocations.perf │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.out │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.perf │ │ │ │ ├── codemarkup_EntityReferences_decl.out │ │ │ │ ├── codemarkup_EntityReferences_decl.perf │ │ │ │ ├── codemarkup_EntityReferences_defn.out │ │ │ │ ├── codemarkup_EntityReferences_defn.perf │ │ │ │ ├── codemarkup_EntityReferences_enum.out │ │ │ │ ├── codemarkup_EntityReferences_enum.perf │ │ │ │ ├── codemarkup_EntitySource.out │ │ │ │ ├── codemarkup_EntitySource.perf │ │ │ │ ├── codemarkup_searchbyname.out │ │ │ │ ├── cxxFileXRefs.out │ │ │ │ ├── cxxFileXRefs.perf │ │ │ │ ├── cxx_entity_location.out │ │ │ │ ├── cxx_entity_location.perf │ │ │ │ ├── decltodeftodecl.out │ │ │ │ ├── decltodeftodecl.perf │ │ │ │ ├── enum_lowercase.out │ │ │ │ ├── enumerator_lowercase.out │ │ │ │ ├── fileentities.out │ │ │ │ ├── fileentityinfo.out │ │ │ │ ├── fileentityxrefkind.out │ │ │ │ ├── fileentityxrefs.out │ │ │ │ ├── fileentityxrefsgeneric.out │ │ │ │ ├── filexrefmap.out │ │ │ │ ├── function_name_lowercase.out │ │ │ │ ├── ppPPEntityLocation.out │ │ │ │ ├── ppPPEntityLocation.perf │ │ │ │ ├── pp_PpIncludeXRefLocations.out │ │ │ │ ├── record_name_lowercase_class.out │ │ │ │ ├── record_name_lowercase_struct.out │ │ │ │ ├── record_name_lowercase_union.out │ │ │ │ ├── search_by_name_kind.out │ │ │ │ ├── search_by_name_kind.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild.out │ │ │ │ ├── search_by_name_kind_anymatch_wild.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.out │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.perf │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.out │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.perf │ │ │ │ ├── search_by_name_kind_class.out │ │ │ │ ├── search_by_name_kind_class.perf │ │ │ │ ├── search_by_name_kind_class_namespace.out │ │ │ │ ├── search_by_name_kind_class_namespace.perf │ │ │ │ ├── search_by_name_kind_enum.out │ │ │ │ ├── search_by_name_kind_enum.perf │ │ │ │ ├── search_by_name_kind_enumerator.out │ │ │ │ ├── search_by_name_kind_enumerator.perf │ │ │ │ ├── search_by_name_kind_function.out │ │ │ │ ├── search_by_name_kind_function.perf │ │ │ │ ├── search_by_name_kind_function_prefix.out │ │ │ │ ├── search_by_name_kind_function_prefix.perf │ │ │ │ ├── search_by_name_kind_namespace.out │ │ │ │ ├── search_by_name_kind_namespace.perf │ │ │ │ ├── search_by_name_kind_no_match.out │ │ │ │ ├── search_by_name_kind_no_match.perf │ │ │ │ ├── search_by_name_kind_no_match_enumerator.out │ │ │ │ ├── search_by_name_kind_no_match_enumerator.perf │ │ │ │ ├── search_by_name_kind_no_match_filtered.out │ │ │ │ ├── search_by_name_kind_no_match_filtered.perf │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_function.out │ │ │ │ ├── search_by_name_kind_nomatch_function.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.out │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.perf │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.out │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.perf │ │ │ │ ├── search_by_name_kind_nomatch_using.out │ │ │ │ ├── search_by_name_kind_nomatch_using.perf │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.out │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.perf │ │ │ │ ├── search_by_name_kind_nomatch_variable.out │ │ │ │ ├── search_by_name_kind_nomatch_variable.perf │ │ │ │ ├── search_by_name_kind_nothing_anymatch.out │ │ │ │ ├── search_by_name_kind_nothing_anymatch.perf │ │ │ │ ├── search_by_name_kind_objc_interface.out │ │ │ │ ├── search_by_name_kind_objc_interface.perf │ │ │ │ ├── search_by_name_kind_struct.out │ │ │ │ ├── search_by_name_kind_struct.perf │ │ │ │ ├── search_by_name_kind_struct_union_enum.out │ │ │ │ ├── search_by_name_kind_struct_union_enum.perf │ │ │ │ ├── search_by_name_kind_type.out │ │ │ │ ├── search_by_name_kind_type.perf │ │ │ │ ├── search_by_name_kind_union.out │ │ │ │ ├── search_by_name_kind_union.perf │ │ │ │ ├── search_by_name_kind_using.out │ │ │ │ ├── search_by_name_kind_using.perf │ │ │ │ ├── search_by_name_kind_variable.out │ │ │ │ ├── search_by_name_kind_variable.perf │ │ │ │ ├── search_by_scope.out │ │ │ │ ├── search_by_scope.perf │ │ │ │ ├── search_by_scope_record.out │ │ │ │ ├── search_by_scope_record.perf │ │ │ │ ├── search_by_scope_record_ignorecase.out │ │ │ │ ├── search_by_scope_record_ignorecase.perf │ │ │ │ ├── search_insensitive_exact_exactkind.out │ │ │ │ ├── search_insensitive_exact_exactkind.perf │ │ │ │ ├── search_insensitive_exact_nokind.out │ │ │ │ ├── search_insensitive_exact_nokind.perf │ │ │ │ ├── search_insensitive_prefix_exactkind.out │ │ │ │ ├── search_insensitive_prefix_exactkind.perf │ │ │ │ ├── search_insensitive_prefix_exactkindplus.out │ │ │ │ ├── search_insensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_insensitive_prefix_nokind.out │ │ │ │ ├── search_insensitive_prefix_nokind.perf │ │ │ │ ├── search_kind_class.out │ │ │ │ ├── search_kind_class.perf │ │ │ │ ├── search_kind_class_neg.out │ │ │ │ ├── search_kind_class_neg.perf │ │ │ │ ├── search_kind_enum.out │ │ │ │ ├── search_kind_enum.perf │ │ │ │ ├── search_kind_enum_neg.out │ │ │ │ ├── search_kind_enum_neg.perf │ │ │ │ ├── search_kind_namespace.out │ │ │ │ ├── search_kind_namespace.perf │ │ │ │ ├── search_kind_namespace_neg.out │ │ │ │ ├── search_kind_namespace_neg.perf │ │ │ │ ├── search_kind_struct.out │ │ │ │ ├── search_kind_struct.perf │ │ │ │ ├── search_kind_struct_neg.out │ │ │ │ ├── search_kind_struct_neg.perf │ │ │ │ ├── search_kind_union.out │ │ │ │ ├── search_kind_union.perf │ │ │ │ ├── search_kind_union_neg.out │ │ │ │ ├── search_kind_union_neg.perf │ │ │ │ ├── search_related_contains_child.out │ │ │ │ ├── search_related_contains_child.perf │ │ │ │ ├── search_related_contains_child_namespace.out │ │ │ │ ├── search_related_contains_child_namespace.perf │ │ │ │ ├── search_sensitive_exact_exactkind.out │ │ │ │ ├── search_sensitive_exact_exactkind.perf │ │ │ │ ├── search_sensitive_exact_exactkindplus.out │ │ │ │ ├── search_sensitive_exact_exactkindplus.perf │ │ │ │ ├── search_sensitive_exact_language.out │ │ │ │ ├── search_sensitive_exact_language.perf │ │ │ │ ├── search_sensitive_exact_multilanguage.out │ │ │ │ ├── search_sensitive_exact_multilanguage.perf │ │ │ │ ├── search_sensitive_exact_nokind.out │ │ │ │ ├── search_sensitive_exact_nokind.perf │ │ │ │ ├── search_sensitive_exact_notlanguage.out │ │ │ │ ├── search_sensitive_exact_notlanguage.perf │ │ │ │ ├── search_sensitive_prefix_exactkind.out │ │ │ │ ├── search_sensitive_prefix_exactkind.perf │ │ │ │ ├── search_sensitive_prefix_exactkindplus.out │ │ │ │ ├── search_sensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_sensitive_prefix_nokind.out │ │ │ │ ├── search_sensitive_prefix_nokind.perf │ │ │ │ ├── searchbyname.out │ │ │ │ ├── srcfiles.out │ │ │ │ ├── test.cpp │ │ │ │ ├── typealias_lowercase.out │ │ │ │ └── variable_lowercase.out │ │ │ │ ├── template1 │ │ │ │ ├── CxxContainsParentEntity_decl.out │ │ │ │ ├── CxxContainsParentEntity_decl.perf │ │ │ │ ├── CxxContainsParentEntity_defn.out │ │ │ │ ├── CxxContainsParentEntity_defn.perf │ │ │ │ ├── CxxFileEntityIdl.out │ │ │ │ ├── CxxFileEntityIdl.perf │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.out │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.out │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.perf │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ ├── PpEntityTraceXRefLocations.out │ │ │ │ ├── PpEntityTraceXRefLocations.perf │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.out │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.perf │ │ │ │ ├── codemarkup_EntityReferences_decl.out │ │ │ │ ├── codemarkup_EntityReferences_decl.perf │ │ │ │ ├── codemarkup_EntityReferences_defn.out │ │ │ │ ├── codemarkup_EntityReferences_defn.perf │ │ │ │ ├── codemarkup_EntityReferences_enum.out │ │ │ │ ├── codemarkup_EntityReferences_enum.perf │ │ │ │ ├── codemarkup_EntitySource.out │ │ │ │ ├── codemarkup_EntitySource.perf │ │ │ │ ├── codemarkup_searchbyname.out │ │ │ │ ├── cxxFileXRefs.out │ │ │ │ ├── cxxFileXRefs.perf │ │ │ │ ├── cxx_entity_location.out │ │ │ │ ├── cxx_entity_location.perf │ │ │ │ ├── decltodeftodecl.out │ │ │ │ ├── decltodeftodecl.perf │ │ │ │ ├── enum_lowercase.out │ │ │ │ ├── enumerator_lowercase.out │ │ │ │ ├── fileentities.out │ │ │ │ ├── fileentityinfo.out │ │ │ │ ├── fileentityxrefkind.out │ │ │ │ ├── fileentityxrefs.out │ │ │ │ ├── fileentityxrefsgeneric.out │ │ │ │ ├── filexrefmap.out │ │ │ │ ├── function_name_lowercase.out │ │ │ │ ├── ppPPEntityLocation.out │ │ │ │ ├── ppPPEntityLocation.perf │ │ │ │ ├── pp_PpIncludeXRefLocations.out │ │ │ │ ├── record_name_lowercase_class.out │ │ │ │ ├── record_name_lowercase_struct.out │ │ │ │ ├── record_name_lowercase_union.out │ │ │ │ ├── search_by_name_kind.out │ │ │ │ ├── search_by_name_kind.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild.out │ │ │ │ ├── search_by_name_kind_anymatch_wild.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.out │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.perf │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.out │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.perf │ │ │ │ ├── search_by_name_kind_class.out │ │ │ │ ├── search_by_name_kind_class.perf │ │ │ │ ├── search_by_name_kind_class_namespace.out │ │ │ │ ├── search_by_name_kind_class_namespace.perf │ │ │ │ ├── search_by_name_kind_enum.out │ │ │ │ ├── search_by_name_kind_enum.perf │ │ │ │ ├── search_by_name_kind_enumerator.out │ │ │ │ ├── search_by_name_kind_enumerator.perf │ │ │ │ ├── search_by_name_kind_function.out │ │ │ │ ├── search_by_name_kind_function.perf │ │ │ │ ├── search_by_name_kind_function_prefix.out │ │ │ │ ├── search_by_name_kind_function_prefix.perf │ │ │ │ ├── search_by_name_kind_namespace.out │ │ │ │ ├── search_by_name_kind_namespace.perf │ │ │ │ ├── search_by_name_kind_no_match.out │ │ │ │ ├── search_by_name_kind_no_match.perf │ │ │ │ ├── search_by_name_kind_no_match_enumerator.out │ │ │ │ ├── search_by_name_kind_no_match_enumerator.perf │ │ │ │ ├── search_by_name_kind_no_match_filtered.out │ │ │ │ ├── search_by_name_kind_no_match_filtered.perf │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_function.out │ │ │ │ ├── search_by_name_kind_nomatch_function.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.out │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.perf │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.out │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.perf │ │ │ │ ├── search_by_name_kind_nomatch_using.out │ │ │ │ ├── search_by_name_kind_nomatch_using.perf │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.out │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.perf │ │ │ │ ├── search_by_name_kind_nomatch_variable.out │ │ │ │ ├── search_by_name_kind_nomatch_variable.perf │ │ │ │ ├── search_by_name_kind_nothing_anymatch.out │ │ │ │ ├── search_by_name_kind_nothing_anymatch.perf │ │ │ │ ├── search_by_name_kind_objc_interface.out │ │ │ │ ├── search_by_name_kind_objc_interface.perf │ │ │ │ ├── search_by_name_kind_struct.out │ │ │ │ ├── search_by_name_kind_struct.perf │ │ │ │ ├── search_by_name_kind_struct_union_enum.out │ │ │ │ ├── search_by_name_kind_struct_union_enum.perf │ │ │ │ ├── search_by_name_kind_type.out │ │ │ │ ├── search_by_name_kind_type.perf │ │ │ │ ├── search_by_name_kind_union.out │ │ │ │ ├── search_by_name_kind_union.perf │ │ │ │ ├── search_by_name_kind_using.out │ │ │ │ ├── search_by_name_kind_using.perf │ │ │ │ ├── search_by_name_kind_variable.out │ │ │ │ ├── search_by_name_kind_variable.perf │ │ │ │ ├── search_by_scope.out │ │ │ │ ├── search_by_scope.perf │ │ │ │ ├── search_by_scope_record.out │ │ │ │ ├── search_by_scope_record.perf │ │ │ │ ├── search_by_scope_record_ignorecase.out │ │ │ │ ├── search_by_scope_record_ignorecase.perf │ │ │ │ ├── search_insensitive_exact_exactkind.out │ │ │ │ ├── search_insensitive_exact_exactkind.perf │ │ │ │ ├── search_insensitive_exact_nokind.out │ │ │ │ ├── search_insensitive_exact_nokind.perf │ │ │ │ ├── search_insensitive_prefix_exactkind.out │ │ │ │ ├── search_insensitive_prefix_exactkind.perf │ │ │ │ ├── search_insensitive_prefix_exactkindplus.out │ │ │ │ ├── search_insensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_insensitive_prefix_nokind.out │ │ │ │ ├── search_insensitive_prefix_nokind.perf │ │ │ │ ├── search_kind_class.out │ │ │ │ ├── search_kind_class.perf │ │ │ │ ├── search_kind_class_neg.out │ │ │ │ ├── search_kind_class_neg.perf │ │ │ │ ├── search_kind_enum.out │ │ │ │ ├── search_kind_enum.perf │ │ │ │ ├── search_kind_enum_neg.out │ │ │ │ ├── search_kind_enum_neg.perf │ │ │ │ ├── search_kind_namespace.out │ │ │ │ ├── search_kind_namespace.perf │ │ │ │ ├── search_kind_namespace_neg.out │ │ │ │ ├── search_kind_namespace_neg.perf │ │ │ │ ├── search_kind_struct.out │ │ │ │ ├── search_kind_struct.perf │ │ │ │ ├── search_kind_struct_neg.out │ │ │ │ ├── search_kind_struct_neg.perf │ │ │ │ ├── search_kind_union.out │ │ │ │ ├── search_kind_union.perf │ │ │ │ ├── search_kind_union_neg.out │ │ │ │ ├── search_kind_union_neg.perf │ │ │ │ ├── search_related_contains_child.out │ │ │ │ ├── search_related_contains_child.perf │ │ │ │ ├── search_related_contains_child_namespace.out │ │ │ │ ├── search_related_contains_child_namespace.perf │ │ │ │ ├── search_sensitive_exact_exactkind.out │ │ │ │ ├── search_sensitive_exact_exactkind.perf │ │ │ │ ├── search_sensitive_exact_exactkindplus.out │ │ │ │ ├── search_sensitive_exact_exactkindplus.perf │ │ │ │ ├── search_sensitive_exact_language.out │ │ │ │ ├── search_sensitive_exact_language.perf │ │ │ │ ├── search_sensitive_exact_multilanguage.out │ │ │ │ ├── search_sensitive_exact_multilanguage.perf │ │ │ │ ├── search_sensitive_exact_nokind.out │ │ │ │ ├── search_sensitive_exact_nokind.perf │ │ │ │ ├── search_sensitive_exact_notlanguage.out │ │ │ │ ├── search_sensitive_exact_notlanguage.perf │ │ │ │ ├── search_sensitive_prefix_exactkind.out │ │ │ │ ├── search_sensitive_prefix_exactkind.perf │ │ │ │ ├── search_sensitive_prefix_exactkindplus.out │ │ │ │ ├── search_sensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_sensitive_prefix_nokind.out │ │ │ │ ├── search_sensitive_prefix_nokind.perf │ │ │ │ ├── searchbyname.out │ │ │ │ ├── srcfiles.out │ │ │ │ ├── test.cpp │ │ │ │ ├── typealias_lowercase.out │ │ │ │ └── variable_lowercase.out │ │ │ │ ├── template2 │ │ │ │ ├── CxxContainsParentEntity_decl.out │ │ │ │ ├── CxxContainsParentEntity_decl.perf │ │ │ │ ├── CxxContainsParentEntity_defn.out │ │ │ │ ├── CxxContainsParentEntity_defn.perf │ │ │ │ ├── CxxFileEntityIdl.out │ │ │ │ ├── CxxFileEntityIdl.perf │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.out │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.out │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.perf │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ ├── PpEntityTraceXRefLocations.out │ │ │ │ ├── PpEntityTraceXRefLocations.perf │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.out │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.perf │ │ │ │ ├── codemarkup_EntityReferences_decl.out │ │ │ │ ├── codemarkup_EntityReferences_decl.perf │ │ │ │ ├── codemarkup_EntityReferences_defn.out │ │ │ │ ├── codemarkup_EntityReferences_defn.perf │ │ │ │ ├── codemarkup_EntityReferences_enum.out │ │ │ │ ├── codemarkup_EntityReferences_enum.perf │ │ │ │ ├── codemarkup_EntitySource.out │ │ │ │ ├── codemarkup_EntitySource.perf │ │ │ │ ├── codemarkup_searchbyname.out │ │ │ │ ├── cxxFileXRefs.out │ │ │ │ ├── cxxFileXRefs.perf │ │ │ │ ├── cxx_entity_location.out │ │ │ │ ├── cxx_entity_location.perf │ │ │ │ ├── decltodeftodecl.out │ │ │ │ ├── decltodeftodecl.perf │ │ │ │ ├── enum_lowercase.out │ │ │ │ ├── enumerator_lowercase.out │ │ │ │ ├── fileentities.out │ │ │ │ ├── fileentityinfo.out │ │ │ │ ├── fileentityxrefkind.out │ │ │ │ ├── fileentityxrefs.out │ │ │ │ ├── fileentityxrefsgeneric.out │ │ │ │ ├── filexrefmap.out │ │ │ │ ├── function_name_lowercase.out │ │ │ │ ├── ppPPEntityLocation.out │ │ │ │ ├── ppPPEntityLocation.perf │ │ │ │ ├── pp_PpIncludeXRefLocations.out │ │ │ │ ├── record_name_lowercase_class.out │ │ │ │ ├── record_name_lowercase_struct.out │ │ │ │ ├── record_name_lowercase_union.out │ │ │ │ ├── search_by_name_kind.out │ │ │ │ ├── search_by_name_kind.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild.out │ │ │ │ ├── search_by_name_kind_anymatch_wild.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.out │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.perf │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.out │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.perf │ │ │ │ ├── search_by_name_kind_class.out │ │ │ │ ├── search_by_name_kind_class.perf │ │ │ │ ├── search_by_name_kind_class_namespace.out │ │ │ │ ├── search_by_name_kind_class_namespace.perf │ │ │ │ ├── search_by_name_kind_enum.out │ │ │ │ ├── search_by_name_kind_enum.perf │ │ │ │ ├── search_by_name_kind_enumerator.out │ │ │ │ ├── search_by_name_kind_enumerator.perf │ │ │ │ ├── search_by_name_kind_function.out │ │ │ │ ├── search_by_name_kind_function.perf │ │ │ │ ├── search_by_name_kind_function_prefix.out │ │ │ │ ├── search_by_name_kind_function_prefix.perf │ │ │ │ ├── search_by_name_kind_namespace.out │ │ │ │ ├── search_by_name_kind_namespace.perf │ │ │ │ ├── search_by_name_kind_no_match.out │ │ │ │ ├── search_by_name_kind_no_match.perf │ │ │ │ ├── search_by_name_kind_no_match_enumerator.out │ │ │ │ ├── search_by_name_kind_no_match_enumerator.perf │ │ │ │ ├── search_by_name_kind_no_match_filtered.out │ │ │ │ ├── search_by_name_kind_no_match_filtered.perf │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_function.out │ │ │ │ ├── search_by_name_kind_nomatch_function.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.out │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.perf │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.out │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.perf │ │ │ │ ├── search_by_name_kind_nomatch_using.out │ │ │ │ ├── search_by_name_kind_nomatch_using.perf │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.out │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.perf │ │ │ │ ├── search_by_name_kind_nomatch_variable.out │ │ │ │ ├── search_by_name_kind_nomatch_variable.perf │ │ │ │ ├── search_by_name_kind_nothing_anymatch.out │ │ │ │ ├── search_by_name_kind_nothing_anymatch.perf │ │ │ │ ├── search_by_name_kind_objc_interface.out │ │ │ │ ├── search_by_name_kind_objc_interface.perf │ │ │ │ ├── search_by_name_kind_struct.out │ │ │ │ ├── search_by_name_kind_struct.perf │ │ │ │ ├── search_by_name_kind_struct_union_enum.out │ │ │ │ ├── search_by_name_kind_struct_union_enum.perf │ │ │ │ ├── search_by_name_kind_type.out │ │ │ │ ├── search_by_name_kind_type.perf │ │ │ │ ├── search_by_name_kind_union.out │ │ │ │ ├── search_by_name_kind_union.perf │ │ │ │ ├── search_by_name_kind_using.out │ │ │ │ ├── search_by_name_kind_using.perf │ │ │ │ ├── search_by_name_kind_variable.out │ │ │ │ ├── search_by_name_kind_variable.perf │ │ │ │ ├── search_by_scope.out │ │ │ │ ├── search_by_scope.perf │ │ │ │ ├── search_by_scope_record.out │ │ │ │ ├── search_by_scope_record.perf │ │ │ │ ├── search_by_scope_record_ignorecase.out │ │ │ │ ├── search_by_scope_record_ignorecase.perf │ │ │ │ ├── search_insensitive_exact_exactkind.out │ │ │ │ ├── search_insensitive_exact_exactkind.perf │ │ │ │ ├── search_insensitive_exact_nokind.out │ │ │ │ ├── search_insensitive_exact_nokind.perf │ │ │ │ ├── search_insensitive_prefix_exactkind.out │ │ │ │ ├── search_insensitive_prefix_exactkind.perf │ │ │ │ ├── search_insensitive_prefix_exactkindplus.out │ │ │ │ ├── search_insensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_insensitive_prefix_nokind.out │ │ │ │ ├── search_insensitive_prefix_nokind.perf │ │ │ │ ├── search_kind_class.out │ │ │ │ ├── search_kind_class.perf │ │ │ │ ├── search_kind_class_neg.out │ │ │ │ ├── search_kind_class_neg.perf │ │ │ │ ├── search_kind_enum.out │ │ │ │ ├── search_kind_enum.perf │ │ │ │ ├── search_kind_enum_neg.out │ │ │ │ ├── search_kind_enum_neg.perf │ │ │ │ ├── search_kind_namespace.out │ │ │ │ ├── search_kind_namespace.perf │ │ │ │ ├── search_kind_namespace_neg.out │ │ │ │ ├── search_kind_namespace_neg.perf │ │ │ │ ├── search_kind_struct.out │ │ │ │ ├── search_kind_struct.perf │ │ │ │ ├── search_kind_struct_neg.out │ │ │ │ ├── search_kind_struct_neg.perf │ │ │ │ ├── search_kind_union.out │ │ │ │ ├── search_kind_union.perf │ │ │ │ ├── search_kind_union_neg.out │ │ │ │ ├── search_kind_union_neg.perf │ │ │ │ ├── search_related_contains_child.out │ │ │ │ ├── search_related_contains_child.perf │ │ │ │ ├── search_related_contains_child_namespace.out │ │ │ │ ├── search_related_contains_child_namespace.perf │ │ │ │ ├── search_sensitive_exact_exactkind.out │ │ │ │ ├── search_sensitive_exact_exactkind.perf │ │ │ │ ├── search_sensitive_exact_exactkindplus.out │ │ │ │ ├── search_sensitive_exact_exactkindplus.perf │ │ │ │ ├── search_sensitive_exact_language.out │ │ │ │ ├── search_sensitive_exact_language.perf │ │ │ │ ├── search_sensitive_exact_multilanguage.out │ │ │ │ ├── search_sensitive_exact_multilanguage.perf │ │ │ │ ├── search_sensitive_exact_nokind.out │ │ │ │ ├── search_sensitive_exact_nokind.perf │ │ │ │ ├── search_sensitive_exact_notlanguage.out │ │ │ │ ├── search_sensitive_exact_notlanguage.perf │ │ │ │ ├── search_sensitive_prefix_exactkind.out │ │ │ │ ├── search_sensitive_prefix_exactkind.perf │ │ │ │ ├── search_sensitive_prefix_exactkindplus.out │ │ │ │ ├── search_sensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_sensitive_prefix_nokind.out │ │ │ │ ├── search_sensitive_prefix_nokind.perf │ │ │ │ ├── searchbyname.out │ │ │ │ ├── srcfiles.out │ │ │ │ ├── test.cpp │ │ │ │ ├── typealias_lowercase.out │ │ │ │ └── variable_lowercase.out │ │ │ │ ├── template3 │ │ │ │ ├── CxxContainsParentEntity_decl.out │ │ │ │ ├── CxxContainsParentEntity_decl.perf │ │ │ │ ├── CxxContainsParentEntity_defn.out │ │ │ │ ├── CxxContainsParentEntity_defn.perf │ │ │ │ ├── CxxFileEntityIdl.out │ │ │ │ ├── CxxFileEntityIdl.perf │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.out │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.out │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.perf │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ ├── CxxPpResolveTraceLocations.platform010-clang-17.out │ │ │ │ ├── PpEntityTraceXRefLocations.out │ │ │ │ ├── PpEntityTraceXRefLocations.perf │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.out │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.perf │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.platform010-clang-17.out │ │ │ │ ├── codemarkup_EntityReferences_decl.out │ │ │ │ ├── codemarkup_EntityReferences_decl.perf │ │ │ │ ├── codemarkup_EntityReferences_defn.out │ │ │ │ ├── codemarkup_EntityReferences_defn.perf │ │ │ │ ├── codemarkup_EntityReferences_enum.out │ │ │ │ ├── codemarkup_EntityReferences_enum.perf │ │ │ │ ├── codemarkup_EntitySource.out │ │ │ │ ├── codemarkup_EntitySource.perf │ │ │ │ ├── codemarkup_searchbyname.out │ │ │ │ ├── cxxFileXRefs.out │ │ │ │ ├── cxxFileXRefs.perf │ │ │ │ ├── cxx_entity_location.out │ │ │ │ ├── cxx_entity_location.perf │ │ │ │ ├── cxx_entity_location.platform010-clang-17.out │ │ │ │ ├── decltodeftodecl.out │ │ │ │ ├── decltodeftodecl.perf │ │ │ │ ├── enum_lowercase.out │ │ │ │ ├── enumerator_lowercase.out │ │ │ │ ├── fileentities.out │ │ │ │ ├── fileentities.platform010-clang-17.out │ │ │ │ ├── fileentityinfo.out │ │ │ │ ├── fileentityinfo.platform010-clang-17.out │ │ │ │ ├── fileentityxrefkind.out │ │ │ │ ├── fileentityxrefs.out │ │ │ │ ├── fileentityxrefsgeneric.out │ │ │ │ ├── filexrefmap.out │ │ │ │ ├── function_name_lowercase.out │ │ │ │ ├── ppPPEntityLocation.out │ │ │ │ ├── ppPPEntityLocation.perf │ │ │ │ ├── pp_PpIncludeXRefLocations.out │ │ │ │ ├── record_name_lowercase_class.out │ │ │ │ ├── record_name_lowercase_struct.out │ │ │ │ ├── record_name_lowercase_union.out │ │ │ │ ├── search_by_name_kind.out │ │ │ │ ├── search_by_name_kind.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild.out │ │ │ │ ├── search_by_name_kind_anymatch_wild.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.out │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.perf │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.out │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.perf │ │ │ │ ├── search_by_name_kind_class.out │ │ │ │ ├── search_by_name_kind_class.perf │ │ │ │ ├── search_by_name_kind_class_namespace.out │ │ │ │ ├── search_by_name_kind_class_namespace.perf │ │ │ │ ├── search_by_name_kind_enum.out │ │ │ │ ├── search_by_name_kind_enum.perf │ │ │ │ ├── search_by_name_kind_enumerator.out │ │ │ │ ├── search_by_name_kind_enumerator.perf │ │ │ │ ├── search_by_name_kind_function.out │ │ │ │ ├── search_by_name_kind_function.perf │ │ │ │ ├── search_by_name_kind_function_prefix.out │ │ │ │ ├── search_by_name_kind_function_prefix.perf │ │ │ │ ├── search_by_name_kind_namespace.out │ │ │ │ ├── search_by_name_kind_namespace.perf │ │ │ │ ├── search_by_name_kind_no_match.out │ │ │ │ ├── search_by_name_kind_no_match.perf │ │ │ │ ├── search_by_name_kind_no_match_enumerator.out │ │ │ │ ├── search_by_name_kind_no_match_enumerator.perf │ │ │ │ ├── search_by_name_kind_no_match_filtered.out │ │ │ │ ├── search_by_name_kind_no_match_filtered.perf │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_function.out │ │ │ │ ├── search_by_name_kind_nomatch_function.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.out │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.perf │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.out │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.perf │ │ │ │ ├── search_by_name_kind_nomatch_using.out │ │ │ │ ├── search_by_name_kind_nomatch_using.perf │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.out │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.perf │ │ │ │ ├── search_by_name_kind_nomatch_variable.out │ │ │ │ ├── search_by_name_kind_nomatch_variable.perf │ │ │ │ ├── search_by_name_kind_nothing_anymatch.out │ │ │ │ ├── search_by_name_kind_nothing_anymatch.perf │ │ │ │ ├── search_by_name_kind_objc_interface.out │ │ │ │ ├── search_by_name_kind_objc_interface.perf │ │ │ │ ├── search_by_name_kind_struct.out │ │ │ │ ├── search_by_name_kind_struct.perf │ │ │ │ ├── search_by_name_kind_struct_union_enum.out │ │ │ │ ├── search_by_name_kind_struct_union_enum.perf │ │ │ │ ├── search_by_name_kind_type.out │ │ │ │ ├── search_by_name_kind_type.perf │ │ │ │ ├── search_by_name_kind_union.out │ │ │ │ ├── search_by_name_kind_union.perf │ │ │ │ ├── search_by_name_kind_using.out │ │ │ │ ├── search_by_name_kind_using.perf │ │ │ │ ├── search_by_name_kind_variable.out │ │ │ │ ├── search_by_name_kind_variable.perf │ │ │ │ ├── search_by_scope.out │ │ │ │ ├── search_by_scope.perf │ │ │ │ ├── search_by_scope_record.out │ │ │ │ ├── search_by_scope_record.perf │ │ │ │ ├── search_by_scope_record_ignorecase.out │ │ │ │ ├── search_by_scope_record_ignorecase.perf │ │ │ │ ├── search_insensitive_exact_exactkind.out │ │ │ │ ├── search_insensitive_exact_exactkind.perf │ │ │ │ ├── search_insensitive_exact_nokind.out │ │ │ │ ├── search_insensitive_exact_nokind.perf │ │ │ │ ├── search_insensitive_prefix_exactkind.out │ │ │ │ ├── search_insensitive_prefix_exactkind.perf │ │ │ │ ├── search_insensitive_prefix_exactkindplus.out │ │ │ │ ├── search_insensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_insensitive_prefix_nokind.out │ │ │ │ ├── search_insensitive_prefix_nokind.perf │ │ │ │ ├── search_kind_class.out │ │ │ │ ├── search_kind_class.perf │ │ │ │ ├── search_kind_class_neg.out │ │ │ │ ├── search_kind_class_neg.perf │ │ │ │ ├── search_kind_enum.out │ │ │ │ ├── search_kind_enum.perf │ │ │ │ ├── search_kind_enum_neg.out │ │ │ │ ├── search_kind_enum_neg.perf │ │ │ │ ├── search_kind_namespace.out │ │ │ │ ├── search_kind_namespace.perf │ │ │ │ ├── search_kind_namespace_neg.out │ │ │ │ ├── search_kind_namespace_neg.perf │ │ │ │ ├── search_kind_struct.out │ │ │ │ ├── search_kind_struct.perf │ │ │ │ ├── search_kind_struct_neg.out │ │ │ │ ├── search_kind_struct_neg.perf │ │ │ │ ├── search_kind_union.out │ │ │ │ ├── search_kind_union.perf │ │ │ │ ├── search_kind_union_neg.out │ │ │ │ ├── search_kind_union_neg.perf │ │ │ │ ├── search_related_contains_child.out │ │ │ │ ├── search_related_contains_child.perf │ │ │ │ ├── search_related_contains_child_namespace.out │ │ │ │ ├── search_related_contains_child_namespace.perf │ │ │ │ ├── search_sensitive_exact_exactkind.out │ │ │ │ ├── search_sensitive_exact_exactkind.perf │ │ │ │ ├── search_sensitive_exact_exactkindplus.out │ │ │ │ ├── search_sensitive_exact_exactkindplus.perf │ │ │ │ ├── search_sensitive_exact_language.out │ │ │ │ ├── search_sensitive_exact_language.perf │ │ │ │ ├── search_sensitive_exact_multilanguage.out │ │ │ │ ├── search_sensitive_exact_multilanguage.perf │ │ │ │ ├── search_sensitive_exact_nokind.out │ │ │ │ ├── search_sensitive_exact_nokind.perf │ │ │ │ ├── search_sensitive_exact_notlanguage.out │ │ │ │ ├── search_sensitive_exact_notlanguage.perf │ │ │ │ ├── search_sensitive_prefix_exactkind.out │ │ │ │ ├── search_sensitive_prefix_exactkind.perf │ │ │ │ ├── search_sensitive_prefix_exactkindplus.out │ │ │ │ ├── search_sensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_sensitive_prefix_nokind.out │ │ │ │ ├── search_sensitive_prefix_nokind.perf │ │ │ │ ├── searchbyname.out │ │ │ │ ├── srcfiles.out │ │ │ │ ├── test.cpp │ │ │ │ ├── typealias_lowercase.out │ │ │ │ └── variable_lowercase.out │ │ │ │ ├── typealias_lowercase.out │ │ │ │ ├── typealias_lowercase.query │ │ │ │ ├── using-chain1 │ │ │ │ ├── CxxContainsParentEntity_decl.out │ │ │ │ ├── CxxContainsParentEntity_decl.perf │ │ │ │ ├── CxxContainsParentEntity_defn.out │ │ │ │ ├── CxxContainsParentEntity_defn.perf │ │ │ │ ├── CxxFileEntityIdl.out │ │ │ │ ├── CxxFileEntityIdl.perf │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.out │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.out │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.perf │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ ├── PpEntityTraceXRefLocations.out │ │ │ │ ├── PpEntityTraceXRefLocations.perf │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.out │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.perf │ │ │ │ ├── codemarkup_EntityReferences_decl.out │ │ │ │ ├── codemarkup_EntityReferences_decl.perf │ │ │ │ ├── codemarkup_EntityReferences_defn.out │ │ │ │ ├── codemarkup_EntityReferences_defn.perf │ │ │ │ ├── codemarkup_EntityReferences_enum.out │ │ │ │ ├── codemarkup_EntityReferences_enum.perf │ │ │ │ ├── codemarkup_EntitySource.out │ │ │ │ ├── codemarkup_EntitySource.perf │ │ │ │ ├── codemarkup_searchbyname.out │ │ │ │ ├── cxxFileXRefs.out │ │ │ │ ├── cxxFileXRefs.perf │ │ │ │ ├── cxx_entity_location.out │ │ │ │ ├── cxx_entity_location.perf │ │ │ │ ├── decltodeftodecl.out │ │ │ │ ├── decltodeftodecl.perf │ │ │ │ ├── enum_lowercase.out │ │ │ │ ├── enumerator_lowercase.out │ │ │ │ ├── fileentities.out │ │ │ │ ├── fileentityinfo.out │ │ │ │ ├── fileentityxrefkind.out │ │ │ │ ├── fileentityxrefs.out │ │ │ │ ├── fileentityxrefsgeneric.out │ │ │ │ ├── filexrefmap.out │ │ │ │ ├── function_name_lowercase.out │ │ │ │ ├── ppPPEntityLocation.out │ │ │ │ ├── ppPPEntityLocation.perf │ │ │ │ ├── pp_PpIncludeXRefLocations.out │ │ │ │ ├── record_name_lowercase_class.out │ │ │ │ ├── record_name_lowercase_struct.out │ │ │ │ ├── record_name_lowercase_union.out │ │ │ │ ├── search_by_name_kind.out │ │ │ │ ├── search_by_name_kind.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild.out │ │ │ │ ├── search_by_name_kind_anymatch_wild.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.out │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.perf │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.out │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.perf │ │ │ │ ├── search_by_name_kind_class.out │ │ │ │ ├── search_by_name_kind_class.perf │ │ │ │ ├── search_by_name_kind_class_namespace.out │ │ │ │ ├── search_by_name_kind_class_namespace.perf │ │ │ │ ├── search_by_name_kind_enum.out │ │ │ │ ├── search_by_name_kind_enum.perf │ │ │ │ ├── search_by_name_kind_enumerator.out │ │ │ │ ├── search_by_name_kind_enumerator.perf │ │ │ │ ├── search_by_name_kind_function.out │ │ │ │ ├── search_by_name_kind_function.perf │ │ │ │ ├── search_by_name_kind_function_prefix.out │ │ │ │ ├── search_by_name_kind_function_prefix.perf │ │ │ │ ├── search_by_name_kind_namespace.out │ │ │ │ ├── search_by_name_kind_namespace.perf │ │ │ │ ├── search_by_name_kind_no_match.out │ │ │ │ ├── search_by_name_kind_no_match.perf │ │ │ │ ├── search_by_name_kind_no_match_enumerator.out │ │ │ │ ├── search_by_name_kind_no_match_enumerator.perf │ │ │ │ ├── search_by_name_kind_no_match_filtered.out │ │ │ │ ├── search_by_name_kind_no_match_filtered.perf │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_function.out │ │ │ │ ├── search_by_name_kind_nomatch_function.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.out │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.perf │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.out │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.perf │ │ │ │ ├── search_by_name_kind_nomatch_using.out │ │ │ │ ├── search_by_name_kind_nomatch_using.perf │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.out │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.perf │ │ │ │ ├── search_by_name_kind_nomatch_variable.out │ │ │ │ ├── search_by_name_kind_nomatch_variable.perf │ │ │ │ ├── search_by_name_kind_nothing_anymatch.out │ │ │ │ ├── search_by_name_kind_nothing_anymatch.perf │ │ │ │ ├── search_by_name_kind_objc_interface.out │ │ │ │ ├── search_by_name_kind_objc_interface.perf │ │ │ │ ├── search_by_name_kind_struct.out │ │ │ │ ├── search_by_name_kind_struct.perf │ │ │ │ ├── search_by_name_kind_struct_union_enum.out │ │ │ │ ├── search_by_name_kind_struct_union_enum.perf │ │ │ │ ├── search_by_name_kind_type.out │ │ │ │ ├── search_by_name_kind_type.perf │ │ │ │ ├── search_by_name_kind_union.out │ │ │ │ ├── search_by_name_kind_union.perf │ │ │ │ ├── search_by_name_kind_using.out │ │ │ │ ├── search_by_name_kind_using.perf │ │ │ │ ├── search_by_name_kind_variable.out │ │ │ │ ├── search_by_name_kind_variable.perf │ │ │ │ ├── search_by_scope.out │ │ │ │ ├── search_by_scope.perf │ │ │ │ ├── search_by_scope_record.out │ │ │ │ ├── search_by_scope_record.perf │ │ │ │ ├── search_by_scope_record_ignorecase.out │ │ │ │ ├── search_by_scope_record_ignorecase.perf │ │ │ │ ├── search_insensitive_exact_exactkind.out │ │ │ │ ├── search_insensitive_exact_exactkind.perf │ │ │ │ ├── search_insensitive_exact_nokind.out │ │ │ │ ├── search_insensitive_exact_nokind.perf │ │ │ │ ├── search_insensitive_prefix_exactkind.out │ │ │ │ ├── search_insensitive_prefix_exactkind.perf │ │ │ │ ├── search_insensitive_prefix_exactkindplus.out │ │ │ │ ├── search_insensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_insensitive_prefix_nokind.out │ │ │ │ ├── search_insensitive_prefix_nokind.perf │ │ │ │ ├── search_kind_class.out │ │ │ │ ├── search_kind_class.perf │ │ │ │ ├── search_kind_class_neg.out │ │ │ │ ├── search_kind_class_neg.perf │ │ │ │ ├── search_kind_enum.out │ │ │ │ ├── search_kind_enum.perf │ │ │ │ ├── search_kind_enum_neg.out │ │ │ │ ├── search_kind_enum_neg.perf │ │ │ │ ├── search_kind_namespace.out │ │ │ │ ├── search_kind_namespace.perf │ │ │ │ ├── search_kind_namespace_neg.out │ │ │ │ ├── search_kind_namespace_neg.perf │ │ │ │ ├── search_kind_struct.out │ │ │ │ ├── search_kind_struct.perf │ │ │ │ ├── search_kind_struct_neg.out │ │ │ │ ├── search_kind_struct_neg.perf │ │ │ │ ├── search_kind_union.out │ │ │ │ ├── search_kind_union.perf │ │ │ │ ├── search_kind_union_neg.out │ │ │ │ ├── search_kind_union_neg.perf │ │ │ │ ├── search_related_contains_child.out │ │ │ │ ├── search_related_contains_child.perf │ │ │ │ ├── search_related_contains_child_namespace.out │ │ │ │ ├── search_related_contains_child_namespace.perf │ │ │ │ ├── search_sensitive_exact_exactkind.out │ │ │ │ ├── search_sensitive_exact_exactkind.perf │ │ │ │ ├── search_sensitive_exact_exactkindplus.out │ │ │ │ ├── search_sensitive_exact_exactkindplus.perf │ │ │ │ ├── search_sensitive_exact_language.out │ │ │ │ ├── search_sensitive_exact_language.perf │ │ │ │ ├── search_sensitive_exact_multilanguage.out │ │ │ │ ├── search_sensitive_exact_multilanguage.perf │ │ │ │ ├── search_sensitive_exact_nokind.out │ │ │ │ ├── search_sensitive_exact_nokind.perf │ │ │ │ ├── search_sensitive_exact_notlanguage.out │ │ │ │ ├── search_sensitive_exact_notlanguage.perf │ │ │ │ ├── search_sensitive_prefix_exactkind.out │ │ │ │ ├── search_sensitive_prefix_exactkind.perf │ │ │ │ ├── search_sensitive_prefix_exactkindplus.out │ │ │ │ ├── search_sensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_sensitive_prefix_nokind.out │ │ │ │ ├── search_sensitive_prefix_nokind.perf │ │ │ │ ├── searchbyname.out │ │ │ │ ├── srcfiles.out │ │ │ │ ├── test.cpp │ │ │ │ ├── typealias_lowercase.out │ │ │ │ └── variable_lowercase.out │ │ │ │ ├── using-decl1 │ │ │ │ ├── CxxContainsParentEntity_decl.out │ │ │ │ ├── CxxContainsParentEntity_decl.perf │ │ │ │ ├── CxxContainsParentEntity_defn.out │ │ │ │ ├── CxxContainsParentEntity_defn.perf │ │ │ │ ├── CxxFileEntityIdl.out │ │ │ │ ├── CxxFileEntityIdl.perf │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.out │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.out │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.perf │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ ├── PpEntityTraceXRefLocations.out │ │ │ │ ├── PpEntityTraceXRefLocations.perf │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.out │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.perf │ │ │ │ ├── codemarkup_EntityReferences_decl.out │ │ │ │ ├── codemarkup_EntityReferences_decl.perf │ │ │ │ ├── codemarkup_EntityReferences_defn.out │ │ │ │ ├── codemarkup_EntityReferences_defn.perf │ │ │ │ ├── codemarkup_EntityReferences_enum.out │ │ │ │ ├── codemarkup_EntityReferences_enum.perf │ │ │ │ ├── codemarkup_EntitySource.out │ │ │ │ ├── codemarkup_EntitySource.perf │ │ │ │ ├── codemarkup_searchbyname.out │ │ │ │ ├── cxxFileXRefs.out │ │ │ │ ├── cxxFileXRefs.perf │ │ │ │ ├── cxx_entity_location.out │ │ │ │ ├── cxx_entity_location.perf │ │ │ │ ├── decltodeftodecl.out │ │ │ │ ├── decltodeftodecl.perf │ │ │ │ ├── enum_lowercase.out │ │ │ │ ├── enumerator_lowercase.out │ │ │ │ ├── fileentities.out │ │ │ │ ├── fileentityinfo.out │ │ │ │ ├── fileentityxrefkind.out │ │ │ │ ├── fileentityxrefs.out │ │ │ │ ├── fileentityxrefsgeneric.out │ │ │ │ ├── filexrefmap.out │ │ │ │ ├── function_name_lowercase.out │ │ │ │ ├── ppPPEntityLocation.out │ │ │ │ ├── ppPPEntityLocation.perf │ │ │ │ ├── pp_PpIncludeXRefLocations.out │ │ │ │ ├── record_name_lowercase_class.out │ │ │ │ ├── record_name_lowercase_struct.out │ │ │ │ ├── record_name_lowercase_union.out │ │ │ │ ├── search_by_name_kind.out │ │ │ │ ├── search_by_name_kind.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild.out │ │ │ │ ├── search_by_name_kind_anymatch_wild.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.out │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.perf │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.out │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.perf │ │ │ │ ├── search_by_name_kind_class.out │ │ │ │ ├── search_by_name_kind_class.perf │ │ │ │ ├── search_by_name_kind_class_namespace.out │ │ │ │ ├── search_by_name_kind_class_namespace.perf │ │ │ │ ├── search_by_name_kind_enum.out │ │ │ │ ├── search_by_name_kind_enum.perf │ │ │ │ ├── search_by_name_kind_enumerator.out │ │ │ │ ├── search_by_name_kind_enumerator.perf │ │ │ │ ├── search_by_name_kind_function.out │ │ │ │ ├── search_by_name_kind_function.perf │ │ │ │ ├── search_by_name_kind_function_prefix.out │ │ │ │ ├── search_by_name_kind_function_prefix.perf │ │ │ │ ├── search_by_name_kind_namespace.out │ │ │ │ ├── search_by_name_kind_namespace.perf │ │ │ │ ├── search_by_name_kind_no_match.out │ │ │ │ ├── search_by_name_kind_no_match.perf │ │ │ │ ├── search_by_name_kind_no_match_enumerator.out │ │ │ │ ├── search_by_name_kind_no_match_enumerator.perf │ │ │ │ ├── search_by_name_kind_no_match_filtered.out │ │ │ │ ├── search_by_name_kind_no_match_filtered.perf │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_function.out │ │ │ │ ├── search_by_name_kind_nomatch_function.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.out │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.perf │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.out │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.perf │ │ │ │ ├── search_by_name_kind_nomatch_using.out │ │ │ │ ├── search_by_name_kind_nomatch_using.perf │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.out │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.perf │ │ │ │ ├── search_by_name_kind_nomatch_variable.out │ │ │ │ ├── search_by_name_kind_nomatch_variable.perf │ │ │ │ ├── search_by_name_kind_nothing_anymatch.out │ │ │ │ ├── search_by_name_kind_nothing_anymatch.perf │ │ │ │ ├── search_by_name_kind_objc_interface.out │ │ │ │ ├── search_by_name_kind_objc_interface.perf │ │ │ │ ├── search_by_name_kind_struct.out │ │ │ │ ├── search_by_name_kind_struct.perf │ │ │ │ ├── search_by_name_kind_struct_union_enum.out │ │ │ │ ├── search_by_name_kind_struct_union_enum.perf │ │ │ │ ├── search_by_name_kind_type.out │ │ │ │ ├── search_by_name_kind_type.perf │ │ │ │ ├── search_by_name_kind_union.out │ │ │ │ ├── search_by_name_kind_union.perf │ │ │ │ ├── search_by_name_kind_using.out │ │ │ │ ├── search_by_name_kind_using.perf │ │ │ │ ├── search_by_name_kind_variable.out │ │ │ │ ├── search_by_name_kind_variable.perf │ │ │ │ ├── search_by_scope.out │ │ │ │ ├── search_by_scope.perf │ │ │ │ ├── search_by_scope_record.out │ │ │ │ ├── search_by_scope_record.perf │ │ │ │ ├── search_by_scope_record_ignorecase.out │ │ │ │ ├── search_by_scope_record_ignorecase.perf │ │ │ │ ├── search_insensitive_exact_exactkind.out │ │ │ │ ├── search_insensitive_exact_exactkind.perf │ │ │ │ ├── search_insensitive_exact_nokind.out │ │ │ │ ├── search_insensitive_exact_nokind.perf │ │ │ │ ├── search_insensitive_prefix_exactkind.out │ │ │ │ ├── search_insensitive_prefix_exactkind.perf │ │ │ │ ├── search_insensitive_prefix_exactkindplus.out │ │ │ │ ├── search_insensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_insensitive_prefix_nokind.out │ │ │ │ ├── search_insensitive_prefix_nokind.perf │ │ │ │ ├── search_kind_class.out │ │ │ │ ├── search_kind_class.perf │ │ │ │ ├── search_kind_class_neg.out │ │ │ │ ├── search_kind_class_neg.perf │ │ │ │ ├── search_kind_enum.out │ │ │ │ ├── search_kind_enum.perf │ │ │ │ ├── search_kind_enum_neg.out │ │ │ │ ├── search_kind_enum_neg.perf │ │ │ │ ├── search_kind_namespace.out │ │ │ │ ├── search_kind_namespace.perf │ │ │ │ ├── search_kind_namespace_neg.out │ │ │ │ ├── search_kind_namespace_neg.perf │ │ │ │ ├── search_kind_struct.out │ │ │ │ ├── search_kind_struct.perf │ │ │ │ ├── search_kind_struct_neg.out │ │ │ │ ├── search_kind_struct_neg.perf │ │ │ │ ├── search_kind_union.out │ │ │ │ ├── search_kind_union.perf │ │ │ │ ├── search_kind_union_neg.out │ │ │ │ ├── search_kind_union_neg.perf │ │ │ │ ├── search_related_contains_child.out │ │ │ │ ├── search_related_contains_child.perf │ │ │ │ ├── search_related_contains_child_namespace.out │ │ │ │ ├── search_related_contains_child_namespace.perf │ │ │ │ ├── search_sensitive_exact_exactkind.out │ │ │ │ ├── search_sensitive_exact_exactkind.perf │ │ │ │ ├── search_sensitive_exact_exactkindplus.out │ │ │ │ ├── search_sensitive_exact_exactkindplus.perf │ │ │ │ ├── search_sensitive_exact_language.out │ │ │ │ ├── search_sensitive_exact_language.perf │ │ │ │ ├── search_sensitive_exact_multilanguage.out │ │ │ │ ├── search_sensitive_exact_multilanguage.perf │ │ │ │ ├── search_sensitive_exact_nokind.out │ │ │ │ ├── search_sensitive_exact_nokind.perf │ │ │ │ ├── search_sensitive_exact_notlanguage.out │ │ │ │ ├── search_sensitive_exact_notlanguage.perf │ │ │ │ ├── search_sensitive_prefix_exactkind.out │ │ │ │ ├── search_sensitive_prefix_exactkind.perf │ │ │ │ ├── search_sensitive_prefix_exactkindplus.out │ │ │ │ ├── search_sensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_sensitive_prefix_nokind.out │ │ │ │ ├── search_sensitive_prefix_nokind.perf │ │ │ │ ├── searchbyname.out │ │ │ │ ├── srcfiles.out │ │ │ │ ├── test.cpp │ │ │ │ ├── typealias_lowercase.out │ │ │ │ └── variable_lowercase.out │ │ │ │ ├── using-decl2 │ │ │ │ ├── CxxContainsParentEntity_decl.out │ │ │ │ ├── CxxContainsParentEntity_decl.perf │ │ │ │ ├── CxxContainsParentEntity_defn.out │ │ │ │ ├── CxxContainsParentEntity_defn.perf │ │ │ │ ├── CxxFileEntityIdl.out │ │ │ │ ├── CxxFileEntityIdl.perf │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.out │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.out │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.perf │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ ├── PpEntityTraceXRefLocations.out │ │ │ │ ├── PpEntityTraceXRefLocations.perf │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.out │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.perf │ │ │ │ ├── codemarkup_EntityReferences_decl.out │ │ │ │ ├── codemarkup_EntityReferences_decl.perf │ │ │ │ ├── codemarkup_EntityReferences_defn.out │ │ │ │ ├── codemarkup_EntityReferences_defn.perf │ │ │ │ ├── codemarkup_EntityReferences_enum.out │ │ │ │ ├── codemarkup_EntityReferences_enum.perf │ │ │ │ ├── codemarkup_EntitySource.out │ │ │ │ ├── codemarkup_EntitySource.perf │ │ │ │ ├── codemarkup_searchbyname.out │ │ │ │ ├── cxxFileXRefs.out │ │ │ │ ├── cxxFileXRefs.perf │ │ │ │ ├── cxx_entity_location.out │ │ │ │ ├── cxx_entity_location.perf │ │ │ │ ├── decltodeftodecl.out │ │ │ │ ├── decltodeftodecl.perf │ │ │ │ ├── enum_lowercase.out │ │ │ │ ├── enumerator_lowercase.out │ │ │ │ ├── fileentities.out │ │ │ │ ├── fileentityinfo.out │ │ │ │ ├── fileentityxrefkind.out │ │ │ │ ├── fileentityxrefs.out │ │ │ │ ├── fileentityxrefsgeneric.out │ │ │ │ ├── filexrefmap.out │ │ │ │ ├── function_name_lowercase.out │ │ │ │ ├── ppPPEntityLocation.out │ │ │ │ ├── ppPPEntityLocation.perf │ │ │ │ ├── pp_PpIncludeXRefLocations.out │ │ │ │ ├── record_name_lowercase_class.out │ │ │ │ ├── record_name_lowercase_struct.out │ │ │ │ ├── record_name_lowercase_union.out │ │ │ │ ├── search_by_name_kind.out │ │ │ │ ├── search_by_name_kind.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild.out │ │ │ │ ├── search_by_name_kind_anymatch_wild.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.out │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.perf │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.out │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.perf │ │ │ │ ├── search_by_name_kind_class.out │ │ │ │ ├── search_by_name_kind_class.perf │ │ │ │ ├── search_by_name_kind_class_namespace.out │ │ │ │ ├── search_by_name_kind_class_namespace.perf │ │ │ │ ├── search_by_name_kind_enum.out │ │ │ │ ├── search_by_name_kind_enum.perf │ │ │ │ ├── search_by_name_kind_enumerator.out │ │ │ │ ├── search_by_name_kind_enumerator.perf │ │ │ │ ├── search_by_name_kind_function.out │ │ │ │ ├── search_by_name_kind_function.perf │ │ │ │ ├── search_by_name_kind_function_prefix.out │ │ │ │ ├── search_by_name_kind_function_prefix.perf │ │ │ │ ├── search_by_name_kind_namespace.out │ │ │ │ ├── search_by_name_kind_namespace.perf │ │ │ │ ├── search_by_name_kind_no_match.out │ │ │ │ ├── search_by_name_kind_no_match.perf │ │ │ │ ├── search_by_name_kind_no_match_enumerator.out │ │ │ │ ├── search_by_name_kind_no_match_enumerator.perf │ │ │ │ ├── search_by_name_kind_no_match_filtered.out │ │ │ │ ├── search_by_name_kind_no_match_filtered.perf │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_function.out │ │ │ │ ├── search_by_name_kind_nomatch_function.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.out │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.perf │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.out │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.perf │ │ │ │ ├── search_by_name_kind_nomatch_using.out │ │ │ │ ├── search_by_name_kind_nomatch_using.perf │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.out │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.perf │ │ │ │ ├── search_by_name_kind_nomatch_variable.out │ │ │ │ ├── search_by_name_kind_nomatch_variable.perf │ │ │ │ ├── search_by_name_kind_nothing_anymatch.out │ │ │ │ ├── search_by_name_kind_nothing_anymatch.perf │ │ │ │ ├── search_by_name_kind_objc_interface.out │ │ │ │ ├── search_by_name_kind_objc_interface.perf │ │ │ │ ├── search_by_name_kind_struct.out │ │ │ │ ├── search_by_name_kind_struct.perf │ │ │ │ ├── search_by_name_kind_struct_union_enum.out │ │ │ │ ├── search_by_name_kind_struct_union_enum.perf │ │ │ │ ├── search_by_name_kind_type.out │ │ │ │ ├── search_by_name_kind_type.perf │ │ │ │ ├── search_by_name_kind_union.out │ │ │ │ ├── search_by_name_kind_union.perf │ │ │ │ ├── search_by_name_kind_using.out │ │ │ │ ├── search_by_name_kind_using.perf │ │ │ │ ├── search_by_name_kind_variable.out │ │ │ │ ├── search_by_name_kind_variable.perf │ │ │ │ ├── search_by_scope.out │ │ │ │ ├── search_by_scope.perf │ │ │ │ ├── search_by_scope_record.out │ │ │ │ ├── search_by_scope_record.perf │ │ │ │ ├── search_by_scope_record_ignorecase.out │ │ │ │ ├── search_by_scope_record_ignorecase.perf │ │ │ │ ├── search_insensitive_exact_exactkind.out │ │ │ │ ├── search_insensitive_exact_exactkind.perf │ │ │ │ ├── search_insensitive_exact_nokind.out │ │ │ │ ├── search_insensitive_exact_nokind.perf │ │ │ │ ├── search_insensitive_prefix_exactkind.out │ │ │ │ ├── search_insensitive_prefix_exactkind.perf │ │ │ │ ├── search_insensitive_prefix_exactkindplus.out │ │ │ │ ├── search_insensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_insensitive_prefix_nokind.out │ │ │ │ ├── search_insensitive_prefix_nokind.perf │ │ │ │ ├── search_kind_class.out │ │ │ │ ├── search_kind_class.perf │ │ │ │ ├── search_kind_class_neg.out │ │ │ │ ├── search_kind_class_neg.perf │ │ │ │ ├── search_kind_enum.out │ │ │ │ ├── search_kind_enum.perf │ │ │ │ ├── search_kind_enum_neg.out │ │ │ │ ├── search_kind_enum_neg.perf │ │ │ │ ├── search_kind_namespace.out │ │ │ │ ├── search_kind_namespace.perf │ │ │ │ ├── search_kind_namespace_neg.out │ │ │ │ ├── search_kind_namespace_neg.perf │ │ │ │ ├── search_kind_struct.out │ │ │ │ ├── search_kind_struct.perf │ │ │ │ ├── search_kind_struct_neg.out │ │ │ │ ├── search_kind_struct_neg.perf │ │ │ │ ├── search_kind_union.out │ │ │ │ ├── search_kind_union.perf │ │ │ │ ├── search_kind_union_neg.out │ │ │ │ ├── search_kind_union_neg.perf │ │ │ │ ├── search_related_contains_child.out │ │ │ │ ├── search_related_contains_child.perf │ │ │ │ ├── search_related_contains_child_namespace.out │ │ │ │ ├── search_related_contains_child_namespace.perf │ │ │ │ ├── search_sensitive_exact_exactkind.out │ │ │ │ ├── search_sensitive_exact_exactkind.perf │ │ │ │ ├── search_sensitive_exact_exactkindplus.out │ │ │ │ ├── search_sensitive_exact_exactkindplus.perf │ │ │ │ ├── search_sensitive_exact_language.out │ │ │ │ ├── search_sensitive_exact_language.perf │ │ │ │ ├── search_sensitive_exact_multilanguage.out │ │ │ │ ├── search_sensitive_exact_multilanguage.perf │ │ │ │ ├── search_sensitive_exact_nokind.out │ │ │ │ ├── search_sensitive_exact_nokind.perf │ │ │ │ ├── search_sensitive_exact_notlanguage.out │ │ │ │ ├── search_sensitive_exact_notlanguage.perf │ │ │ │ ├── search_sensitive_prefix_exactkind.out │ │ │ │ ├── search_sensitive_prefix_exactkind.perf │ │ │ │ ├── search_sensitive_prefix_exactkindplus.out │ │ │ │ ├── search_sensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_sensitive_prefix_nokind.out │ │ │ │ ├── search_sensitive_prefix_nokind.perf │ │ │ │ ├── searchbyname.out │ │ │ │ ├── srcfiles.out │ │ │ │ ├── test.cpp │ │ │ │ ├── typealias_lowercase.out │ │ │ │ └── variable_lowercase.out │ │ │ │ ├── using-decl3 │ │ │ │ ├── CxxContainsParentEntity_decl.out │ │ │ │ ├── CxxContainsParentEntity_decl.perf │ │ │ │ ├── CxxContainsParentEntity_defn.out │ │ │ │ ├── CxxContainsParentEntity_defn.perf │ │ │ │ ├── CxxFileEntityIdl.out │ │ │ │ ├── CxxFileEntityIdl.perf │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.out │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.out │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.perf │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ ├── CxxPpResolveTraceLocations.platform010-clang-17.out │ │ │ │ ├── PpEntityTraceXRefLocations.out │ │ │ │ ├── PpEntityTraceXRefLocations.perf │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.out │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.perf │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.platform010-clang-17.out │ │ │ │ ├── codemarkup_EntityReferences_decl.out │ │ │ │ ├── codemarkup_EntityReferences_decl.perf │ │ │ │ ├── codemarkup_EntityReferences_defn.out │ │ │ │ ├── codemarkup_EntityReferences_defn.perf │ │ │ │ ├── codemarkup_EntityReferences_enum.out │ │ │ │ ├── codemarkup_EntityReferences_enum.perf │ │ │ │ ├── codemarkup_EntitySource.out │ │ │ │ ├── codemarkup_EntitySource.perf │ │ │ │ ├── codemarkup_searchbyname.out │ │ │ │ ├── codemarkup_searchbyname.platform010-clang-17.out │ │ │ │ ├── cxxFileXRefs.out │ │ │ │ ├── cxxFileXRefs.perf │ │ │ │ ├── cxx_entity_location.out │ │ │ │ ├── cxx_entity_location.perf │ │ │ │ ├── cxx_entity_location.platform010-clang-17.out │ │ │ │ ├── decltodeftodecl.out │ │ │ │ ├── decltodeftodecl.perf │ │ │ │ ├── decltodeftodecl.platform010-clang-17.out │ │ │ │ ├── enum_lowercase.out │ │ │ │ ├── enumerator_lowercase.out │ │ │ │ ├── fileentities.out │ │ │ │ ├── fileentities.platform010-clang-17.out │ │ │ │ ├── fileentityinfo.out │ │ │ │ ├── fileentityinfo.platform010-clang-17.out │ │ │ │ ├── fileentityxrefkind.out │ │ │ │ ├── fileentityxrefs.out │ │ │ │ ├── fileentityxrefsgeneric.out │ │ │ │ ├── filexrefmap.out │ │ │ │ ├── function_name_lowercase.out │ │ │ │ ├── ppPPEntityLocation.out │ │ │ │ ├── ppPPEntityLocation.perf │ │ │ │ ├── pp_PpIncludeXRefLocations.out │ │ │ │ ├── record_name_lowercase_class.out │ │ │ │ ├── record_name_lowercase_struct.out │ │ │ │ ├── record_name_lowercase_union.out │ │ │ │ ├── search_by_name_kind.out │ │ │ │ ├── search_by_name_kind.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild.out │ │ │ │ ├── search_by_name_kind_anymatch_wild.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild.platform010-clang-17.out │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.out │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.platform010-clang-17.out │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.out │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.perf │ │ │ │ ├── search_by_name_kind_class.out │ │ │ │ ├── search_by_name_kind_class.perf │ │ │ │ ├── search_by_name_kind_class_namespace.out │ │ │ │ ├── search_by_name_kind_class_namespace.perf │ │ │ │ ├── search_by_name_kind_enum.out │ │ │ │ ├── search_by_name_kind_enum.perf │ │ │ │ ├── search_by_name_kind_enumerator.out │ │ │ │ ├── search_by_name_kind_enumerator.perf │ │ │ │ ├── search_by_name_kind_function.out │ │ │ │ ├── search_by_name_kind_function.perf │ │ │ │ ├── search_by_name_kind_function_prefix.out │ │ │ │ ├── search_by_name_kind_function_prefix.perf │ │ │ │ ├── search_by_name_kind_namespace.out │ │ │ │ ├── search_by_name_kind_namespace.perf │ │ │ │ ├── search_by_name_kind_no_match.out │ │ │ │ ├── search_by_name_kind_no_match.perf │ │ │ │ ├── search_by_name_kind_no_match_enumerator.out │ │ │ │ ├── search_by_name_kind_no_match_enumerator.perf │ │ │ │ ├── search_by_name_kind_no_match_filtered.out │ │ │ │ ├── search_by_name_kind_no_match_filtered.perf │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_function.out │ │ │ │ ├── search_by_name_kind_nomatch_function.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.out │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.perf │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.out │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.perf │ │ │ │ ├── search_by_name_kind_nomatch_using.out │ │ │ │ ├── search_by_name_kind_nomatch_using.perf │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.out │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.perf │ │ │ │ ├── search_by_name_kind_nomatch_variable.out │ │ │ │ ├── search_by_name_kind_nomatch_variable.perf │ │ │ │ ├── search_by_name_kind_nothing_anymatch.out │ │ │ │ ├── search_by_name_kind_nothing_anymatch.perf │ │ │ │ ├── search_by_name_kind_objc_interface.out │ │ │ │ ├── search_by_name_kind_objc_interface.perf │ │ │ │ ├── search_by_name_kind_struct.out │ │ │ │ ├── search_by_name_kind_struct.perf │ │ │ │ ├── search_by_name_kind_struct_union_enum.out │ │ │ │ ├── search_by_name_kind_struct_union_enum.perf │ │ │ │ ├── search_by_name_kind_type.out │ │ │ │ ├── search_by_name_kind_type.perf │ │ │ │ ├── search_by_name_kind_union.out │ │ │ │ ├── search_by_name_kind_union.perf │ │ │ │ ├── search_by_name_kind_using.out │ │ │ │ ├── search_by_name_kind_using.perf │ │ │ │ ├── search_by_name_kind_variable.out │ │ │ │ ├── search_by_name_kind_variable.perf │ │ │ │ ├── search_by_scope.out │ │ │ │ ├── search_by_scope.perf │ │ │ │ ├── search_by_scope_record.out │ │ │ │ ├── search_by_scope_record.perf │ │ │ │ ├── search_by_scope_record_ignorecase.out │ │ │ │ ├── search_by_scope_record_ignorecase.perf │ │ │ │ ├── search_insensitive_exact_exactkind.out │ │ │ │ ├── search_insensitive_exact_exactkind.perf │ │ │ │ ├── search_insensitive_exact_nokind.out │ │ │ │ ├── search_insensitive_exact_nokind.perf │ │ │ │ ├── search_insensitive_prefix_exactkind.out │ │ │ │ ├── search_insensitive_prefix_exactkind.perf │ │ │ │ ├── search_insensitive_prefix_exactkindplus.out │ │ │ │ ├── search_insensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_insensitive_prefix_nokind.out │ │ │ │ ├── search_insensitive_prefix_nokind.perf │ │ │ │ ├── search_kind_class.out │ │ │ │ ├── search_kind_class.perf │ │ │ │ ├── search_kind_class_neg.out │ │ │ │ ├── search_kind_class_neg.perf │ │ │ │ ├── search_kind_enum.out │ │ │ │ ├── search_kind_enum.perf │ │ │ │ ├── search_kind_enum_neg.out │ │ │ │ ├── search_kind_enum_neg.perf │ │ │ │ ├── search_kind_namespace.out │ │ │ │ ├── search_kind_namespace.perf │ │ │ │ ├── search_kind_namespace_neg.out │ │ │ │ ├── search_kind_namespace_neg.perf │ │ │ │ ├── search_kind_struct.out │ │ │ │ ├── search_kind_struct.perf │ │ │ │ ├── search_kind_struct_neg.out │ │ │ │ ├── search_kind_struct_neg.perf │ │ │ │ ├── search_kind_union.out │ │ │ │ ├── search_kind_union.perf │ │ │ │ ├── search_kind_union_neg.out │ │ │ │ ├── search_kind_union_neg.perf │ │ │ │ ├── search_related_contains_child.out │ │ │ │ ├── search_related_contains_child.perf │ │ │ │ ├── search_related_contains_child_namespace.out │ │ │ │ ├── search_related_contains_child_namespace.perf │ │ │ │ ├── search_related_contains_child_namespace.platform010-clang-17.out │ │ │ │ ├── search_sensitive_exact_exactkind.out │ │ │ │ ├── search_sensitive_exact_exactkind.perf │ │ │ │ ├── search_sensitive_exact_exactkindplus.out │ │ │ │ ├── search_sensitive_exact_exactkindplus.perf │ │ │ │ ├── search_sensitive_exact_language.out │ │ │ │ ├── search_sensitive_exact_language.perf │ │ │ │ ├── search_sensitive_exact_multilanguage.out │ │ │ │ ├── search_sensitive_exact_multilanguage.perf │ │ │ │ ├── search_sensitive_exact_nokind.out │ │ │ │ ├── search_sensitive_exact_nokind.perf │ │ │ │ ├── search_sensitive_exact_notlanguage.out │ │ │ │ ├── search_sensitive_exact_notlanguage.perf │ │ │ │ ├── search_sensitive_prefix_exactkind.out │ │ │ │ ├── search_sensitive_prefix_exactkind.perf │ │ │ │ ├── search_sensitive_prefix_exactkindplus.out │ │ │ │ ├── search_sensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_sensitive_prefix_nokind.out │ │ │ │ ├── search_sensitive_prefix_nokind.perf │ │ │ │ ├── searchbyname.out │ │ │ │ ├── searchbyname.platform010-clang-17.out │ │ │ │ ├── srcfiles.out │ │ │ │ ├── test.cpp │ │ │ │ ├── typealias_lowercase.out │ │ │ │ └── variable_lowercase.out │ │ │ │ ├── using-decl4 │ │ │ │ ├── CxxContainsParentEntity_decl.out │ │ │ │ ├── CxxContainsParentEntity_decl.perf │ │ │ │ ├── CxxContainsParentEntity_defn.out │ │ │ │ ├── CxxContainsParentEntity_defn.perf │ │ │ │ ├── CxxFileEntityIdl.out │ │ │ │ ├── CxxFileEntityIdl.perf │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.out │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.out │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.platform010-clang-17.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.perf │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ ├── CxxPpResolveTraceLocations.platform010-clang-17.out │ │ │ │ ├── PpEntityTraceXRefLocations.out │ │ │ │ ├── PpEntityTraceXRefLocations.perf │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.out │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.perf │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.platform010-clang-17.out │ │ │ │ ├── codemarkup_EntityReferences_decl.out │ │ │ │ ├── codemarkup_EntityReferences_decl.perf │ │ │ │ ├── codemarkup_EntityReferences_defn.out │ │ │ │ ├── codemarkup_EntityReferences_defn.perf │ │ │ │ ├── codemarkup_EntityReferences_defn.platform010-clang-17.out │ │ │ │ ├── codemarkup_EntityReferences_enum.out │ │ │ │ ├── codemarkup_EntityReferences_enum.perf │ │ │ │ ├── codemarkup_EntitySource.out │ │ │ │ ├── codemarkup_EntitySource.perf │ │ │ │ ├── codemarkup_EntitySource.platform010-clang-17.out │ │ │ │ ├── codemarkup_searchbyname.out │ │ │ │ ├── codemarkup_searchbyname.platform010-clang-17.out │ │ │ │ ├── cxxFileXRefs.out │ │ │ │ ├── cxxFileXRefs.perf │ │ │ │ ├── cxx_entity_location.out │ │ │ │ ├── cxx_entity_location.perf │ │ │ │ ├── cxx_entity_location.platform010-clang-17.out │ │ │ │ ├── decltodeftodecl.out │ │ │ │ ├── decltodeftodecl.perf │ │ │ │ ├── decltodeftodecl.platform010-clang-17.out │ │ │ │ ├── enum_lowercase.out │ │ │ │ ├── enumerator_lowercase.out │ │ │ │ ├── fileentities.out │ │ │ │ ├── fileentities.platform010-clang-17.out │ │ │ │ ├── fileentityinfo.out │ │ │ │ ├── fileentityinfo.platform010-clang-17.out │ │ │ │ ├── fileentityxrefkind.out │ │ │ │ ├── fileentityxrefkind.platform010-clang-17.out │ │ │ │ ├── fileentityxrefs.out │ │ │ │ ├── fileentityxrefs.platform010-clang-17.out │ │ │ │ ├── fileentityxrefsgeneric.out │ │ │ │ ├── fileentityxrefsgeneric.platform010-clang-17.out │ │ │ │ ├── filexrefmap.out │ │ │ │ ├── function_name_lowercase.out │ │ │ │ ├── ppPPEntityLocation.out │ │ │ │ ├── ppPPEntityLocation.perf │ │ │ │ ├── pp_PpIncludeXRefLocations.out │ │ │ │ ├── record_name_lowercase_class.out │ │ │ │ ├── record_name_lowercase_struct.out │ │ │ │ ├── record_name_lowercase_union.out │ │ │ │ ├── search_by_name_kind.out │ │ │ │ ├── search_by_name_kind.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild.out │ │ │ │ ├── search_by_name_kind_anymatch_wild.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild.platform010-clang-17.out │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.out │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.platform010-clang-17.out │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.out │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.perf │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.platform010-clang-17.out │ │ │ │ ├── search_by_name_kind_class.out │ │ │ │ ├── search_by_name_kind_class.perf │ │ │ │ ├── search_by_name_kind_class_namespace.out │ │ │ │ ├── search_by_name_kind_class_namespace.perf │ │ │ │ ├── search_by_name_kind_enum.out │ │ │ │ ├── search_by_name_kind_enum.perf │ │ │ │ ├── search_by_name_kind_enumerator.out │ │ │ │ ├── search_by_name_kind_enumerator.perf │ │ │ │ ├── search_by_name_kind_function.out │ │ │ │ ├── search_by_name_kind_function.perf │ │ │ │ ├── search_by_name_kind_function_prefix.out │ │ │ │ ├── search_by_name_kind_function_prefix.perf │ │ │ │ ├── search_by_name_kind_namespace.out │ │ │ │ ├── search_by_name_kind_namespace.perf │ │ │ │ ├── search_by_name_kind_no_match.out │ │ │ │ ├── search_by_name_kind_no_match.perf │ │ │ │ ├── search_by_name_kind_no_match_enumerator.out │ │ │ │ ├── search_by_name_kind_no_match_enumerator.perf │ │ │ │ ├── search_by_name_kind_no_match_filtered.out │ │ │ │ ├── search_by_name_kind_no_match_filtered.perf │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_function.out │ │ │ │ ├── search_by_name_kind_nomatch_function.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.out │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.perf │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.out │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.perf │ │ │ │ ├── search_by_name_kind_nomatch_using.out │ │ │ │ ├── search_by_name_kind_nomatch_using.perf │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.out │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.perf │ │ │ │ ├── search_by_name_kind_nomatch_variable.out │ │ │ │ ├── search_by_name_kind_nomatch_variable.perf │ │ │ │ ├── search_by_name_kind_nothing_anymatch.out │ │ │ │ ├── search_by_name_kind_nothing_anymatch.perf │ │ │ │ ├── search_by_name_kind_objc_interface.out │ │ │ │ ├── search_by_name_kind_objc_interface.perf │ │ │ │ ├── search_by_name_kind_struct.out │ │ │ │ ├── search_by_name_kind_struct.perf │ │ │ │ ├── search_by_name_kind_struct_union_enum.out │ │ │ │ ├── search_by_name_kind_struct_union_enum.perf │ │ │ │ ├── search_by_name_kind_type.out │ │ │ │ ├── search_by_name_kind_type.perf │ │ │ │ ├── search_by_name_kind_union.out │ │ │ │ ├── search_by_name_kind_union.perf │ │ │ │ ├── search_by_name_kind_using.out │ │ │ │ ├── search_by_name_kind_using.perf │ │ │ │ ├── search_by_name_kind_variable.out │ │ │ │ ├── search_by_name_kind_variable.perf │ │ │ │ ├── search_by_scope.out │ │ │ │ ├── search_by_scope.perf │ │ │ │ ├── search_by_scope_record.out │ │ │ │ ├── search_by_scope_record.perf │ │ │ │ ├── search_by_scope_record_ignorecase.out │ │ │ │ ├── search_by_scope_record_ignorecase.perf │ │ │ │ ├── search_insensitive_exact_exactkind.out │ │ │ │ ├── search_insensitive_exact_exactkind.perf │ │ │ │ ├── search_insensitive_exact_nokind.out │ │ │ │ ├── search_insensitive_exact_nokind.perf │ │ │ │ ├── search_insensitive_prefix_exactkind.out │ │ │ │ ├── search_insensitive_prefix_exactkind.perf │ │ │ │ ├── search_insensitive_prefix_exactkindplus.out │ │ │ │ ├── search_insensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_insensitive_prefix_nokind.out │ │ │ │ ├── search_insensitive_prefix_nokind.perf │ │ │ │ ├── search_kind_class.out │ │ │ │ ├── search_kind_class.perf │ │ │ │ ├── search_kind_class_neg.out │ │ │ │ ├── search_kind_class_neg.perf │ │ │ │ ├── search_kind_enum.out │ │ │ │ ├── search_kind_enum.perf │ │ │ │ ├── search_kind_enum_neg.out │ │ │ │ ├── search_kind_enum_neg.perf │ │ │ │ ├── search_kind_namespace.out │ │ │ │ ├── search_kind_namespace.perf │ │ │ │ ├── search_kind_namespace_neg.out │ │ │ │ ├── search_kind_namespace_neg.perf │ │ │ │ ├── search_kind_struct.out │ │ │ │ ├── search_kind_struct.perf │ │ │ │ ├── search_kind_struct_neg.out │ │ │ │ ├── search_kind_struct_neg.perf │ │ │ │ ├── search_kind_union.out │ │ │ │ ├── search_kind_union.perf │ │ │ │ ├── search_kind_union_neg.out │ │ │ │ ├── search_kind_union_neg.perf │ │ │ │ ├── search_related_contains_child.out │ │ │ │ ├── search_related_contains_child.perf │ │ │ │ ├── search_related_contains_child_namespace.out │ │ │ │ ├── search_related_contains_child_namespace.perf │ │ │ │ ├── search_related_contains_child_namespace.platform010-clang-17.out │ │ │ │ ├── search_sensitive_exact_exactkind.out │ │ │ │ ├── search_sensitive_exact_exactkind.perf │ │ │ │ ├── search_sensitive_exact_exactkindplus.out │ │ │ │ ├── search_sensitive_exact_exactkindplus.perf │ │ │ │ ├── search_sensitive_exact_language.out │ │ │ │ ├── search_sensitive_exact_language.perf │ │ │ │ ├── search_sensitive_exact_multilanguage.out │ │ │ │ ├── search_sensitive_exact_multilanguage.perf │ │ │ │ ├── search_sensitive_exact_nokind.out │ │ │ │ ├── search_sensitive_exact_nokind.perf │ │ │ │ ├── search_sensitive_exact_notlanguage.out │ │ │ │ ├── search_sensitive_exact_notlanguage.perf │ │ │ │ ├── search_sensitive_prefix_exactkind.out │ │ │ │ ├── search_sensitive_prefix_exactkind.perf │ │ │ │ ├── search_sensitive_prefix_exactkindplus.out │ │ │ │ ├── search_sensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_sensitive_prefix_nokind.out │ │ │ │ ├── search_sensitive_prefix_nokind.perf │ │ │ │ ├── searchbyname.out │ │ │ │ ├── searchbyname.platform010-clang-17.out │ │ │ │ ├── srcfiles.out │ │ │ │ ├── test.cpp │ │ │ │ ├── typealias_lowercase.out │ │ │ │ └── variable_lowercase.out │ │ │ │ ├── using-decl5 │ │ │ │ ├── CxxContainsParentEntity_decl.out │ │ │ │ ├── CxxContainsParentEntity_decl.perf │ │ │ │ ├── CxxContainsParentEntity_defn.out │ │ │ │ ├── CxxContainsParentEntity_defn.perf │ │ │ │ ├── CxxFileEntityIdl.out │ │ │ │ ├── CxxFileEntityIdl.perf │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.out │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.out │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.perf │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ ├── PpEntityTraceXRefLocations.out │ │ │ │ ├── PpEntityTraceXRefLocations.perf │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.out │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.perf │ │ │ │ ├── codemarkup_EntityReferences_decl.out │ │ │ │ ├── codemarkup_EntityReferences_decl.perf │ │ │ │ ├── codemarkup_EntityReferences_defn.out │ │ │ │ ├── codemarkup_EntityReferences_defn.perf │ │ │ │ ├── codemarkup_EntityReferences_enum.out │ │ │ │ ├── codemarkup_EntityReferences_enum.perf │ │ │ │ ├── codemarkup_EntitySource.out │ │ │ │ ├── codemarkup_EntitySource.perf │ │ │ │ ├── codemarkup_searchbyname.out │ │ │ │ ├── cxxFileXRefs.out │ │ │ │ ├── cxxFileXRefs.perf │ │ │ │ ├── cxx_entity_location.out │ │ │ │ ├── cxx_entity_location.perf │ │ │ │ ├── decltodeftodecl.out │ │ │ │ ├── decltodeftodecl.perf │ │ │ │ ├── enum_lowercase.out │ │ │ │ ├── enumerator_lowercase.out │ │ │ │ ├── fileentities.out │ │ │ │ ├── fileentityinfo.out │ │ │ │ ├── fileentityxrefkind.out │ │ │ │ ├── fileentityxrefs.out │ │ │ │ ├── fileentityxrefsgeneric.out │ │ │ │ ├── filexrefmap.out │ │ │ │ ├── function_name_lowercase.out │ │ │ │ ├── ppPPEntityLocation.out │ │ │ │ ├── ppPPEntityLocation.perf │ │ │ │ ├── pp_PpIncludeXRefLocations.out │ │ │ │ ├── record_name_lowercase_class.out │ │ │ │ ├── record_name_lowercase_struct.out │ │ │ │ ├── record_name_lowercase_union.out │ │ │ │ ├── search_by_name_kind.out │ │ │ │ ├── search_by_name_kind.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild.out │ │ │ │ ├── search_by_name_kind_anymatch_wild.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.out │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.perf │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.out │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.perf │ │ │ │ ├── search_by_name_kind_class.out │ │ │ │ ├── search_by_name_kind_class.perf │ │ │ │ ├── search_by_name_kind_class_namespace.out │ │ │ │ ├── search_by_name_kind_class_namespace.perf │ │ │ │ ├── search_by_name_kind_enum.out │ │ │ │ ├── search_by_name_kind_enum.perf │ │ │ │ ├── search_by_name_kind_enumerator.out │ │ │ │ ├── search_by_name_kind_enumerator.perf │ │ │ │ ├── search_by_name_kind_function.out │ │ │ │ ├── search_by_name_kind_function.perf │ │ │ │ ├── search_by_name_kind_function_prefix.out │ │ │ │ ├── search_by_name_kind_function_prefix.perf │ │ │ │ ├── search_by_name_kind_namespace.out │ │ │ │ ├── search_by_name_kind_namespace.perf │ │ │ │ ├── search_by_name_kind_no_match.out │ │ │ │ ├── search_by_name_kind_no_match.perf │ │ │ │ ├── search_by_name_kind_no_match_enumerator.out │ │ │ │ ├── search_by_name_kind_no_match_enumerator.perf │ │ │ │ ├── search_by_name_kind_no_match_filtered.out │ │ │ │ ├── search_by_name_kind_no_match_filtered.perf │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_function.out │ │ │ │ ├── search_by_name_kind_nomatch_function.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.out │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.perf │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.out │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.perf │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.platform010-clang-17.perf │ │ │ │ ├── search_by_name_kind_nomatch_using.out │ │ │ │ ├── search_by_name_kind_nomatch_using.perf │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.out │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.perf │ │ │ │ ├── search_by_name_kind_nomatch_variable.out │ │ │ │ ├── search_by_name_kind_nomatch_variable.perf │ │ │ │ ├── search_by_name_kind_nothing_anymatch.out │ │ │ │ ├── search_by_name_kind_nothing_anymatch.perf │ │ │ │ ├── search_by_name_kind_objc_interface.out │ │ │ │ ├── search_by_name_kind_objc_interface.perf │ │ │ │ ├── search_by_name_kind_struct.out │ │ │ │ ├── search_by_name_kind_struct.perf │ │ │ │ ├── search_by_name_kind_struct_union_enum.out │ │ │ │ ├── search_by_name_kind_struct_union_enum.perf │ │ │ │ ├── search_by_name_kind_type.out │ │ │ │ ├── search_by_name_kind_type.perf │ │ │ │ ├── search_by_name_kind_union.out │ │ │ │ ├── search_by_name_kind_union.perf │ │ │ │ ├── search_by_name_kind_using.out │ │ │ │ ├── search_by_name_kind_using.perf │ │ │ │ ├── search_by_name_kind_variable.out │ │ │ │ ├── search_by_name_kind_variable.perf │ │ │ │ ├── search_by_scope.out │ │ │ │ ├── search_by_scope.perf │ │ │ │ ├── search_by_scope_record.out │ │ │ │ ├── search_by_scope_record.perf │ │ │ │ ├── search_by_scope_record_ignorecase.out │ │ │ │ ├── search_by_scope_record_ignorecase.perf │ │ │ │ ├── search_insensitive_exact_exactkind.out │ │ │ │ ├── search_insensitive_exact_exactkind.perf │ │ │ │ ├── search_insensitive_exact_nokind.out │ │ │ │ ├── search_insensitive_exact_nokind.perf │ │ │ │ ├── search_insensitive_prefix_exactkind.out │ │ │ │ ├── search_insensitive_prefix_exactkind.perf │ │ │ │ ├── search_insensitive_prefix_exactkindplus.out │ │ │ │ ├── search_insensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_insensitive_prefix_nokind.out │ │ │ │ ├── search_insensitive_prefix_nokind.perf │ │ │ │ ├── search_kind_class.out │ │ │ │ ├── search_kind_class.perf │ │ │ │ ├── search_kind_class_neg.out │ │ │ │ ├── search_kind_class_neg.perf │ │ │ │ ├── search_kind_enum.out │ │ │ │ ├── search_kind_enum.perf │ │ │ │ ├── search_kind_enum_neg.out │ │ │ │ ├── search_kind_enum_neg.perf │ │ │ │ ├── search_kind_namespace.out │ │ │ │ ├── search_kind_namespace.perf │ │ │ │ ├── search_kind_namespace_neg.out │ │ │ │ ├── search_kind_namespace_neg.perf │ │ │ │ ├── search_kind_struct.out │ │ │ │ ├── search_kind_struct.perf │ │ │ │ ├── search_kind_struct_neg.out │ │ │ │ ├── search_kind_struct_neg.perf │ │ │ │ ├── search_kind_union.out │ │ │ │ ├── search_kind_union.perf │ │ │ │ ├── search_kind_union_neg.out │ │ │ │ ├── search_kind_union_neg.perf │ │ │ │ ├── search_related_contains_child.out │ │ │ │ ├── search_related_contains_child.perf │ │ │ │ ├── search_related_contains_child_namespace.out │ │ │ │ ├── search_related_contains_child_namespace.perf │ │ │ │ ├── search_sensitive_exact_exactkind.out │ │ │ │ ├── search_sensitive_exact_exactkind.perf │ │ │ │ ├── search_sensitive_exact_exactkindplus.out │ │ │ │ ├── search_sensitive_exact_exactkindplus.perf │ │ │ │ ├── search_sensitive_exact_language.out │ │ │ │ ├── search_sensitive_exact_language.perf │ │ │ │ ├── search_sensitive_exact_multilanguage.out │ │ │ │ ├── search_sensitive_exact_multilanguage.perf │ │ │ │ ├── search_sensitive_exact_nokind.out │ │ │ │ ├── search_sensitive_exact_nokind.perf │ │ │ │ ├── search_sensitive_exact_notlanguage.out │ │ │ │ ├── search_sensitive_exact_notlanguage.perf │ │ │ │ ├── search_sensitive_prefix_exactkind.out │ │ │ │ ├── search_sensitive_prefix_exactkind.perf │ │ │ │ ├── search_sensitive_prefix_exactkindplus.out │ │ │ │ ├── search_sensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_sensitive_prefix_nokind.out │ │ │ │ ├── search_sensitive_prefix_nokind.perf │ │ │ │ ├── searchbyname.out │ │ │ │ ├── srcfiles.out │ │ │ │ ├── test.cpp │ │ │ │ ├── typealias_lowercase.out │ │ │ │ └── variable_lowercase.out │ │ │ │ ├── using-decl6 │ │ │ │ ├── CxxContainsParentEntity_decl.out │ │ │ │ ├── CxxContainsParentEntity_decl.perf │ │ │ │ ├── CxxContainsParentEntity_defn.out │ │ │ │ ├── CxxContainsParentEntity_defn.perf │ │ │ │ ├── CxxFileEntityIdl.out │ │ │ │ ├── CxxFileEntityIdl.perf │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.out │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.out │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.perf │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ ├── CxxPpResolveTraceLocations.platform010-clang-17.out │ │ │ │ ├── PpEntityTraceXRefLocations.out │ │ │ │ ├── PpEntityTraceXRefLocations.perf │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.out │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.perf │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.platform010-clang-17.out │ │ │ │ ├── codemarkup_EntityReferences_decl.out │ │ │ │ ├── codemarkup_EntityReferences_decl.perf │ │ │ │ ├── codemarkup_EntityReferences_defn.out │ │ │ │ ├── codemarkup_EntityReferences_defn.perf │ │ │ │ ├── codemarkup_EntityReferences_enum.out │ │ │ │ ├── codemarkup_EntityReferences_enum.perf │ │ │ │ ├── codemarkup_EntitySource.out │ │ │ │ ├── codemarkup_EntitySource.perf │ │ │ │ ├── codemarkup_searchbyname.out │ │ │ │ ├── codemarkup_searchbyname.platform010-clang-17.out │ │ │ │ ├── cxxFileXRefs.out │ │ │ │ ├── cxxFileXRefs.perf │ │ │ │ ├── cxx_entity_location.out │ │ │ │ ├── cxx_entity_location.perf │ │ │ │ ├── cxx_entity_location.platform010-clang-17.out │ │ │ │ ├── decltodeftodecl.out │ │ │ │ ├── decltodeftodecl.perf │ │ │ │ ├── decltodeftodecl.platform010-clang-17.out │ │ │ │ ├── enum_lowercase.out │ │ │ │ ├── enumerator_lowercase.out │ │ │ │ ├── fileentities.out │ │ │ │ ├── fileentities.platform010-clang-17.out │ │ │ │ ├── fileentityinfo.out │ │ │ │ ├── fileentityinfo.platform010-clang-17.out │ │ │ │ ├── fileentityxrefkind.out │ │ │ │ ├── fileentityxrefs.out │ │ │ │ ├── fileentityxrefsgeneric.out │ │ │ │ ├── filexrefmap.out │ │ │ │ ├── function_name_lowercase.out │ │ │ │ ├── ppPPEntityLocation.out │ │ │ │ ├── ppPPEntityLocation.perf │ │ │ │ ├── pp_PpIncludeXRefLocations.out │ │ │ │ ├── record_name_lowercase_class.out │ │ │ │ ├── record_name_lowercase_struct.out │ │ │ │ ├── record_name_lowercase_union.out │ │ │ │ ├── search_by_name_kind.out │ │ │ │ ├── search_by_name_kind.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild.out │ │ │ │ ├── search_by_name_kind_anymatch_wild.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild.platform010-clang-17.out │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.out │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.platform010-clang-17.out │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.out │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.perf │ │ │ │ ├── search_by_name_kind_class.out │ │ │ │ ├── search_by_name_kind_class.perf │ │ │ │ ├── search_by_name_kind_class_namespace.out │ │ │ │ ├── search_by_name_kind_class_namespace.perf │ │ │ │ ├── search_by_name_kind_enum.out │ │ │ │ ├── search_by_name_kind_enum.perf │ │ │ │ ├── search_by_name_kind_enumerator.out │ │ │ │ ├── search_by_name_kind_enumerator.perf │ │ │ │ ├── search_by_name_kind_function.out │ │ │ │ ├── search_by_name_kind_function.perf │ │ │ │ ├── search_by_name_kind_function_prefix.out │ │ │ │ ├── search_by_name_kind_function_prefix.perf │ │ │ │ ├── search_by_name_kind_namespace.out │ │ │ │ ├── search_by_name_kind_namespace.perf │ │ │ │ ├── search_by_name_kind_no_match.out │ │ │ │ ├── search_by_name_kind_no_match.perf │ │ │ │ ├── search_by_name_kind_no_match_enumerator.out │ │ │ │ ├── search_by_name_kind_no_match_enumerator.perf │ │ │ │ ├── search_by_name_kind_no_match_filtered.out │ │ │ │ ├── search_by_name_kind_no_match_filtered.perf │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_function.out │ │ │ │ ├── search_by_name_kind_nomatch_function.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.out │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.perf │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.out │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.perf │ │ │ │ ├── search_by_name_kind_nomatch_using.out │ │ │ │ ├── search_by_name_kind_nomatch_using.perf │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.out │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.perf │ │ │ │ ├── search_by_name_kind_nomatch_variable.out │ │ │ │ ├── search_by_name_kind_nomatch_variable.perf │ │ │ │ ├── search_by_name_kind_nothing_anymatch.out │ │ │ │ ├── search_by_name_kind_nothing_anymatch.perf │ │ │ │ ├── search_by_name_kind_objc_interface.out │ │ │ │ ├── search_by_name_kind_objc_interface.perf │ │ │ │ ├── search_by_name_kind_struct.out │ │ │ │ ├── search_by_name_kind_struct.perf │ │ │ │ ├── search_by_name_kind_struct_union_enum.out │ │ │ │ ├── search_by_name_kind_struct_union_enum.perf │ │ │ │ ├── search_by_name_kind_type.out │ │ │ │ ├── search_by_name_kind_type.perf │ │ │ │ ├── search_by_name_kind_union.out │ │ │ │ ├── search_by_name_kind_union.perf │ │ │ │ ├── search_by_name_kind_using.out │ │ │ │ ├── search_by_name_kind_using.perf │ │ │ │ ├── search_by_name_kind_variable.out │ │ │ │ ├── search_by_name_kind_variable.perf │ │ │ │ ├── search_by_scope.out │ │ │ │ ├── search_by_scope.perf │ │ │ │ ├── search_by_scope_record.out │ │ │ │ ├── search_by_scope_record.perf │ │ │ │ ├── search_by_scope_record_ignorecase.out │ │ │ │ ├── search_by_scope_record_ignorecase.perf │ │ │ │ ├── search_insensitive_exact_exactkind.out │ │ │ │ ├── search_insensitive_exact_exactkind.perf │ │ │ │ ├── search_insensitive_exact_nokind.out │ │ │ │ ├── search_insensitive_exact_nokind.perf │ │ │ │ ├── search_insensitive_prefix_exactkind.out │ │ │ │ ├── search_insensitive_prefix_exactkind.perf │ │ │ │ ├── search_insensitive_prefix_exactkindplus.out │ │ │ │ ├── search_insensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_insensitive_prefix_nokind.out │ │ │ │ ├── search_insensitive_prefix_nokind.perf │ │ │ │ ├── search_kind_class.out │ │ │ │ ├── search_kind_class.perf │ │ │ │ ├── search_kind_class_neg.out │ │ │ │ ├── search_kind_class_neg.perf │ │ │ │ ├── search_kind_enum.out │ │ │ │ ├── search_kind_enum.perf │ │ │ │ ├── search_kind_enum_neg.out │ │ │ │ ├── search_kind_enum_neg.perf │ │ │ │ ├── search_kind_namespace.out │ │ │ │ ├── search_kind_namespace.perf │ │ │ │ ├── search_kind_namespace_neg.out │ │ │ │ ├── search_kind_namespace_neg.perf │ │ │ │ ├── search_kind_struct.out │ │ │ │ ├── search_kind_struct.perf │ │ │ │ ├── search_kind_struct_neg.out │ │ │ │ ├── search_kind_struct_neg.perf │ │ │ │ ├── search_kind_union.out │ │ │ │ ├── search_kind_union.perf │ │ │ │ ├── search_kind_union_neg.out │ │ │ │ ├── search_kind_union_neg.perf │ │ │ │ ├── search_related_contains_child.out │ │ │ │ ├── search_related_contains_child.perf │ │ │ │ ├── search_related_contains_child_namespace.out │ │ │ │ ├── search_related_contains_child_namespace.perf │ │ │ │ ├── search_related_contains_child_namespace.platform010-clang-17.out │ │ │ │ ├── search_sensitive_exact_exactkind.out │ │ │ │ ├── search_sensitive_exact_exactkind.perf │ │ │ │ ├── search_sensitive_exact_exactkindplus.out │ │ │ │ ├── search_sensitive_exact_exactkindplus.perf │ │ │ │ ├── search_sensitive_exact_language.out │ │ │ │ ├── search_sensitive_exact_language.perf │ │ │ │ ├── search_sensitive_exact_multilanguage.out │ │ │ │ ├── search_sensitive_exact_multilanguage.perf │ │ │ │ ├── search_sensitive_exact_nokind.out │ │ │ │ ├── search_sensitive_exact_nokind.perf │ │ │ │ ├── search_sensitive_exact_notlanguage.out │ │ │ │ ├── search_sensitive_exact_notlanguage.perf │ │ │ │ ├── search_sensitive_prefix_exactkind.out │ │ │ │ ├── search_sensitive_prefix_exactkind.perf │ │ │ │ ├── search_sensitive_prefix_exactkindplus.out │ │ │ │ ├── search_sensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_sensitive_prefix_nokind.out │ │ │ │ ├── search_sensitive_prefix_nokind.perf │ │ │ │ ├── searchbyname.out │ │ │ │ ├── searchbyname.platform010-clang-17.out │ │ │ │ ├── srcfiles.out │ │ │ │ ├── test.cpp │ │ │ │ ├── typealias_lowercase.out │ │ │ │ └── variable_lowercase.out │ │ │ │ ├── using-decl7 │ │ │ │ ├── CxxContainsParentEntity_decl.out │ │ │ │ ├── CxxContainsParentEntity_decl.perf │ │ │ │ ├── CxxContainsParentEntity_defn.out │ │ │ │ ├── CxxContainsParentEntity_defn.perf │ │ │ │ ├── CxxFileEntityIdl.out │ │ │ │ ├── CxxFileEntityIdl.perf │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.out │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.out │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.perf │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ ├── PpEntityTraceXRefLocations.out │ │ │ │ ├── PpEntityTraceXRefLocations.perf │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.out │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.perf │ │ │ │ ├── codemarkup_EntityReferences_decl.out │ │ │ │ ├── codemarkup_EntityReferences_decl.perf │ │ │ │ ├── codemarkup_EntityReferences_defn.out │ │ │ │ ├── codemarkup_EntityReferences_defn.perf │ │ │ │ ├── codemarkup_EntityReferences_enum.out │ │ │ │ ├── codemarkup_EntityReferences_enum.perf │ │ │ │ ├── codemarkup_EntitySource.out │ │ │ │ ├── codemarkup_EntitySource.perf │ │ │ │ ├── codemarkup_searchbyname.out │ │ │ │ ├── cxxFileXRefs.out │ │ │ │ ├── cxxFileXRefs.perf │ │ │ │ ├── cxx_entity_location.out │ │ │ │ ├── cxx_entity_location.perf │ │ │ │ ├── decltodeftodecl.out │ │ │ │ ├── decltodeftodecl.perf │ │ │ │ ├── enum_lowercase.out │ │ │ │ ├── enumerator_lowercase.out │ │ │ │ ├── fileentities.out │ │ │ │ ├── fileentityinfo.out │ │ │ │ ├── fileentityxrefkind.out │ │ │ │ ├── fileentityxrefs.out │ │ │ │ ├── fileentityxrefsgeneric.out │ │ │ │ ├── filexrefmap.out │ │ │ │ ├── function_name_lowercase.out │ │ │ │ ├── ppPPEntityLocation.out │ │ │ │ ├── ppPPEntityLocation.perf │ │ │ │ ├── pp_PpIncludeXRefLocations.out │ │ │ │ ├── record_name_lowercase_class.out │ │ │ │ ├── record_name_lowercase_struct.out │ │ │ │ ├── record_name_lowercase_union.out │ │ │ │ ├── search_by_name_kind.out │ │ │ │ ├── search_by_name_kind.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild.out │ │ │ │ ├── search_by_name_kind_anymatch_wild.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.out │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.perf │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.out │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.perf │ │ │ │ ├── search_by_name_kind_class.out │ │ │ │ ├── search_by_name_kind_class.perf │ │ │ │ ├── search_by_name_kind_class_namespace.out │ │ │ │ ├── search_by_name_kind_class_namespace.perf │ │ │ │ ├── search_by_name_kind_enum.out │ │ │ │ ├── search_by_name_kind_enum.perf │ │ │ │ ├── search_by_name_kind_enumerator.out │ │ │ │ ├── search_by_name_kind_enumerator.perf │ │ │ │ ├── search_by_name_kind_function.out │ │ │ │ ├── search_by_name_kind_function.perf │ │ │ │ ├── search_by_name_kind_function_prefix.out │ │ │ │ ├── search_by_name_kind_function_prefix.perf │ │ │ │ ├── search_by_name_kind_namespace.out │ │ │ │ ├── search_by_name_kind_namespace.perf │ │ │ │ ├── search_by_name_kind_no_match.out │ │ │ │ ├── search_by_name_kind_no_match.perf │ │ │ │ ├── search_by_name_kind_no_match_enumerator.out │ │ │ │ ├── search_by_name_kind_no_match_enumerator.perf │ │ │ │ ├── search_by_name_kind_no_match_filtered.out │ │ │ │ ├── search_by_name_kind_no_match_filtered.perf │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_function.out │ │ │ │ ├── search_by_name_kind_nomatch_function.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.out │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.perf │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.out │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.perf │ │ │ │ ├── search_by_name_kind_nomatch_using.out │ │ │ │ ├── search_by_name_kind_nomatch_using.perf │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.out │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.perf │ │ │ │ ├── search_by_name_kind_nomatch_variable.out │ │ │ │ ├── search_by_name_kind_nomatch_variable.perf │ │ │ │ ├── search_by_name_kind_nothing_anymatch.out │ │ │ │ ├── search_by_name_kind_nothing_anymatch.perf │ │ │ │ ├── search_by_name_kind_objc_interface.out │ │ │ │ ├── search_by_name_kind_objc_interface.perf │ │ │ │ ├── search_by_name_kind_struct.out │ │ │ │ ├── search_by_name_kind_struct.perf │ │ │ │ ├── search_by_name_kind_struct_union_enum.out │ │ │ │ ├── search_by_name_kind_struct_union_enum.perf │ │ │ │ ├── search_by_name_kind_type.out │ │ │ │ ├── search_by_name_kind_type.perf │ │ │ │ ├── search_by_name_kind_union.out │ │ │ │ ├── search_by_name_kind_union.perf │ │ │ │ ├── search_by_name_kind_using.out │ │ │ │ ├── search_by_name_kind_using.perf │ │ │ │ ├── search_by_name_kind_variable.out │ │ │ │ ├── search_by_name_kind_variable.perf │ │ │ │ ├── search_by_scope.out │ │ │ │ ├── search_by_scope.perf │ │ │ │ ├── search_by_scope_record.out │ │ │ │ ├── search_by_scope_record.perf │ │ │ │ ├── search_by_scope_record_ignorecase.out │ │ │ │ ├── search_by_scope_record_ignorecase.perf │ │ │ │ ├── search_insensitive_exact_exactkind.out │ │ │ │ ├── search_insensitive_exact_exactkind.perf │ │ │ │ ├── search_insensitive_exact_nokind.out │ │ │ │ ├── search_insensitive_exact_nokind.perf │ │ │ │ ├── search_insensitive_prefix_exactkind.out │ │ │ │ ├── search_insensitive_prefix_exactkind.perf │ │ │ │ ├── search_insensitive_prefix_exactkindplus.out │ │ │ │ ├── search_insensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_insensitive_prefix_nokind.out │ │ │ │ ├── search_insensitive_prefix_nokind.perf │ │ │ │ ├── search_kind_class.out │ │ │ │ ├── search_kind_class.perf │ │ │ │ ├── search_kind_class_neg.out │ │ │ │ ├── search_kind_class_neg.perf │ │ │ │ ├── search_kind_enum.out │ │ │ │ ├── search_kind_enum.perf │ │ │ │ ├── search_kind_enum_neg.out │ │ │ │ ├── search_kind_enum_neg.perf │ │ │ │ ├── search_kind_namespace.out │ │ │ │ ├── search_kind_namespace.perf │ │ │ │ ├── search_kind_namespace_neg.out │ │ │ │ ├── search_kind_namespace_neg.perf │ │ │ │ ├── search_kind_struct.out │ │ │ │ ├── search_kind_struct.perf │ │ │ │ ├── search_kind_struct_neg.out │ │ │ │ ├── search_kind_struct_neg.perf │ │ │ │ ├── search_kind_union.out │ │ │ │ ├── search_kind_union.perf │ │ │ │ ├── search_kind_union_neg.out │ │ │ │ ├── search_kind_union_neg.perf │ │ │ │ ├── search_related_contains_child.out │ │ │ │ ├── search_related_contains_child.perf │ │ │ │ ├── search_related_contains_child_namespace.out │ │ │ │ ├── search_related_contains_child_namespace.perf │ │ │ │ ├── search_sensitive_exact_exactkind.out │ │ │ │ ├── search_sensitive_exact_exactkind.perf │ │ │ │ ├── search_sensitive_exact_exactkindplus.out │ │ │ │ ├── search_sensitive_exact_exactkindplus.perf │ │ │ │ ├── search_sensitive_exact_language.out │ │ │ │ ├── search_sensitive_exact_language.perf │ │ │ │ ├── search_sensitive_exact_multilanguage.out │ │ │ │ ├── search_sensitive_exact_multilanguage.perf │ │ │ │ ├── search_sensitive_exact_nokind.out │ │ │ │ ├── search_sensitive_exact_nokind.perf │ │ │ │ ├── search_sensitive_exact_notlanguage.out │ │ │ │ ├── search_sensitive_exact_notlanguage.perf │ │ │ │ ├── search_sensitive_prefix_exactkind.out │ │ │ │ ├── search_sensitive_prefix_exactkind.perf │ │ │ │ ├── search_sensitive_prefix_exactkindplus.out │ │ │ │ ├── search_sensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_sensitive_prefix_nokind.out │ │ │ │ ├── search_sensitive_prefix_nokind.perf │ │ │ │ ├── searchbyname.out │ │ │ │ ├── srcfiles.out │ │ │ │ ├── test.cpp │ │ │ │ ├── typealias_lowercase.out │ │ │ │ └── variable_lowercase.out │ │ │ │ ├── using-directive1 │ │ │ │ ├── CxxContainsParentEntity_decl.out │ │ │ │ ├── CxxContainsParentEntity_decl.perf │ │ │ │ ├── CxxContainsParentEntity_defn.out │ │ │ │ ├── CxxContainsParentEntity_defn.perf │ │ │ │ ├── CxxFileEntityIdl.out │ │ │ │ ├── CxxFileEntityIdl.perf │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.out │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.out │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.perf │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ ├── PpEntityTraceXRefLocations.out │ │ │ │ ├── PpEntityTraceXRefLocations.perf │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.out │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.perf │ │ │ │ ├── codemarkup_EntityReferences_decl.out │ │ │ │ ├── codemarkup_EntityReferences_decl.perf │ │ │ │ ├── codemarkup_EntityReferences_defn.out │ │ │ │ ├── codemarkup_EntityReferences_defn.perf │ │ │ │ ├── codemarkup_EntityReferences_enum.out │ │ │ │ ├── codemarkup_EntityReferences_enum.perf │ │ │ │ ├── codemarkup_EntitySource.out │ │ │ │ ├── codemarkup_EntitySource.perf │ │ │ │ ├── codemarkup_searchbyname.out │ │ │ │ ├── cxxFileXRefs.out │ │ │ │ ├── cxxFileXRefs.perf │ │ │ │ ├── cxx_entity_location.out │ │ │ │ ├── cxx_entity_location.perf │ │ │ │ ├── decltodeftodecl.out │ │ │ │ ├── decltodeftodecl.perf │ │ │ │ ├── enum_lowercase.out │ │ │ │ ├── enumerator_lowercase.out │ │ │ │ ├── fileentities.out │ │ │ │ ├── fileentityinfo.out │ │ │ │ ├── fileentityxrefkind.out │ │ │ │ ├── fileentityxrefs.out │ │ │ │ ├── fileentityxrefsgeneric.out │ │ │ │ ├── filexrefmap.out │ │ │ │ ├── function_name_lowercase.out │ │ │ │ ├── ppPPEntityLocation.out │ │ │ │ ├── ppPPEntityLocation.perf │ │ │ │ ├── pp_PpIncludeXRefLocations.out │ │ │ │ ├── record_name_lowercase_class.out │ │ │ │ ├── record_name_lowercase_struct.out │ │ │ │ ├── record_name_lowercase_union.out │ │ │ │ ├── search_by_name_kind.out │ │ │ │ ├── search_by_name_kind.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild.out │ │ │ │ ├── search_by_name_kind_anymatch_wild.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.out │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.perf │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.out │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.perf │ │ │ │ ├── search_by_name_kind_class.out │ │ │ │ ├── search_by_name_kind_class.perf │ │ │ │ ├── search_by_name_kind_class_namespace.out │ │ │ │ ├── search_by_name_kind_class_namespace.perf │ │ │ │ ├── search_by_name_kind_enum.out │ │ │ │ ├── search_by_name_kind_enum.perf │ │ │ │ ├── search_by_name_kind_enumerator.out │ │ │ │ ├── search_by_name_kind_enumerator.perf │ │ │ │ ├── search_by_name_kind_function.out │ │ │ │ ├── search_by_name_kind_function.perf │ │ │ │ ├── search_by_name_kind_function_prefix.out │ │ │ │ ├── search_by_name_kind_function_prefix.perf │ │ │ │ ├── search_by_name_kind_namespace.out │ │ │ │ ├── search_by_name_kind_namespace.perf │ │ │ │ ├── search_by_name_kind_no_match.out │ │ │ │ ├── search_by_name_kind_no_match.perf │ │ │ │ ├── search_by_name_kind_no_match_enumerator.out │ │ │ │ ├── search_by_name_kind_no_match_enumerator.perf │ │ │ │ ├── search_by_name_kind_no_match_filtered.out │ │ │ │ ├── search_by_name_kind_no_match_filtered.perf │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_function.out │ │ │ │ ├── search_by_name_kind_nomatch_function.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.out │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.perf │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.out │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.perf │ │ │ │ ├── search_by_name_kind_nomatch_using.out │ │ │ │ ├── search_by_name_kind_nomatch_using.perf │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.out │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.perf │ │ │ │ ├── search_by_name_kind_nomatch_variable.out │ │ │ │ ├── search_by_name_kind_nomatch_variable.perf │ │ │ │ ├── search_by_name_kind_nothing_anymatch.out │ │ │ │ ├── search_by_name_kind_nothing_anymatch.perf │ │ │ │ ├── search_by_name_kind_objc_interface.out │ │ │ │ ├── search_by_name_kind_objc_interface.perf │ │ │ │ ├── search_by_name_kind_struct.out │ │ │ │ ├── search_by_name_kind_struct.perf │ │ │ │ ├── search_by_name_kind_struct_union_enum.out │ │ │ │ ├── search_by_name_kind_struct_union_enum.perf │ │ │ │ ├── search_by_name_kind_type.out │ │ │ │ ├── search_by_name_kind_type.perf │ │ │ │ ├── search_by_name_kind_union.out │ │ │ │ ├── search_by_name_kind_union.perf │ │ │ │ ├── search_by_name_kind_using.out │ │ │ │ ├── search_by_name_kind_using.perf │ │ │ │ ├── search_by_name_kind_variable.out │ │ │ │ ├── search_by_name_kind_variable.perf │ │ │ │ ├── search_by_scope.out │ │ │ │ ├── search_by_scope.perf │ │ │ │ ├── search_by_scope_record.out │ │ │ │ ├── search_by_scope_record.perf │ │ │ │ ├── search_by_scope_record_ignorecase.out │ │ │ │ ├── search_by_scope_record_ignorecase.perf │ │ │ │ ├── search_insensitive_exact_exactkind.out │ │ │ │ ├── search_insensitive_exact_exactkind.perf │ │ │ │ ├── search_insensitive_exact_nokind.out │ │ │ │ ├── search_insensitive_exact_nokind.perf │ │ │ │ ├── search_insensitive_prefix_exactkind.out │ │ │ │ ├── search_insensitive_prefix_exactkind.perf │ │ │ │ ├── search_insensitive_prefix_exactkindplus.out │ │ │ │ ├── search_insensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_insensitive_prefix_nokind.out │ │ │ │ ├── search_insensitive_prefix_nokind.perf │ │ │ │ ├── search_kind_class.out │ │ │ │ ├── search_kind_class.perf │ │ │ │ ├── search_kind_class_neg.out │ │ │ │ ├── search_kind_class_neg.perf │ │ │ │ ├── search_kind_enum.out │ │ │ │ ├── search_kind_enum.perf │ │ │ │ ├── search_kind_enum_neg.out │ │ │ │ ├── search_kind_enum_neg.perf │ │ │ │ ├── search_kind_namespace.out │ │ │ │ ├── search_kind_namespace.perf │ │ │ │ ├── search_kind_namespace_neg.out │ │ │ │ ├── search_kind_namespace_neg.perf │ │ │ │ ├── search_kind_struct.out │ │ │ │ ├── search_kind_struct.perf │ │ │ │ ├── search_kind_struct_neg.out │ │ │ │ ├── search_kind_struct_neg.perf │ │ │ │ ├── search_kind_union.out │ │ │ │ ├── search_kind_union.perf │ │ │ │ ├── search_kind_union_neg.out │ │ │ │ ├── search_kind_union_neg.perf │ │ │ │ ├── search_related_contains_child.out │ │ │ │ ├── search_related_contains_child.perf │ │ │ │ ├── search_related_contains_child_namespace.out │ │ │ │ ├── search_related_contains_child_namespace.perf │ │ │ │ ├── search_sensitive_exact_exactkind.out │ │ │ │ ├── search_sensitive_exact_exactkind.perf │ │ │ │ ├── search_sensitive_exact_exactkindplus.out │ │ │ │ ├── search_sensitive_exact_exactkindplus.perf │ │ │ │ ├── search_sensitive_exact_language.out │ │ │ │ ├── search_sensitive_exact_language.perf │ │ │ │ ├── search_sensitive_exact_multilanguage.out │ │ │ │ ├── search_sensitive_exact_multilanguage.perf │ │ │ │ ├── search_sensitive_exact_nokind.out │ │ │ │ ├── search_sensitive_exact_nokind.perf │ │ │ │ ├── search_sensitive_exact_notlanguage.out │ │ │ │ ├── search_sensitive_exact_notlanguage.perf │ │ │ │ ├── search_sensitive_prefix_exactkind.out │ │ │ │ ├── search_sensitive_prefix_exactkind.perf │ │ │ │ ├── search_sensitive_prefix_exactkindplus.out │ │ │ │ ├── search_sensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_sensitive_prefix_nokind.out │ │ │ │ ├── search_sensitive_prefix_nokind.perf │ │ │ │ ├── searchbyname.out │ │ │ │ ├── srcfiles.out │ │ │ │ ├── test.cpp │ │ │ │ ├── typealias_lowercase.out │ │ │ │ └── variable_lowercase.out │ │ │ │ ├── using-directive2 │ │ │ │ ├── CxxContainsParentEntity_decl.out │ │ │ │ ├── CxxContainsParentEntity_decl.perf │ │ │ │ ├── CxxContainsParentEntity_defn.out │ │ │ │ ├── CxxContainsParentEntity_defn.perf │ │ │ │ ├── CxxFileEntityIdl.out │ │ │ │ ├── CxxFileEntityIdl.perf │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.out │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.out │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.perf │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ ├── PpEntityTraceXRefLocations.out │ │ │ │ ├── PpEntityTraceXRefLocations.perf │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.out │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.perf │ │ │ │ ├── codemarkup_EntityReferences_decl.out │ │ │ │ ├── codemarkup_EntityReferences_decl.perf │ │ │ │ ├── codemarkup_EntityReferences_defn.out │ │ │ │ ├── codemarkup_EntityReferences_defn.perf │ │ │ │ ├── codemarkup_EntityReferences_enum.out │ │ │ │ ├── codemarkup_EntityReferences_enum.perf │ │ │ │ ├── codemarkup_EntitySource.out │ │ │ │ ├── codemarkup_EntitySource.perf │ │ │ │ ├── codemarkup_searchbyname.out │ │ │ │ ├── cxxFileXRefs.out │ │ │ │ ├── cxxFileXRefs.perf │ │ │ │ ├── cxx_entity_location.out │ │ │ │ ├── cxx_entity_location.perf │ │ │ │ ├── decltodeftodecl.out │ │ │ │ ├── decltodeftodecl.perf │ │ │ │ ├── enum_lowercase.out │ │ │ │ ├── enumerator_lowercase.out │ │ │ │ ├── fileentities.out │ │ │ │ ├── fileentityinfo.out │ │ │ │ ├── fileentityxrefkind.out │ │ │ │ ├── fileentityxrefs.out │ │ │ │ ├── fileentityxrefsgeneric.out │ │ │ │ ├── filexrefmap.out │ │ │ │ ├── function_name_lowercase.out │ │ │ │ ├── ppPPEntityLocation.out │ │ │ │ ├── ppPPEntityLocation.perf │ │ │ │ ├── pp_PpIncludeXRefLocations.out │ │ │ │ ├── record_name_lowercase_class.out │ │ │ │ ├── record_name_lowercase_struct.out │ │ │ │ ├── record_name_lowercase_union.out │ │ │ │ ├── search_by_name_kind.out │ │ │ │ ├── search_by_name_kind.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild.out │ │ │ │ ├── search_by_name_kind_anymatch_wild.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.out │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.perf │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.out │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.perf │ │ │ │ ├── search_by_name_kind_class.out │ │ │ │ ├── search_by_name_kind_class.perf │ │ │ │ ├── search_by_name_kind_class_namespace.out │ │ │ │ ├── search_by_name_kind_class_namespace.perf │ │ │ │ ├── search_by_name_kind_enum.out │ │ │ │ ├── search_by_name_kind_enum.perf │ │ │ │ ├── search_by_name_kind_enumerator.out │ │ │ │ ├── search_by_name_kind_enumerator.perf │ │ │ │ ├── search_by_name_kind_function.out │ │ │ │ ├── search_by_name_kind_function.perf │ │ │ │ ├── search_by_name_kind_function_prefix.out │ │ │ │ ├── search_by_name_kind_function_prefix.perf │ │ │ │ ├── search_by_name_kind_namespace.out │ │ │ │ ├── search_by_name_kind_namespace.perf │ │ │ │ ├── search_by_name_kind_no_match.out │ │ │ │ ├── search_by_name_kind_no_match.perf │ │ │ │ ├── search_by_name_kind_no_match_enumerator.out │ │ │ │ ├── search_by_name_kind_no_match_enumerator.perf │ │ │ │ ├── search_by_name_kind_no_match_filtered.out │ │ │ │ ├── search_by_name_kind_no_match_filtered.perf │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_function.out │ │ │ │ ├── search_by_name_kind_nomatch_function.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.out │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.perf │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.out │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.perf │ │ │ │ ├── search_by_name_kind_nomatch_using.out │ │ │ │ ├── search_by_name_kind_nomatch_using.perf │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.out │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.perf │ │ │ │ ├── search_by_name_kind_nomatch_variable.out │ │ │ │ ├── search_by_name_kind_nomatch_variable.perf │ │ │ │ ├── search_by_name_kind_nothing_anymatch.out │ │ │ │ ├── search_by_name_kind_nothing_anymatch.perf │ │ │ │ ├── search_by_name_kind_objc_interface.out │ │ │ │ ├── search_by_name_kind_objc_interface.perf │ │ │ │ ├── search_by_name_kind_struct.out │ │ │ │ ├── search_by_name_kind_struct.perf │ │ │ │ ├── search_by_name_kind_struct_union_enum.out │ │ │ │ ├── search_by_name_kind_struct_union_enum.perf │ │ │ │ ├── search_by_name_kind_type.out │ │ │ │ ├── search_by_name_kind_type.perf │ │ │ │ ├── search_by_name_kind_union.out │ │ │ │ ├── search_by_name_kind_union.perf │ │ │ │ ├── search_by_name_kind_using.out │ │ │ │ ├── search_by_name_kind_using.perf │ │ │ │ ├── search_by_name_kind_variable.out │ │ │ │ ├── search_by_name_kind_variable.perf │ │ │ │ ├── search_by_scope.out │ │ │ │ ├── search_by_scope.perf │ │ │ │ ├── search_by_scope_record.out │ │ │ │ ├── search_by_scope_record.perf │ │ │ │ ├── search_by_scope_record_ignorecase.out │ │ │ │ ├── search_by_scope_record_ignorecase.perf │ │ │ │ ├── search_insensitive_exact_exactkind.out │ │ │ │ ├── search_insensitive_exact_exactkind.perf │ │ │ │ ├── search_insensitive_exact_nokind.out │ │ │ │ ├── search_insensitive_exact_nokind.perf │ │ │ │ ├── search_insensitive_prefix_exactkind.out │ │ │ │ ├── search_insensitive_prefix_exactkind.perf │ │ │ │ ├── search_insensitive_prefix_exactkindplus.out │ │ │ │ ├── search_insensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_insensitive_prefix_nokind.out │ │ │ │ ├── search_insensitive_prefix_nokind.perf │ │ │ │ ├── search_kind_class.out │ │ │ │ ├── search_kind_class.perf │ │ │ │ ├── search_kind_class_neg.out │ │ │ │ ├── search_kind_class_neg.perf │ │ │ │ ├── search_kind_enum.out │ │ │ │ ├── search_kind_enum.perf │ │ │ │ ├── search_kind_enum_neg.out │ │ │ │ ├── search_kind_enum_neg.perf │ │ │ │ ├── search_kind_namespace.out │ │ │ │ ├── search_kind_namespace.perf │ │ │ │ ├── search_kind_namespace_neg.out │ │ │ │ ├── search_kind_namespace_neg.perf │ │ │ │ ├── search_kind_struct.out │ │ │ │ ├── search_kind_struct.perf │ │ │ │ ├── search_kind_struct_neg.out │ │ │ │ ├── search_kind_struct_neg.perf │ │ │ │ ├── search_kind_union.out │ │ │ │ ├── search_kind_union.perf │ │ │ │ ├── search_kind_union_neg.out │ │ │ │ ├── search_kind_union_neg.perf │ │ │ │ ├── search_related_contains_child.out │ │ │ │ ├── search_related_contains_child.perf │ │ │ │ ├── search_related_contains_child_namespace.out │ │ │ │ ├── search_related_contains_child_namespace.perf │ │ │ │ ├── search_sensitive_exact_exactkind.out │ │ │ │ ├── search_sensitive_exact_exactkind.perf │ │ │ │ ├── search_sensitive_exact_exactkindplus.out │ │ │ │ ├── search_sensitive_exact_exactkindplus.perf │ │ │ │ ├── search_sensitive_exact_language.out │ │ │ │ ├── search_sensitive_exact_language.perf │ │ │ │ ├── search_sensitive_exact_multilanguage.out │ │ │ │ ├── search_sensitive_exact_multilanguage.perf │ │ │ │ ├── search_sensitive_exact_nokind.out │ │ │ │ ├── search_sensitive_exact_nokind.perf │ │ │ │ ├── search_sensitive_exact_notlanguage.out │ │ │ │ ├── search_sensitive_exact_notlanguage.perf │ │ │ │ ├── search_sensitive_prefix_exactkind.out │ │ │ │ ├── search_sensitive_prefix_exactkind.perf │ │ │ │ ├── search_sensitive_prefix_exactkindplus.out │ │ │ │ ├── search_sensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_sensitive_prefix_nokind.out │ │ │ │ ├── search_sensitive_prefix_nokind.perf │ │ │ │ ├── searchbyname.out │ │ │ │ ├── srcfiles.out │ │ │ │ ├── test.cpp │ │ │ │ ├── typealias_lowercase.out │ │ │ │ └── variable_lowercase.out │ │ │ │ ├── using-directive3 │ │ │ │ ├── CxxContainsParentEntity_decl.out │ │ │ │ ├── CxxContainsParentEntity_decl.perf │ │ │ │ ├── CxxContainsParentEntity_defn.out │ │ │ │ ├── CxxContainsParentEntity_defn.perf │ │ │ │ ├── CxxFileEntityIdl.out │ │ │ │ ├── CxxFileEntityIdl.perf │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.out │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.out │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.perf │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ ├── PpEntityTraceXRefLocations.out │ │ │ │ ├── PpEntityTraceXRefLocations.perf │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.out │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.perf │ │ │ │ ├── codemarkup_EntityReferences_decl.out │ │ │ │ ├── codemarkup_EntityReferences_decl.perf │ │ │ │ ├── codemarkup_EntityReferences_defn.out │ │ │ │ ├── codemarkup_EntityReferences_defn.perf │ │ │ │ ├── codemarkup_EntityReferences_enum.out │ │ │ │ ├── codemarkup_EntityReferences_enum.perf │ │ │ │ ├── codemarkup_EntitySource.out │ │ │ │ ├── codemarkup_EntitySource.perf │ │ │ │ ├── codemarkup_searchbyname.out │ │ │ │ ├── cxxFileXRefs.out │ │ │ │ ├── cxxFileXRefs.perf │ │ │ │ ├── cxx_entity_location.out │ │ │ │ ├── cxx_entity_location.perf │ │ │ │ ├── decltodeftodecl.out │ │ │ │ ├── decltodeftodecl.perf │ │ │ │ ├── enum_lowercase.out │ │ │ │ ├── enumerator_lowercase.out │ │ │ │ ├── fileentities.out │ │ │ │ ├── fileentityinfo.out │ │ │ │ ├── fileentityxrefkind.out │ │ │ │ ├── fileentityxrefs.out │ │ │ │ ├── fileentityxrefsgeneric.out │ │ │ │ ├── filexrefmap.out │ │ │ │ ├── function_name_lowercase.out │ │ │ │ ├── ppPPEntityLocation.out │ │ │ │ ├── ppPPEntityLocation.perf │ │ │ │ ├── pp_PpIncludeXRefLocations.out │ │ │ │ ├── record_name_lowercase_class.out │ │ │ │ ├── record_name_lowercase_struct.out │ │ │ │ ├── record_name_lowercase_union.out │ │ │ │ ├── search_by_name_kind.out │ │ │ │ ├── search_by_name_kind.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild.out │ │ │ │ ├── search_by_name_kind_anymatch_wild.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.out │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.perf │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.out │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.perf │ │ │ │ ├── search_by_name_kind_class.out │ │ │ │ ├── search_by_name_kind_class.perf │ │ │ │ ├── search_by_name_kind_class_namespace.out │ │ │ │ ├── search_by_name_kind_class_namespace.perf │ │ │ │ ├── search_by_name_kind_enum.out │ │ │ │ ├── search_by_name_kind_enum.perf │ │ │ │ ├── search_by_name_kind_enumerator.out │ │ │ │ ├── search_by_name_kind_enumerator.perf │ │ │ │ ├── search_by_name_kind_function.out │ │ │ │ ├── search_by_name_kind_function.perf │ │ │ │ ├── search_by_name_kind_function_prefix.out │ │ │ │ ├── search_by_name_kind_function_prefix.perf │ │ │ │ ├── search_by_name_kind_namespace.out │ │ │ │ ├── search_by_name_kind_namespace.perf │ │ │ │ ├── search_by_name_kind_no_match.out │ │ │ │ ├── search_by_name_kind_no_match.perf │ │ │ │ ├── search_by_name_kind_no_match_enumerator.out │ │ │ │ ├── search_by_name_kind_no_match_enumerator.perf │ │ │ │ ├── search_by_name_kind_no_match_filtered.out │ │ │ │ ├── search_by_name_kind_no_match_filtered.perf │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_function.out │ │ │ │ ├── search_by_name_kind_nomatch_function.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.out │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.perf │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.out │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.perf │ │ │ │ ├── search_by_name_kind_nomatch_using.out │ │ │ │ ├── search_by_name_kind_nomatch_using.perf │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.out │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.perf │ │ │ │ ├── search_by_name_kind_nomatch_variable.out │ │ │ │ ├── search_by_name_kind_nomatch_variable.perf │ │ │ │ ├── search_by_name_kind_nothing_anymatch.out │ │ │ │ ├── search_by_name_kind_nothing_anymatch.perf │ │ │ │ ├── search_by_name_kind_objc_interface.out │ │ │ │ ├── search_by_name_kind_objc_interface.perf │ │ │ │ ├── search_by_name_kind_struct.out │ │ │ │ ├── search_by_name_kind_struct.perf │ │ │ │ ├── search_by_name_kind_struct_union_enum.out │ │ │ │ ├── search_by_name_kind_struct_union_enum.perf │ │ │ │ ├── search_by_name_kind_type.out │ │ │ │ ├── search_by_name_kind_type.perf │ │ │ │ ├── search_by_name_kind_union.out │ │ │ │ ├── search_by_name_kind_union.perf │ │ │ │ ├── search_by_name_kind_using.out │ │ │ │ ├── search_by_name_kind_using.perf │ │ │ │ ├── search_by_name_kind_variable.out │ │ │ │ ├── search_by_name_kind_variable.perf │ │ │ │ ├── search_by_scope.out │ │ │ │ ├── search_by_scope.perf │ │ │ │ ├── search_by_scope_record.out │ │ │ │ ├── search_by_scope_record.perf │ │ │ │ ├── search_by_scope_record_ignorecase.out │ │ │ │ ├── search_by_scope_record_ignorecase.perf │ │ │ │ ├── search_insensitive_exact_exactkind.out │ │ │ │ ├── search_insensitive_exact_exactkind.perf │ │ │ │ ├── search_insensitive_exact_nokind.out │ │ │ │ ├── search_insensitive_exact_nokind.perf │ │ │ │ ├── search_insensitive_prefix_exactkind.out │ │ │ │ ├── search_insensitive_prefix_exactkind.perf │ │ │ │ ├── search_insensitive_prefix_exactkindplus.out │ │ │ │ ├── search_insensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_insensitive_prefix_nokind.out │ │ │ │ ├── search_insensitive_prefix_nokind.perf │ │ │ │ ├── search_kind_class.out │ │ │ │ ├── search_kind_class.perf │ │ │ │ ├── search_kind_class_neg.out │ │ │ │ ├── search_kind_class_neg.perf │ │ │ │ ├── search_kind_enum.out │ │ │ │ ├── search_kind_enum.perf │ │ │ │ ├── search_kind_enum_neg.out │ │ │ │ ├── search_kind_enum_neg.perf │ │ │ │ ├── search_kind_namespace.out │ │ │ │ ├── search_kind_namespace.perf │ │ │ │ ├── search_kind_namespace_neg.out │ │ │ │ ├── search_kind_namespace_neg.perf │ │ │ │ ├── search_kind_struct.out │ │ │ │ ├── search_kind_struct.perf │ │ │ │ ├── search_kind_struct_neg.out │ │ │ │ ├── search_kind_struct_neg.perf │ │ │ │ ├── search_kind_union.out │ │ │ │ ├── search_kind_union.perf │ │ │ │ ├── search_kind_union_neg.out │ │ │ │ ├── search_kind_union_neg.perf │ │ │ │ ├── search_related_contains_child.out │ │ │ │ ├── search_related_contains_child.perf │ │ │ │ ├── search_related_contains_child_namespace.out │ │ │ │ ├── search_related_contains_child_namespace.perf │ │ │ │ ├── search_sensitive_exact_exactkind.out │ │ │ │ ├── search_sensitive_exact_exactkind.perf │ │ │ │ ├── search_sensitive_exact_exactkindplus.out │ │ │ │ ├── search_sensitive_exact_exactkindplus.perf │ │ │ │ ├── search_sensitive_exact_language.out │ │ │ │ ├── search_sensitive_exact_language.perf │ │ │ │ ├── search_sensitive_exact_multilanguage.out │ │ │ │ ├── search_sensitive_exact_multilanguage.perf │ │ │ │ ├── search_sensitive_exact_nokind.out │ │ │ │ ├── search_sensitive_exact_nokind.perf │ │ │ │ ├── search_sensitive_exact_notlanguage.out │ │ │ │ ├── search_sensitive_exact_notlanguage.perf │ │ │ │ ├── search_sensitive_prefix_exactkind.out │ │ │ │ ├── search_sensitive_prefix_exactkind.perf │ │ │ │ ├── search_sensitive_prefix_exactkindplus.out │ │ │ │ ├── search_sensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_sensitive_prefix_nokind.out │ │ │ │ ├── search_sensitive_prefix_nokind.perf │ │ │ │ ├── searchbyname.out │ │ │ │ ├── srcfiles.out │ │ │ │ ├── test.cpp │ │ │ │ ├── typealias_lowercase.out │ │ │ │ └── variable_lowercase.out │ │ │ │ ├── using-directive5 │ │ │ │ ├── CxxContainsParentEntity_decl.out │ │ │ │ ├── CxxContainsParentEntity_decl.perf │ │ │ │ ├── CxxContainsParentEntity_defn.out │ │ │ │ ├── CxxContainsParentEntity_defn.perf │ │ │ │ ├── CxxFileEntityIdl.out │ │ │ │ ├── CxxFileEntityIdl.perf │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.out │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.out │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.perf │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ ├── PpEntityTraceXRefLocations.out │ │ │ │ ├── PpEntityTraceXRefLocations.perf │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.out │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.perf │ │ │ │ ├── codemarkup_EntityReferences_decl.out │ │ │ │ ├── codemarkup_EntityReferences_decl.perf │ │ │ │ ├── codemarkup_EntityReferences_defn.out │ │ │ │ ├── codemarkup_EntityReferences_defn.perf │ │ │ │ ├── codemarkup_EntityReferences_enum.out │ │ │ │ ├── codemarkup_EntityReferences_enum.perf │ │ │ │ ├── codemarkup_EntitySource.out │ │ │ │ ├── codemarkup_EntitySource.perf │ │ │ │ ├── codemarkup_searchbyname.out │ │ │ │ ├── cxxFileXRefs.out │ │ │ │ ├── cxxFileXRefs.perf │ │ │ │ ├── cxx_entity_location.out │ │ │ │ ├── cxx_entity_location.perf │ │ │ │ ├── decltodeftodecl.out │ │ │ │ ├── decltodeftodecl.perf │ │ │ │ ├── enum_lowercase.out │ │ │ │ ├── enumerator_lowercase.out │ │ │ │ ├── fileentities.out │ │ │ │ ├── fileentityinfo.out │ │ │ │ ├── fileentityxrefkind.out │ │ │ │ ├── fileentityxrefs.out │ │ │ │ ├── fileentityxrefsgeneric.out │ │ │ │ ├── filexrefmap.out │ │ │ │ ├── function_name_lowercase.out │ │ │ │ ├── ppPPEntityLocation.out │ │ │ │ ├── ppPPEntityLocation.perf │ │ │ │ ├── pp_PpIncludeXRefLocations.out │ │ │ │ ├── record_name_lowercase_class.out │ │ │ │ ├── record_name_lowercase_struct.out │ │ │ │ ├── record_name_lowercase_union.out │ │ │ │ ├── search_by_name_kind.out │ │ │ │ ├── search_by_name_kind.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild.out │ │ │ │ ├── search_by_name_kind_anymatch_wild.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.out │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.perf │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.out │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.perf │ │ │ │ ├── search_by_name_kind_class.out │ │ │ │ ├── search_by_name_kind_class.perf │ │ │ │ ├── search_by_name_kind_class_namespace.out │ │ │ │ ├── search_by_name_kind_class_namespace.perf │ │ │ │ ├── search_by_name_kind_enum.out │ │ │ │ ├── search_by_name_kind_enum.perf │ │ │ │ ├── search_by_name_kind_enumerator.out │ │ │ │ ├── search_by_name_kind_enumerator.perf │ │ │ │ ├── search_by_name_kind_function.out │ │ │ │ ├── search_by_name_kind_function.perf │ │ │ │ ├── search_by_name_kind_function_prefix.out │ │ │ │ ├── search_by_name_kind_function_prefix.perf │ │ │ │ ├── search_by_name_kind_namespace.out │ │ │ │ ├── search_by_name_kind_namespace.perf │ │ │ │ ├── search_by_name_kind_no_match.out │ │ │ │ ├── search_by_name_kind_no_match.perf │ │ │ │ ├── search_by_name_kind_no_match_enumerator.out │ │ │ │ ├── search_by_name_kind_no_match_enumerator.perf │ │ │ │ ├── search_by_name_kind_no_match_filtered.out │ │ │ │ ├── search_by_name_kind_no_match_filtered.perf │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_function.out │ │ │ │ ├── search_by_name_kind_nomatch_function.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.out │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.perf │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.out │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.perf │ │ │ │ ├── search_by_name_kind_nomatch_using.out │ │ │ │ ├── search_by_name_kind_nomatch_using.perf │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.out │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.perf │ │ │ │ ├── search_by_name_kind_nomatch_variable.out │ │ │ │ ├── search_by_name_kind_nomatch_variable.perf │ │ │ │ ├── search_by_name_kind_nothing_anymatch.out │ │ │ │ ├── search_by_name_kind_nothing_anymatch.perf │ │ │ │ ├── search_by_name_kind_objc_interface.out │ │ │ │ ├── search_by_name_kind_objc_interface.perf │ │ │ │ ├── search_by_name_kind_struct.out │ │ │ │ ├── search_by_name_kind_struct.perf │ │ │ │ ├── search_by_name_kind_struct_union_enum.out │ │ │ │ ├── search_by_name_kind_struct_union_enum.perf │ │ │ │ ├── search_by_name_kind_type.out │ │ │ │ ├── search_by_name_kind_type.perf │ │ │ │ ├── search_by_name_kind_union.out │ │ │ │ ├── search_by_name_kind_union.perf │ │ │ │ ├── search_by_name_kind_using.out │ │ │ │ ├── search_by_name_kind_using.perf │ │ │ │ ├── search_by_name_kind_variable.out │ │ │ │ ├── search_by_name_kind_variable.perf │ │ │ │ ├── search_by_scope.out │ │ │ │ ├── search_by_scope.perf │ │ │ │ ├── search_by_scope_record.out │ │ │ │ ├── search_by_scope_record.perf │ │ │ │ ├── search_by_scope_record_ignorecase.out │ │ │ │ ├── search_by_scope_record_ignorecase.perf │ │ │ │ ├── search_insensitive_exact_exactkind.out │ │ │ │ ├── search_insensitive_exact_exactkind.perf │ │ │ │ ├── search_insensitive_exact_nokind.out │ │ │ │ ├── search_insensitive_exact_nokind.perf │ │ │ │ ├── search_insensitive_prefix_exactkind.out │ │ │ │ ├── search_insensitive_prefix_exactkind.perf │ │ │ │ ├── search_insensitive_prefix_exactkindplus.out │ │ │ │ ├── search_insensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_insensitive_prefix_nokind.out │ │ │ │ ├── search_insensitive_prefix_nokind.perf │ │ │ │ ├── search_kind_class.out │ │ │ │ ├── search_kind_class.perf │ │ │ │ ├── search_kind_class_neg.out │ │ │ │ ├── search_kind_class_neg.perf │ │ │ │ ├── search_kind_enum.out │ │ │ │ ├── search_kind_enum.perf │ │ │ │ ├── search_kind_enum_neg.out │ │ │ │ ├── search_kind_enum_neg.perf │ │ │ │ ├── search_kind_namespace.out │ │ │ │ ├── search_kind_namespace.perf │ │ │ │ ├── search_kind_namespace_neg.out │ │ │ │ ├── search_kind_namespace_neg.perf │ │ │ │ ├── search_kind_struct.out │ │ │ │ ├── search_kind_struct.perf │ │ │ │ ├── search_kind_struct_neg.out │ │ │ │ ├── search_kind_struct_neg.perf │ │ │ │ ├── search_kind_union.out │ │ │ │ ├── search_kind_union.perf │ │ │ │ ├── search_kind_union_neg.out │ │ │ │ ├── search_kind_union_neg.perf │ │ │ │ ├── search_related_contains_child.out │ │ │ │ ├── search_related_contains_child.perf │ │ │ │ ├── search_related_contains_child_namespace.out │ │ │ │ ├── search_related_contains_child_namespace.perf │ │ │ │ ├── search_sensitive_exact_exactkind.out │ │ │ │ ├── search_sensitive_exact_exactkind.perf │ │ │ │ ├── search_sensitive_exact_exactkindplus.out │ │ │ │ ├── search_sensitive_exact_exactkindplus.perf │ │ │ │ ├── search_sensitive_exact_language.out │ │ │ │ ├── search_sensitive_exact_language.perf │ │ │ │ ├── search_sensitive_exact_multilanguage.out │ │ │ │ ├── search_sensitive_exact_multilanguage.perf │ │ │ │ ├── search_sensitive_exact_nokind.out │ │ │ │ ├── search_sensitive_exact_nokind.perf │ │ │ │ ├── search_sensitive_exact_notlanguage.out │ │ │ │ ├── search_sensitive_exact_notlanguage.perf │ │ │ │ ├── search_sensitive_prefix_exactkind.out │ │ │ │ ├── search_sensitive_prefix_exactkind.perf │ │ │ │ ├── search_sensitive_prefix_exactkindplus.out │ │ │ │ ├── search_sensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_sensitive_prefix_nokind.out │ │ │ │ ├── search_sensitive_prefix_nokind.perf │ │ │ │ ├── searchbyname.out │ │ │ │ ├── srcfiles.out │ │ │ │ ├── test.cpp │ │ │ │ ├── typealias_lowercase.out │ │ │ │ └── variable_lowercase.out │ │ │ │ ├── using-directive6 │ │ │ │ ├── CxxContainsParentEntity_decl.out │ │ │ │ ├── CxxContainsParentEntity_decl.perf │ │ │ │ ├── CxxContainsParentEntity_defn.out │ │ │ │ ├── CxxContainsParentEntity_defn.perf │ │ │ │ ├── CxxFileEntityIdl.out │ │ │ │ ├── CxxFileEntityIdl.perf │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.out │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.out │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.perf │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ ├── CxxPpResolveTraceLocations.platform010-clang-17.out │ │ │ │ ├── PpEntityTraceXRefLocations.out │ │ │ │ ├── PpEntityTraceXRefLocations.perf │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.out │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.perf │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.platform010-clang-17.out │ │ │ │ ├── codemarkup_EntityReferences_decl.out │ │ │ │ ├── codemarkup_EntityReferences_decl.perf │ │ │ │ ├── codemarkup_EntityReferences_defn.out │ │ │ │ ├── codemarkup_EntityReferences_defn.perf │ │ │ │ ├── codemarkup_EntityReferences_enum.out │ │ │ │ ├── codemarkup_EntityReferences_enum.perf │ │ │ │ ├── codemarkup_EntitySource.out │ │ │ │ ├── codemarkup_EntitySource.perf │ │ │ │ ├── codemarkup_searchbyname.out │ │ │ │ ├── cxxFileXRefs.out │ │ │ │ ├── cxxFileXRefs.perf │ │ │ │ ├── cxx_entity_location.out │ │ │ │ ├── cxx_entity_location.perf │ │ │ │ ├── cxx_entity_location.platform010-clang-17.out │ │ │ │ ├── decltodeftodecl.out │ │ │ │ ├── decltodeftodecl.perf │ │ │ │ ├── enum_lowercase.out │ │ │ │ ├── enumerator_lowercase.out │ │ │ │ ├── fileentities.out │ │ │ │ ├── fileentities.platform010-clang-17.out │ │ │ │ ├── fileentityinfo.out │ │ │ │ ├── fileentityinfo.platform010-clang-17.out │ │ │ │ ├── fileentityxrefkind.out │ │ │ │ ├── fileentityxrefs.out │ │ │ │ ├── fileentityxrefsgeneric.out │ │ │ │ ├── filexrefmap.out │ │ │ │ ├── function_name_lowercase.out │ │ │ │ ├── ppPPEntityLocation.out │ │ │ │ ├── ppPPEntityLocation.perf │ │ │ │ ├── pp_PpIncludeXRefLocations.out │ │ │ │ ├── record_name_lowercase_class.out │ │ │ │ ├── record_name_lowercase_struct.out │ │ │ │ ├── record_name_lowercase_union.out │ │ │ │ ├── search_by_name_kind.out │ │ │ │ ├── search_by_name_kind.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild.out │ │ │ │ ├── search_by_name_kind_anymatch_wild.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.out │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.perf │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.out │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.perf │ │ │ │ ├── search_by_name_kind_class.out │ │ │ │ ├── search_by_name_kind_class.perf │ │ │ │ ├── search_by_name_kind_class_namespace.out │ │ │ │ ├── search_by_name_kind_class_namespace.perf │ │ │ │ ├── search_by_name_kind_enum.out │ │ │ │ ├── search_by_name_kind_enum.perf │ │ │ │ ├── search_by_name_kind_enumerator.out │ │ │ │ ├── search_by_name_kind_enumerator.perf │ │ │ │ ├── search_by_name_kind_function.out │ │ │ │ ├── search_by_name_kind_function.perf │ │ │ │ ├── search_by_name_kind_function_prefix.out │ │ │ │ ├── search_by_name_kind_function_prefix.perf │ │ │ │ ├── search_by_name_kind_namespace.out │ │ │ │ ├── search_by_name_kind_namespace.perf │ │ │ │ ├── search_by_name_kind_no_match.out │ │ │ │ ├── search_by_name_kind_no_match.perf │ │ │ │ ├── search_by_name_kind_no_match_enumerator.out │ │ │ │ ├── search_by_name_kind_no_match_enumerator.perf │ │ │ │ ├── search_by_name_kind_no_match_filtered.out │ │ │ │ ├── search_by_name_kind_no_match_filtered.perf │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_function.out │ │ │ │ ├── search_by_name_kind_nomatch_function.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.out │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.perf │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.out │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.perf │ │ │ │ ├── search_by_name_kind_nomatch_using.out │ │ │ │ ├── search_by_name_kind_nomatch_using.perf │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.out │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.perf │ │ │ │ ├── search_by_name_kind_nomatch_variable.out │ │ │ │ ├── search_by_name_kind_nomatch_variable.perf │ │ │ │ ├── search_by_name_kind_nothing_anymatch.out │ │ │ │ ├── search_by_name_kind_nothing_anymatch.perf │ │ │ │ ├── search_by_name_kind_objc_interface.out │ │ │ │ ├── search_by_name_kind_objc_interface.perf │ │ │ │ ├── search_by_name_kind_struct.out │ │ │ │ ├── search_by_name_kind_struct.perf │ │ │ │ ├── search_by_name_kind_struct_union_enum.out │ │ │ │ ├── search_by_name_kind_struct_union_enum.perf │ │ │ │ ├── search_by_name_kind_type.out │ │ │ │ ├── search_by_name_kind_type.perf │ │ │ │ ├── search_by_name_kind_union.out │ │ │ │ ├── search_by_name_kind_union.perf │ │ │ │ ├── search_by_name_kind_using.out │ │ │ │ ├── search_by_name_kind_using.perf │ │ │ │ ├── search_by_name_kind_variable.out │ │ │ │ ├── search_by_name_kind_variable.perf │ │ │ │ ├── search_by_scope.out │ │ │ │ ├── search_by_scope.perf │ │ │ │ ├── search_by_scope_record.out │ │ │ │ ├── search_by_scope_record.perf │ │ │ │ ├── search_by_scope_record_ignorecase.out │ │ │ │ ├── search_by_scope_record_ignorecase.perf │ │ │ │ ├── search_insensitive_exact_exactkind.out │ │ │ │ ├── search_insensitive_exact_exactkind.perf │ │ │ │ ├── search_insensitive_exact_nokind.out │ │ │ │ ├── search_insensitive_exact_nokind.perf │ │ │ │ ├── search_insensitive_prefix_exactkind.out │ │ │ │ ├── search_insensitive_prefix_exactkind.perf │ │ │ │ ├── search_insensitive_prefix_exactkindplus.out │ │ │ │ ├── search_insensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_insensitive_prefix_nokind.out │ │ │ │ ├── search_insensitive_prefix_nokind.perf │ │ │ │ ├── search_kind_class.out │ │ │ │ ├── search_kind_class.perf │ │ │ │ ├── search_kind_class_neg.out │ │ │ │ ├── search_kind_class_neg.perf │ │ │ │ ├── search_kind_enum.out │ │ │ │ ├── search_kind_enum.perf │ │ │ │ ├── search_kind_enum_neg.out │ │ │ │ ├── search_kind_enum_neg.perf │ │ │ │ ├── search_kind_namespace.out │ │ │ │ ├── search_kind_namespace.perf │ │ │ │ ├── search_kind_namespace_neg.out │ │ │ │ ├── search_kind_namespace_neg.perf │ │ │ │ ├── search_kind_struct.out │ │ │ │ ├── search_kind_struct.perf │ │ │ │ ├── search_kind_struct_neg.out │ │ │ │ ├── search_kind_struct_neg.perf │ │ │ │ ├── search_kind_union.out │ │ │ │ ├── search_kind_union.perf │ │ │ │ ├── search_kind_union_neg.out │ │ │ │ ├── search_kind_union_neg.perf │ │ │ │ ├── search_related_contains_child.out │ │ │ │ ├── search_related_contains_child.perf │ │ │ │ ├── search_related_contains_child_namespace.out │ │ │ │ ├── search_related_contains_child_namespace.perf │ │ │ │ ├── search_sensitive_exact_exactkind.out │ │ │ │ ├── search_sensitive_exact_exactkind.perf │ │ │ │ ├── search_sensitive_exact_exactkindplus.out │ │ │ │ ├── search_sensitive_exact_exactkindplus.perf │ │ │ │ ├── search_sensitive_exact_language.out │ │ │ │ ├── search_sensitive_exact_language.perf │ │ │ │ ├── search_sensitive_exact_multilanguage.out │ │ │ │ ├── search_sensitive_exact_multilanguage.perf │ │ │ │ ├── search_sensitive_exact_nokind.out │ │ │ │ ├── search_sensitive_exact_nokind.perf │ │ │ │ ├── search_sensitive_exact_notlanguage.out │ │ │ │ ├── search_sensitive_exact_notlanguage.perf │ │ │ │ ├── search_sensitive_prefix_exactkind.out │ │ │ │ ├── search_sensitive_prefix_exactkind.perf │ │ │ │ ├── search_sensitive_prefix_exactkindplus.out │ │ │ │ ├── search_sensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_sensitive_prefix_nokind.out │ │ │ │ ├── search_sensitive_prefix_nokind.perf │ │ │ │ ├── searchbyname.out │ │ │ │ ├── srcfiles.out │ │ │ │ ├── test.cpp │ │ │ │ ├── typealias_lowercase.out │ │ │ │ └── variable_lowercase.out │ │ │ │ ├── using-enum1 │ │ │ │ ├── CxxContainsParentEntity_decl.out │ │ │ │ ├── CxxContainsParentEntity_decl.perf │ │ │ │ ├── CxxContainsParentEntity_defn.out │ │ │ │ ├── CxxContainsParentEntity_defn.perf │ │ │ │ ├── CxxFileEntityIdl.out │ │ │ │ ├── CxxFileEntityIdl.perf │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.out │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.out │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.perf │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ ├── PpEntityTraceXRefLocations.out │ │ │ │ ├── PpEntityTraceXRefLocations.perf │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.out │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.perf │ │ │ │ ├── codemarkup_EntityReferences_decl.out │ │ │ │ ├── codemarkup_EntityReferences_decl.perf │ │ │ │ ├── codemarkup_EntityReferences_defn.out │ │ │ │ ├── codemarkup_EntityReferences_defn.perf │ │ │ │ ├── codemarkup_EntityReferences_enum.out │ │ │ │ ├── codemarkup_EntityReferences_enum.perf │ │ │ │ ├── codemarkup_EntitySource.out │ │ │ │ ├── codemarkup_EntitySource.perf │ │ │ │ ├── codemarkup_searchbyname.out │ │ │ │ ├── cxxFileXRefs.out │ │ │ │ ├── cxxFileXRefs.perf │ │ │ │ ├── cxx_entity_location.out │ │ │ │ ├── cxx_entity_location.perf │ │ │ │ ├── decltodeftodecl.out │ │ │ │ ├── decltodeftodecl.perf │ │ │ │ ├── enum_lowercase.out │ │ │ │ ├── enumerator_lowercase.out │ │ │ │ ├── fileentities.out │ │ │ │ ├── fileentityinfo.out │ │ │ │ ├── fileentityxrefkind.out │ │ │ │ ├── fileentityxrefs.out │ │ │ │ ├── fileentityxrefsgeneric.out │ │ │ │ ├── filexrefmap.out │ │ │ │ ├── function_name_lowercase.out │ │ │ │ ├── ppPPEntityLocation.out │ │ │ │ ├── ppPPEntityLocation.perf │ │ │ │ ├── pp_PpIncludeXRefLocations.out │ │ │ │ ├── record_name_lowercase_class.out │ │ │ │ ├── record_name_lowercase_struct.out │ │ │ │ ├── record_name_lowercase_union.out │ │ │ │ ├── search_by_name_kind.out │ │ │ │ ├── search_by_name_kind.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild.out │ │ │ │ ├── search_by_name_kind_anymatch_wild.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.out │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.perf │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.out │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.perf │ │ │ │ ├── search_by_name_kind_class.out │ │ │ │ ├── search_by_name_kind_class.perf │ │ │ │ ├── search_by_name_kind_class_namespace.out │ │ │ │ ├── search_by_name_kind_class_namespace.perf │ │ │ │ ├── search_by_name_kind_enum.out │ │ │ │ ├── search_by_name_kind_enum.perf │ │ │ │ ├── search_by_name_kind_enumerator.out │ │ │ │ ├── search_by_name_kind_enumerator.perf │ │ │ │ ├── search_by_name_kind_function.out │ │ │ │ ├── search_by_name_kind_function.perf │ │ │ │ ├── search_by_name_kind_function_prefix.out │ │ │ │ ├── search_by_name_kind_function_prefix.perf │ │ │ │ ├── search_by_name_kind_namespace.out │ │ │ │ ├── search_by_name_kind_namespace.perf │ │ │ │ ├── search_by_name_kind_no_match.out │ │ │ │ ├── search_by_name_kind_no_match.perf │ │ │ │ ├── search_by_name_kind_no_match_enumerator.out │ │ │ │ ├── search_by_name_kind_no_match_enumerator.perf │ │ │ │ ├── search_by_name_kind_no_match_filtered.out │ │ │ │ ├── search_by_name_kind_no_match_filtered.perf │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_function.out │ │ │ │ ├── search_by_name_kind_nomatch_function.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.out │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.perf │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.out │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.perf │ │ │ │ ├── search_by_name_kind_nomatch_using.out │ │ │ │ ├── search_by_name_kind_nomatch_using.perf │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.out │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.perf │ │ │ │ ├── search_by_name_kind_nomatch_variable.out │ │ │ │ ├── search_by_name_kind_nomatch_variable.perf │ │ │ │ ├── search_by_name_kind_nothing_anymatch.out │ │ │ │ ├── search_by_name_kind_nothing_anymatch.perf │ │ │ │ ├── search_by_name_kind_objc_interface.out │ │ │ │ ├── search_by_name_kind_objc_interface.perf │ │ │ │ ├── search_by_name_kind_struct.out │ │ │ │ ├── search_by_name_kind_struct.perf │ │ │ │ ├── search_by_name_kind_struct_union_enum.out │ │ │ │ ├── search_by_name_kind_struct_union_enum.perf │ │ │ │ ├── search_by_name_kind_type.out │ │ │ │ ├── search_by_name_kind_type.perf │ │ │ │ ├── search_by_name_kind_union.out │ │ │ │ ├── search_by_name_kind_union.perf │ │ │ │ ├── search_by_name_kind_using.out │ │ │ │ ├── search_by_name_kind_using.perf │ │ │ │ ├── search_by_name_kind_variable.out │ │ │ │ ├── search_by_name_kind_variable.perf │ │ │ │ ├── search_by_scope.out │ │ │ │ ├── search_by_scope.perf │ │ │ │ ├── search_by_scope_record.out │ │ │ │ ├── search_by_scope_record.perf │ │ │ │ ├── search_by_scope_record_ignorecase.out │ │ │ │ ├── search_by_scope_record_ignorecase.perf │ │ │ │ ├── search_insensitive_exact_exactkind.out │ │ │ │ ├── search_insensitive_exact_exactkind.perf │ │ │ │ ├── search_insensitive_exact_nokind.out │ │ │ │ ├── search_insensitive_exact_nokind.perf │ │ │ │ ├── search_insensitive_prefix_exactkind.out │ │ │ │ ├── search_insensitive_prefix_exactkind.perf │ │ │ │ ├── search_insensitive_prefix_exactkindplus.out │ │ │ │ ├── search_insensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_insensitive_prefix_nokind.out │ │ │ │ ├── search_insensitive_prefix_nokind.perf │ │ │ │ ├── search_kind_class.out │ │ │ │ ├── search_kind_class.perf │ │ │ │ ├── search_kind_class_neg.out │ │ │ │ ├── search_kind_class_neg.perf │ │ │ │ ├── search_kind_enum.out │ │ │ │ ├── search_kind_enum.perf │ │ │ │ ├── search_kind_enum_neg.out │ │ │ │ ├── search_kind_enum_neg.perf │ │ │ │ ├── search_kind_namespace.out │ │ │ │ ├── search_kind_namespace.perf │ │ │ │ ├── search_kind_namespace_neg.out │ │ │ │ ├── search_kind_namespace_neg.perf │ │ │ │ ├── search_kind_struct.out │ │ │ │ ├── search_kind_struct.perf │ │ │ │ ├── search_kind_struct_neg.out │ │ │ │ ├── search_kind_struct_neg.perf │ │ │ │ ├── search_kind_union.out │ │ │ │ ├── search_kind_union.perf │ │ │ │ ├── search_kind_union_neg.out │ │ │ │ ├── search_kind_union_neg.perf │ │ │ │ ├── search_related_contains_child.out │ │ │ │ ├── search_related_contains_child.perf │ │ │ │ ├── search_related_contains_child_namespace.out │ │ │ │ ├── search_related_contains_child_namespace.perf │ │ │ │ ├── search_sensitive_exact_exactkind.out │ │ │ │ ├── search_sensitive_exact_exactkind.perf │ │ │ │ ├── search_sensitive_exact_exactkindplus.out │ │ │ │ ├── search_sensitive_exact_exactkindplus.perf │ │ │ │ ├── search_sensitive_exact_language.out │ │ │ │ ├── search_sensitive_exact_language.perf │ │ │ │ ├── search_sensitive_exact_multilanguage.out │ │ │ │ ├── search_sensitive_exact_multilanguage.perf │ │ │ │ ├── search_sensitive_exact_nokind.out │ │ │ │ ├── search_sensitive_exact_nokind.perf │ │ │ │ ├── search_sensitive_exact_notlanguage.out │ │ │ │ ├── search_sensitive_exact_notlanguage.perf │ │ │ │ ├── search_sensitive_prefix_exactkind.out │ │ │ │ ├── search_sensitive_prefix_exactkind.perf │ │ │ │ ├── search_sensitive_prefix_exactkindplus.out │ │ │ │ ├── search_sensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_sensitive_prefix_nokind.out │ │ │ │ ├── search_sensitive_prefix_nokind.perf │ │ │ │ ├── searchbyname.out │ │ │ │ ├── srcfiles.out │ │ │ │ ├── test.cpp │ │ │ │ ├── typealias_lowercase.out │ │ │ │ └── variable_lowercase.out │ │ │ │ ├── using-enum2 │ │ │ │ ├── CxxContainsParentEntity_decl.out │ │ │ │ ├── CxxContainsParentEntity_decl.perf │ │ │ │ ├── CxxContainsParentEntity_defn.out │ │ │ │ ├── CxxContainsParentEntity_defn.perf │ │ │ │ ├── CxxFileEntityIdl.out │ │ │ │ ├── CxxFileEntityIdl.perf │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.out │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.out │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.perf │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ ├── PpEntityTraceXRefLocations.out │ │ │ │ ├── PpEntityTraceXRefLocations.perf │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.out │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.perf │ │ │ │ ├── codemarkup_EntityReferences_decl.out │ │ │ │ ├── codemarkup_EntityReferences_decl.perf │ │ │ │ ├── codemarkup_EntityReferences_defn.out │ │ │ │ ├── codemarkup_EntityReferences_defn.perf │ │ │ │ ├── codemarkup_EntityReferences_enum.out │ │ │ │ ├── codemarkup_EntityReferences_enum.perf │ │ │ │ ├── codemarkup_EntitySource.out │ │ │ │ ├── codemarkup_EntitySource.perf │ │ │ │ ├── codemarkup_searchbyname.out │ │ │ │ ├── cxxFileXRefs.out │ │ │ │ ├── cxxFileXRefs.perf │ │ │ │ ├── cxx_entity_location.out │ │ │ │ ├── cxx_entity_location.perf │ │ │ │ ├── decltodeftodecl.out │ │ │ │ ├── decltodeftodecl.perf │ │ │ │ ├── enum_lowercase.out │ │ │ │ ├── enumerator_lowercase.out │ │ │ │ ├── fileentities.out │ │ │ │ ├── fileentityinfo.out │ │ │ │ ├── fileentityxrefkind.out │ │ │ │ ├── fileentityxrefs.out │ │ │ │ ├── fileentityxrefsgeneric.out │ │ │ │ ├── filexrefmap.out │ │ │ │ ├── function_name_lowercase.out │ │ │ │ ├── ppPPEntityLocation.out │ │ │ │ ├── ppPPEntityLocation.perf │ │ │ │ ├── pp_PpIncludeXRefLocations.out │ │ │ │ ├── record_name_lowercase_class.out │ │ │ │ ├── record_name_lowercase_struct.out │ │ │ │ ├── record_name_lowercase_union.out │ │ │ │ ├── search_by_name_kind.out │ │ │ │ ├── search_by_name_kind.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild.out │ │ │ │ ├── search_by_name_kind_anymatch_wild.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.out │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.perf │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.out │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.perf │ │ │ │ ├── search_by_name_kind_class.out │ │ │ │ ├── search_by_name_kind_class.perf │ │ │ │ ├── search_by_name_kind_class_namespace.out │ │ │ │ ├── search_by_name_kind_class_namespace.perf │ │ │ │ ├── search_by_name_kind_enum.out │ │ │ │ ├── search_by_name_kind_enum.perf │ │ │ │ ├── search_by_name_kind_enumerator.out │ │ │ │ ├── search_by_name_kind_enumerator.perf │ │ │ │ ├── search_by_name_kind_function.out │ │ │ │ ├── search_by_name_kind_function.perf │ │ │ │ ├── search_by_name_kind_function_prefix.out │ │ │ │ ├── search_by_name_kind_function_prefix.perf │ │ │ │ ├── search_by_name_kind_namespace.out │ │ │ │ ├── search_by_name_kind_namespace.perf │ │ │ │ ├── search_by_name_kind_no_match.out │ │ │ │ ├── search_by_name_kind_no_match.perf │ │ │ │ ├── search_by_name_kind_no_match_enumerator.out │ │ │ │ ├── search_by_name_kind_no_match_enumerator.perf │ │ │ │ ├── search_by_name_kind_no_match_filtered.out │ │ │ │ ├── search_by_name_kind_no_match_filtered.perf │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_function.out │ │ │ │ ├── search_by_name_kind_nomatch_function.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.out │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.perf │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.out │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.perf │ │ │ │ ├── search_by_name_kind_nomatch_using.out │ │ │ │ ├── search_by_name_kind_nomatch_using.perf │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.out │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.perf │ │ │ │ ├── search_by_name_kind_nomatch_variable.out │ │ │ │ ├── search_by_name_kind_nomatch_variable.perf │ │ │ │ ├── search_by_name_kind_nothing_anymatch.out │ │ │ │ ├── search_by_name_kind_nothing_anymatch.perf │ │ │ │ ├── search_by_name_kind_objc_interface.out │ │ │ │ ├── search_by_name_kind_objc_interface.perf │ │ │ │ ├── search_by_name_kind_struct.out │ │ │ │ ├── search_by_name_kind_struct.perf │ │ │ │ ├── search_by_name_kind_struct_union_enum.out │ │ │ │ ├── search_by_name_kind_struct_union_enum.perf │ │ │ │ ├── search_by_name_kind_type.out │ │ │ │ ├── search_by_name_kind_type.perf │ │ │ │ ├── search_by_name_kind_union.out │ │ │ │ ├── search_by_name_kind_union.perf │ │ │ │ ├── search_by_name_kind_using.out │ │ │ │ ├── search_by_name_kind_using.perf │ │ │ │ ├── search_by_name_kind_variable.out │ │ │ │ ├── search_by_name_kind_variable.perf │ │ │ │ ├── search_by_scope.out │ │ │ │ ├── search_by_scope.perf │ │ │ │ ├── search_by_scope_record.out │ │ │ │ ├── search_by_scope_record.perf │ │ │ │ ├── search_by_scope_record_ignorecase.out │ │ │ │ ├── search_by_scope_record_ignorecase.perf │ │ │ │ ├── search_insensitive_exact_exactkind.out │ │ │ │ ├── search_insensitive_exact_exactkind.perf │ │ │ │ ├── search_insensitive_exact_nokind.out │ │ │ │ ├── search_insensitive_exact_nokind.perf │ │ │ │ ├── search_insensitive_prefix_exactkind.out │ │ │ │ ├── search_insensitive_prefix_exactkind.perf │ │ │ │ ├── search_insensitive_prefix_exactkindplus.out │ │ │ │ ├── search_insensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_insensitive_prefix_nokind.out │ │ │ │ ├── search_insensitive_prefix_nokind.perf │ │ │ │ ├── search_kind_class.out │ │ │ │ ├── search_kind_class.perf │ │ │ │ ├── search_kind_class_neg.out │ │ │ │ ├── search_kind_class_neg.perf │ │ │ │ ├── search_kind_enum.out │ │ │ │ ├── search_kind_enum.perf │ │ │ │ ├── search_kind_enum_neg.out │ │ │ │ ├── search_kind_enum_neg.perf │ │ │ │ ├── search_kind_namespace.out │ │ │ │ ├── search_kind_namespace.perf │ │ │ │ ├── search_kind_namespace_neg.out │ │ │ │ ├── search_kind_namespace_neg.perf │ │ │ │ ├── search_kind_struct.out │ │ │ │ ├── search_kind_struct.perf │ │ │ │ ├── search_kind_struct_neg.out │ │ │ │ ├── search_kind_struct_neg.perf │ │ │ │ ├── search_kind_union.out │ │ │ │ ├── search_kind_union.perf │ │ │ │ ├── search_kind_union_neg.out │ │ │ │ ├── search_kind_union_neg.perf │ │ │ │ ├── search_related_contains_child.out │ │ │ │ ├── search_related_contains_child.perf │ │ │ │ ├── search_related_contains_child_namespace.out │ │ │ │ ├── search_related_contains_child_namespace.perf │ │ │ │ ├── search_sensitive_exact_exactkind.out │ │ │ │ ├── search_sensitive_exact_exactkind.perf │ │ │ │ ├── search_sensitive_exact_exactkindplus.out │ │ │ │ ├── search_sensitive_exact_exactkindplus.perf │ │ │ │ ├── search_sensitive_exact_language.out │ │ │ │ ├── search_sensitive_exact_language.perf │ │ │ │ ├── search_sensitive_exact_multilanguage.out │ │ │ │ ├── search_sensitive_exact_multilanguage.perf │ │ │ │ ├── search_sensitive_exact_nokind.out │ │ │ │ ├── search_sensitive_exact_nokind.perf │ │ │ │ ├── search_sensitive_exact_notlanguage.out │ │ │ │ ├── search_sensitive_exact_notlanguage.perf │ │ │ │ ├── search_sensitive_prefix_exactkind.out │ │ │ │ ├── search_sensitive_prefix_exactkind.perf │ │ │ │ ├── search_sensitive_prefix_exactkindplus.out │ │ │ │ ├── search_sensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_sensitive_prefix_nokind.out │ │ │ │ ├── search_sensitive_prefix_nokind.perf │ │ │ │ ├── searchbyname.out │ │ │ │ ├── srcfiles.out │ │ │ │ ├── test.cpp │ │ │ │ ├── typealias_lowercase.out │ │ │ │ └── variable_lowercase.out │ │ │ │ ├── using-enum3 │ │ │ │ ├── CxxContainsParentEntity_decl.out │ │ │ │ ├── CxxContainsParentEntity_decl.perf │ │ │ │ ├── CxxContainsParentEntity_defn.out │ │ │ │ ├── CxxContainsParentEntity_defn.perf │ │ │ │ ├── CxxFileEntityIdl.out │ │ │ │ ├── CxxFileEntityIdl.perf │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.out │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.out │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.perf │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ ├── PpEntityTraceXRefLocations.out │ │ │ │ ├── PpEntityTraceXRefLocations.perf │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.out │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.perf │ │ │ │ ├── codemarkup_EntityReferences_decl.out │ │ │ │ ├── codemarkup_EntityReferences_decl.perf │ │ │ │ ├── codemarkup_EntityReferences_defn.out │ │ │ │ ├── codemarkup_EntityReferences_defn.perf │ │ │ │ ├── codemarkup_EntityReferences_enum.out │ │ │ │ ├── codemarkup_EntityReferences_enum.perf │ │ │ │ ├── codemarkup_EntitySource.out │ │ │ │ ├── codemarkup_EntitySource.perf │ │ │ │ ├── codemarkup_searchbyname.out │ │ │ │ ├── cxxFileXRefs.out │ │ │ │ ├── cxxFileXRefs.perf │ │ │ │ ├── cxx_entity_location.out │ │ │ │ ├── cxx_entity_location.perf │ │ │ │ ├── decltodeftodecl.out │ │ │ │ ├── decltodeftodecl.perf │ │ │ │ ├── enum_lowercase.out │ │ │ │ ├── enumerator_lowercase.out │ │ │ │ ├── fileentities.out │ │ │ │ ├── fileentityinfo.out │ │ │ │ ├── fileentityxrefkind.out │ │ │ │ ├── fileentityxrefs.out │ │ │ │ ├── fileentityxrefsgeneric.out │ │ │ │ ├── filexrefmap.out │ │ │ │ ├── function_name_lowercase.out │ │ │ │ ├── ppPPEntityLocation.out │ │ │ │ ├── ppPPEntityLocation.perf │ │ │ │ ├── pp_PpIncludeXRefLocations.out │ │ │ │ ├── record_name_lowercase_class.out │ │ │ │ ├── record_name_lowercase_struct.out │ │ │ │ ├── record_name_lowercase_union.out │ │ │ │ ├── search_by_name_kind.out │ │ │ │ ├── search_by_name_kind.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild.out │ │ │ │ ├── search_by_name_kind_anymatch_wild.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.out │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.perf │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.out │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.perf │ │ │ │ ├── search_by_name_kind_class.out │ │ │ │ ├── search_by_name_kind_class.perf │ │ │ │ ├── search_by_name_kind_class_namespace.out │ │ │ │ ├── search_by_name_kind_class_namespace.perf │ │ │ │ ├── search_by_name_kind_enum.out │ │ │ │ ├── search_by_name_kind_enum.perf │ │ │ │ ├── search_by_name_kind_enumerator.out │ │ │ │ ├── search_by_name_kind_enumerator.perf │ │ │ │ ├── search_by_name_kind_function.out │ │ │ │ ├── search_by_name_kind_function.perf │ │ │ │ ├── search_by_name_kind_function_prefix.out │ │ │ │ ├── search_by_name_kind_function_prefix.perf │ │ │ │ ├── search_by_name_kind_namespace.out │ │ │ │ ├── search_by_name_kind_namespace.perf │ │ │ │ ├── search_by_name_kind_no_match.out │ │ │ │ ├── search_by_name_kind_no_match.perf │ │ │ │ ├── search_by_name_kind_no_match_enumerator.out │ │ │ │ ├── search_by_name_kind_no_match_enumerator.perf │ │ │ │ ├── search_by_name_kind_no_match_filtered.out │ │ │ │ ├── search_by_name_kind_no_match_filtered.perf │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_function.out │ │ │ │ ├── search_by_name_kind_nomatch_function.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.out │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.perf │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.out │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.perf │ │ │ │ ├── search_by_name_kind_nomatch_using.out │ │ │ │ ├── search_by_name_kind_nomatch_using.perf │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.out │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.perf │ │ │ │ ├── search_by_name_kind_nomatch_variable.out │ │ │ │ ├── search_by_name_kind_nomatch_variable.perf │ │ │ │ ├── search_by_name_kind_nothing_anymatch.out │ │ │ │ ├── search_by_name_kind_nothing_anymatch.perf │ │ │ │ ├── search_by_name_kind_objc_interface.out │ │ │ │ ├── search_by_name_kind_objc_interface.perf │ │ │ │ ├── search_by_name_kind_struct.out │ │ │ │ ├── search_by_name_kind_struct.perf │ │ │ │ ├── search_by_name_kind_struct_union_enum.out │ │ │ │ ├── search_by_name_kind_struct_union_enum.perf │ │ │ │ ├── search_by_name_kind_type.out │ │ │ │ ├── search_by_name_kind_type.perf │ │ │ │ ├── search_by_name_kind_union.out │ │ │ │ ├── search_by_name_kind_union.perf │ │ │ │ ├── search_by_name_kind_using.out │ │ │ │ ├── search_by_name_kind_using.perf │ │ │ │ ├── search_by_name_kind_variable.out │ │ │ │ ├── search_by_name_kind_variable.perf │ │ │ │ ├── search_by_scope.out │ │ │ │ ├── search_by_scope.perf │ │ │ │ ├── search_by_scope_record.out │ │ │ │ ├── search_by_scope_record.perf │ │ │ │ ├── search_by_scope_record_ignorecase.out │ │ │ │ ├── search_by_scope_record_ignorecase.perf │ │ │ │ ├── search_insensitive_exact_exactkind.out │ │ │ │ ├── search_insensitive_exact_exactkind.perf │ │ │ │ ├── search_insensitive_exact_nokind.out │ │ │ │ ├── search_insensitive_exact_nokind.perf │ │ │ │ ├── search_insensitive_prefix_exactkind.out │ │ │ │ ├── search_insensitive_prefix_exactkind.perf │ │ │ │ ├── search_insensitive_prefix_exactkindplus.out │ │ │ │ ├── search_insensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_insensitive_prefix_nokind.out │ │ │ │ ├── search_insensitive_prefix_nokind.perf │ │ │ │ ├── search_kind_class.out │ │ │ │ ├── search_kind_class.perf │ │ │ │ ├── search_kind_class_neg.out │ │ │ │ ├── search_kind_class_neg.perf │ │ │ │ ├── search_kind_enum.out │ │ │ │ ├── search_kind_enum.perf │ │ │ │ ├── search_kind_enum_neg.out │ │ │ │ ├── search_kind_enum_neg.perf │ │ │ │ ├── search_kind_namespace.out │ │ │ │ ├── search_kind_namespace.perf │ │ │ │ ├── search_kind_namespace_neg.out │ │ │ │ ├── search_kind_namespace_neg.perf │ │ │ │ ├── search_kind_struct.out │ │ │ │ ├── search_kind_struct.perf │ │ │ │ ├── search_kind_struct_neg.out │ │ │ │ ├── search_kind_struct_neg.perf │ │ │ │ ├── search_kind_union.out │ │ │ │ ├── search_kind_union.perf │ │ │ │ ├── search_kind_union_neg.out │ │ │ │ ├── search_kind_union_neg.perf │ │ │ │ ├── search_related_contains_child.out │ │ │ │ ├── search_related_contains_child.perf │ │ │ │ ├── search_related_contains_child_namespace.out │ │ │ │ ├── search_related_contains_child_namespace.perf │ │ │ │ ├── search_sensitive_exact_exactkind.out │ │ │ │ ├── search_sensitive_exact_exactkind.perf │ │ │ │ ├── search_sensitive_exact_exactkindplus.out │ │ │ │ ├── search_sensitive_exact_exactkindplus.perf │ │ │ │ ├── search_sensitive_exact_language.out │ │ │ │ ├── search_sensitive_exact_language.perf │ │ │ │ ├── search_sensitive_exact_multilanguage.out │ │ │ │ ├── search_sensitive_exact_multilanguage.perf │ │ │ │ ├── search_sensitive_exact_nokind.out │ │ │ │ ├── search_sensitive_exact_nokind.perf │ │ │ │ ├── search_sensitive_exact_notlanguage.out │ │ │ │ ├── search_sensitive_exact_notlanguage.perf │ │ │ │ ├── search_sensitive_prefix_exactkind.out │ │ │ │ ├── search_sensitive_prefix_exactkind.perf │ │ │ │ ├── search_sensitive_prefix_exactkindplus.out │ │ │ │ ├── search_sensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_sensitive_prefix_nokind.out │ │ │ │ ├── search_sensitive_prefix_nokind.perf │ │ │ │ ├── searchbyname.out │ │ │ │ ├── srcfiles.out │ │ │ │ ├── test.cpp │ │ │ │ ├── typealias_lowercase.out │ │ │ │ └── variable_lowercase.out │ │ │ │ ├── using-lambda1 │ │ │ │ ├── CxxContainsParentEntity_decl.out │ │ │ │ ├── CxxContainsParentEntity_decl.perf │ │ │ │ ├── CxxContainsParentEntity_defn.out │ │ │ │ ├── CxxContainsParentEntity_defn.perf │ │ │ │ ├── CxxFileEntityIdl.out │ │ │ │ ├── CxxFileEntityIdl.perf │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.out │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.out │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.perf │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ ├── PpEntityTraceXRefLocations.out │ │ │ │ ├── PpEntityTraceXRefLocations.perf │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.out │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.perf │ │ │ │ ├── codemarkup_EntityReferences_decl.out │ │ │ │ ├── codemarkup_EntityReferences_decl.perf │ │ │ │ ├── codemarkup_EntityReferences_defn.out │ │ │ │ ├── codemarkup_EntityReferences_defn.perf │ │ │ │ ├── codemarkup_EntityReferences_enum.out │ │ │ │ ├── codemarkup_EntityReferences_enum.perf │ │ │ │ ├── codemarkup_EntitySource.out │ │ │ │ ├── codemarkup_EntitySource.perf │ │ │ │ ├── codemarkup_searchbyname.out │ │ │ │ ├── cxxFileXRefs.out │ │ │ │ ├── cxxFileXRefs.perf │ │ │ │ ├── cxx_entity_location.out │ │ │ │ ├── cxx_entity_location.perf │ │ │ │ ├── decltodeftodecl.out │ │ │ │ ├── decltodeftodecl.perf │ │ │ │ ├── enum_lowercase.out │ │ │ │ ├── enumerator_lowercase.out │ │ │ │ ├── fileentities.out │ │ │ │ ├── fileentityinfo.out │ │ │ │ ├── fileentityxrefkind.out │ │ │ │ ├── fileentityxrefs.out │ │ │ │ ├── fileentityxrefsgeneric.out │ │ │ │ ├── filexrefmap.out │ │ │ │ ├── function_name_lowercase.out │ │ │ │ ├── ppPPEntityLocation.out │ │ │ │ ├── ppPPEntityLocation.perf │ │ │ │ ├── pp_PpIncludeXRefLocations.out │ │ │ │ ├── record_name_lowercase_class.out │ │ │ │ ├── record_name_lowercase_struct.out │ │ │ │ ├── record_name_lowercase_union.out │ │ │ │ ├── search_by_name_kind.out │ │ │ │ ├── search_by_name_kind.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild.out │ │ │ │ ├── search_by_name_kind_anymatch_wild.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.out │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.perf │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.out │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.perf │ │ │ │ ├── search_by_name_kind_class.out │ │ │ │ ├── search_by_name_kind_class.perf │ │ │ │ ├── search_by_name_kind_class_namespace.out │ │ │ │ ├── search_by_name_kind_class_namespace.perf │ │ │ │ ├── search_by_name_kind_enum.out │ │ │ │ ├── search_by_name_kind_enum.perf │ │ │ │ ├── search_by_name_kind_enumerator.out │ │ │ │ ├── search_by_name_kind_enumerator.perf │ │ │ │ ├── search_by_name_kind_function.out │ │ │ │ ├── search_by_name_kind_function.perf │ │ │ │ ├── search_by_name_kind_function_prefix.out │ │ │ │ ├── search_by_name_kind_function_prefix.perf │ │ │ │ ├── search_by_name_kind_namespace.out │ │ │ │ ├── search_by_name_kind_namespace.perf │ │ │ │ ├── search_by_name_kind_no_match.out │ │ │ │ ├── search_by_name_kind_no_match.perf │ │ │ │ ├── search_by_name_kind_no_match_enumerator.out │ │ │ │ ├── search_by_name_kind_no_match_enumerator.perf │ │ │ │ ├── search_by_name_kind_no_match_filtered.out │ │ │ │ ├── search_by_name_kind_no_match_filtered.perf │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_function.out │ │ │ │ ├── search_by_name_kind_nomatch_function.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.out │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.perf │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.out │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.perf │ │ │ │ ├── search_by_name_kind_nomatch_using.out │ │ │ │ ├── search_by_name_kind_nomatch_using.perf │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.out │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.perf │ │ │ │ ├── search_by_name_kind_nomatch_variable.out │ │ │ │ ├── search_by_name_kind_nomatch_variable.perf │ │ │ │ ├── search_by_name_kind_nothing_anymatch.out │ │ │ │ ├── search_by_name_kind_nothing_anymatch.perf │ │ │ │ ├── search_by_name_kind_objc_interface.out │ │ │ │ ├── search_by_name_kind_objc_interface.perf │ │ │ │ ├── search_by_name_kind_struct.out │ │ │ │ ├── search_by_name_kind_struct.perf │ │ │ │ ├── search_by_name_kind_struct_union_enum.out │ │ │ │ ├── search_by_name_kind_struct_union_enum.perf │ │ │ │ ├── search_by_name_kind_type.out │ │ │ │ ├── search_by_name_kind_type.perf │ │ │ │ ├── search_by_name_kind_union.out │ │ │ │ ├── search_by_name_kind_union.perf │ │ │ │ ├── search_by_name_kind_using.out │ │ │ │ ├── search_by_name_kind_using.perf │ │ │ │ ├── search_by_name_kind_variable.out │ │ │ │ ├── search_by_name_kind_variable.perf │ │ │ │ ├── search_by_scope.out │ │ │ │ ├── search_by_scope.perf │ │ │ │ ├── search_by_scope_record.out │ │ │ │ ├── search_by_scope_record.perf │ │ │ │ ├── search_by_scope_record_ignorecase.out │ │ │ │ ├── search_by_scope_record_ignorecase.perf │ │ │ │ ├── search_insensitive_exact_exactkind.out │ │ │ │ ├── search_insensitive_exact_exactkind.perf │ │ │ │ ├── search_insensitive_exact_nokind.out │ │ │ │ ├── search_insensitive_exact_nokind.perf │ │ │ │ ├── search_insensitive_prefix_exactkind.out │ │ │ │ ├── search_insensitive_prefix_exactkind.perf │ │ │ │ ├── search_insensitive_prefix_exactkindplus.out │ │ │ │ ├── search_insensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_insensitive_prefix_nokind.out │ │ │ │ ├── search_insensitive_prefix_nokind.perf │ │ │ │ ├── search_kind_class.out │ │ │ │ ├── search_kind_class.perf │ │ │ │ ├── search_kind_class_neg.out │ │ │ │ ├── search_kind_class_neg.perf │ │ │ │ ├── search_kind_enum.out │ │ │ │ ├── search_kind_enum.perf │ │ │ │ ├── search_kind_enum_neg.out │ │ │ │ ├── search_kind_enum_neg.perf │ │ │ │ ├── search_kind_namespace.out │ │ │ │ ├── search_kind_namespace.perf │ │ │ │ ├── search_kind_namespace_neg.out │ │ │ │ ├── search_kind_namespace_neg.perf │ │ │ │ ├── search_kind_struct.out │ │ │ │ ├── search_kind_struct.perf │ │ │ │ ├── search_kind_struct_neg.out │ │ │ │ ├── search_kind_struct_neg.perf │ │ │ │ ├── search_kind_union.out │ │ │ │ ├── search_kind_union.perf │ │ │ │ ├── search_kind_union_neg.out │ │ │ │ ├── search_kind_union_neg.perf │ │ │ │ ├── search_related_contains_child.out │ │ │ │ ├── search_related_contains_child.perf │ │ │ │ ├── search_related_contains_child_namespace.out │ │ │ │ ├── search_related_contains_child_namespace.perf │ │ │ │ ├── search_sensitive_exact_exactkind.out │ │ │ │ ├── search_sensitive_exact_exactkind.perf │ │ │ │ ├── search_sensitive_exact_exactkindplus.out │ │ │ │ ├── search_sensitive_exact_exactkindplus.perf │ │ │ │ ├── search_sensitive_exact_language.out │ │ │ │ ├── search_sensitive_exact_language.perf │ │ │ │ ├── search_sensitive_exact_multilanguage.out │ │ │ │ ├── search_sensitive_exact_multilanguage.perf │ │ │ │ ├── search_sensitive_exact_nokind.out │ │ │ │ ├── search_sensitive_exact_nokind.perf │ │ │ │ ├── search_sensitive_exact_notlanguage.out │ │ │ │ ├── search_sensitive_exact_notlanguage.perf │ │ │ │ ├── search_sensitive_prefix_exactkind.out │ │ │ │ ├── search_sensitive_prefix_exactkind.perf │ │ │ │ ├── search_sensitive_prefix_exactkindplus.out │ │ │ │ ├── search_sensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_sensitive_prefix_nokind.out │ │ │ │ ├── search_sensitive_prefix_nokind.perf │ │ │ │ ├── searchbyname.out │ │ │ │ ├── srcfiles.out │ │ │ │ ├── test.cpp │ │ │ │ ├── typealias_lowercase.out │ │ │ │ └── variable_lowercase.out │ │ │ │ ├── var1 │ │ │ │ ├── CxxContainsParentEntity_decl.out │ │ │ │ ├── CxxContainsParentEntity_decl.perf │ │ │ │ ├── CxxContainsParentEntity_decl.platform010-clang-17.out │ │ │ │ ├── CxxContainsParentEntity_defn.out │ │ │ │ ├── CxxContainsParentEntity_defn.perf │ │ │ │ ├── CxxContainsParentEntity_defn.platform010-clang-17.out │ │ │ │ ├── CxxFileEntityIdl.out │ │ │ │ ├── CxxFileEntityIdl.perf │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.out │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.out │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.platform010-clang-17.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.perf │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ ├── CxxPpResolveTraceLocations.platform010-clang-17.out │ │ │ │ ├── PpEntityTraceXRefLocations.out │ │ │ │ ├── PpEntityTraceXRefLocations.perf │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.out │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.perf │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.platform010-clang-17.out │ │ │ │ ├── codemarkup_EntityReferences_decl.out │ │ │ │ ├── codemarkup_EntityReferences_decl.perf │ │ │ │ ├── codemarkup_EntityReferences_decl.platform010-clang-17.out │ │ │ │ ├── codemarkup_EntityReferences_defn.out │ │ │ │ ├── codemarkup_EntityReferences_defn.perf │ │ │ │ ├── codemarkup_EntityReferences_defn.platform010-clang-17.out │ │ │ │ ├── codemarkup_EntityReferences_enum.out │ │ │ │ ├── codemarkup_EntityReferences_enum.perf │ │ │ │ ├── codemarkup_EntitySource.out │ │ │ │ ├── codemarkup_EntitySource.perf │ │ │ │ ├── codemarkup_EntitySource.platform010-clang-17.out │ │ │ │ ├── codemarkup_searchbyname.out │ │ │ │ ├── codemarkup_searchbyname.platform010-clang-17.out │ │ │ │ ├── cxxFileXRefs.out │ │ │ │ ├── cxxFileXRefs.perf │ │ │ │ ├── cxxFileXRefs.platform010-clang-17.out │ │ │ │ ├── cxx_entity_location.out │ │ │ │ ├── cxx_entity_location.perf │ │ │ │ ├── cxx_entity_location.platform010-clang-17.out │ │ │ │ ├── decltodeftodecl.out │ │ │ │ ├── decltodeftodecl.perf │ │ │ │ ├── decltodeftodecl.platform010-clang-17.out │ │ │ │ ├── enum_lowercase.out │ │ │ │ ├── enumerator_lowercase.out │ │ │ │ ├── fileentities.out │ │ │ │ ├── fileentities.platform010-clang-17.out │ │ │ │ ├── fileentityinfo.out │ │ │ │ ├── fileentityinfo.platform010-clang-17.out │ │ │ │ ├── fileentityxrefkind.out │ │ │ │ ├── fileentityxrefkind.platform010-clang-17.out │ │ │ │ ├── fileentityxrefs.out │ │ │ │ ├── fileentityxrefs.platform010-clang-17.out │ │ │ │ ├── fileentityxrefsgeneric.out │ │ │ │ ├── fileentityxrefsgeneric.platform010-clang-17.out │ │ │ │ ├── filexrefmap.out │ │ │ │ ├── filexrefmap.platform010-clang-17.out │ │ │ │ ├── function_name_lowercase.out │ │ │ │ ├── ppPPEntityLocation.out │ │ │ │ ├── ppPPEntityLocation.perf │ │ │ │ ├── pp_PpIncludeXRefLocations.out │ │ │ │ ├── record_name_lowercase_class.out │ │ │ │ ├── record_name_lowercase_struct.out │ │ │ │ ├── record_name_lowercase_union.out │ │ │ │ ├── search_by_name_kind.out │ │ │ │ ├── search_by_name_kind.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild.out │ │ │ │ ├── search_by_name_kind_anymatch_wild.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild.platform010-clang-17.out │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.out │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.platform010-clang-17.out │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.out │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.perf │ │ │ │ ├── search_by_name_kind_class.out │ │ │ │ ├── search_by_name_kind_class.perf │ │ │ │ ├── search_by_name_kind_class_namespace.out │ │ │ │ ├── search_by_name_kind_class_namespace.perf │ │ │ │ ├── search_by_name_kind_enum.out │ │ │ │ ├── search_by_name_kind_enum.perf │ │ │ │ ├── search_by_name_kind_enumerator.out │ │ │ │ ├── search_by_name_kind_enumerator.perf │ │ │ │ ├── search_by_name_kind_function.out │ │ │ │ ├── search_by_name_kind_function.perf │ │ │ │ ├── search_by_name_kind_function_prefix.out │ │ │ │ ├── search_by_name_kind_function_prefix.perf │ │ │ │ ├── search_by_name_kind_namespace.out │ │ │ │ ├── search_by_name_kind_namespace.perf │ │ │ │ ├── search_by_name_kind_no_match.out │ │ │ │ ├── search_by_name_kind_no_match.perf │ │ │ │ ├── search_by_name_kind_no_match_enumerator.out │ │ │ │ ├── search_by_name_kind_no_match_enumerator.perf │ │ │ │ ├── search_by_name_kind_no_match_filtered.out │ │ │ │ ├── search_by_name_kind_no_match_filtered.perf │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_function.out │ │ │ │ ├── search_by_name_kind_nomatch_function.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.out │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.perf │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.out │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.perf │ │ │ │ ├── search_by_name_kind_nomatch_using.out │ │ │ │ ├── search_by_name_kind_nomatch_using.perf │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.out │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.perf │ │ │ │ ├── search_by_name_kind_nomatch_variable.out │ │ │ │ ├── search_by_name_kind_nomatch_variable.perf │ │ │ │ ├── search_by_name_kind_nothing_anymatch.out │ │ │ │ ├── search_by_name_kind_nothing_anymatch.perf │ │ │ │ ├── search_by_name_kind_objc_interface.out │ │ │ │ ├── search_by_name_kind_objc_interface.perf │ │ │ │ ├── search_by_name_kind_struct.out │ │ │ │ ├── search_by_name_kind_struct.perf │ │ │ │ ├── search_by_name_kind_struct_union_enum.out │ │ │ │ ├── search_by_name_kind_struct_union_enum.perf │ │ │ │ ├── search_by_name_kind_type.out │ │ │ │ ├── search_by_name_kind_type.perf │ │ │ │ ├── search_by_name_kind_union.out │ │ │ │ ├── search_by_name_kind_union.perf │ │ │ │ ├── search_by_name_kind_using.out │ │ │ │ ├── search_by_name_kind_using.perf │ │ │ │ ├── search_by_name_kind_variable.out │ │ │ │ ├── search_by_name_kind_variable.perf │ │ │ │ ├── search_by_scope.out │ │ │ │ ├── search_by_scope.perf │ │ │ │ ├── search_by_scope_record.out │ │ │ │ ├── search_by_scope_record.perf │ │ │ │ ├── search_by_scope_record_ignorecase.out │ │ │ │ ├── search_by_scope_record_ignorecase.perf │ │ │ │ ├── search_insensitive_exact_exactkind.out │ │ │ │ ├── search_insensitive_exact_exactkind.perf │ │ │ │ ├── search_insensitive_exact_nokind.out │ │ │ │ ├── search_insensitive_exact_nokind.perf │ │ │ │ ├── search_insensitive_prefix_exactkind.out │ │ │ │ ├── search_insensitive_prefix_exactkind.perf │ │ │ │ ├── search_insensitive_prefix_exactkindplus.out │ │ │ │ ├── search_insensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_insensitive_prefix_nokind.out │ │ │ │ ├── search_insensitive_prefix_nokind.perf │ │ │ │ ├── search_kind_class.out │ │ │ │ ├── search_kind_class.perf │ │ │ │ ├── search_kind_class_neg.out │ │ │ │ ├── search_kind_class_neg.perf │ │ │ │ ├── search_kind_enum.out │ │ │ │ ├── search_kind_enum.perf │ │ │ │ ├── search_kind_enum_neg.out │ │ │ │ ├── search_kind_enum_neg.perf │ │ │ │ ├── search_kind_namespace.out │ │ │ │ ├── search_kind_namespace.perf │ │ │ │ ├── search_kind_namespace_neg.out │ │ │ │ ├── search_kind_namespace_neg.perf │ │ │ │ ├── search_kind_struct.out │ │ │ │ ├── search_kind_struct.perf │ │ │ │ ├── search_kind_struct_neg.out │ │ │ │ ├── search_kind_struct_neg.perf │ │ │ │ ├── search_kind_union.out │ │ │ │ ├── search_kind_union.perf │ │ │ │ ├── search_kind_union_neg.out │ │ │ │ ├── search_kind_union_neg.perf │ │ │ │ ├── search_related_contains_child.out │ │ │ │ ├── search_related_contains_child.perf │ │ │ │ ├── search_related_contains_child.platform010-clang-17.out │ │ │ │ ├── search_related_contains_child_namespace.out │ │ │ │ ├── search_related_contains_child_namespace.perf │ │ │ │ ├── search_sensitive_exact_exactkind.out │ │ │ │ ├── search_sensitive_exact_exactkind.perf │ │ │ │ ├── search_sensitive_exact_exactkindplus.out │ │ │ │ ├── search_sensitive_exact_exactkindplus.perf │ │ │ │ ├── search_sensitive_exact_language.out │ │ │ │ ├── search_sensitive_exact_language.perf │ │ │ │ ├── search_sensitive_exact_multilanguage.out │ │ │ │ ├── search_sensitive_exact_multilanguage.perf │ │ │ │ ├── search_sensitive_exact_nokind.out │ │ │ │ ├── search_sensitive_exact_nokind.perf │ │ │ │ ├── search_sensitive_exact_notlanguage.out │ │ │ │ ├── search_sensitive_exact_notlanguage.perf │ │ │ │ ├── search_sensitive_prefix_exactkind.out │ │ │ │ ├── search_sensitive_prefix_exactkind.perf │ │ │ │ ├── search_sensitive_prefix_exactkindplus.out │ │ │ │ ├── search_sensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_sensitive_prefix_nokind.out │ │ │ │ ├── search_sensitive_prefix_nokind.perf │ │ │ │ ├── searchbyname.out │ │ │ │ ├── searchbyname.platform010-clang-17.out │ │ │ │ ├── srcfiles.out │ │ │ │ ├── test.cpp │ │ │ │ ├── typealias_lowercase.out │ │ │ │ └── variable_lowercase.out │ │ │ │ ├── var2 │ │ │ │ ├── CxxContainsParentEntity_decl.out │ │ │ │ ├── CxxContainsParentEntity_decl.perf │ │ │ │ ├── CxxContainsParentEntity_defn.out │ │ │ │ ├── CxxContainsParentEntity_defn.perf │ │ │ │ ├── CxxFileEntityIdl.out │ │ │ │ ├── CxxFileEntityIdl.perf │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.out │ │ │ │ ├── CxxFileEntitySpellingXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.out │ │ │ │ ├── CxxFileEntityXMapFixedXRefLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclLocations.perf │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.out │ │ │ │ ├── CxxFileEntityXMapVariableXRefDeclToDefs.perf │ │ │ │ ├── CxxPpResolveTraceLocations.out │ │ │ │ ├── CxxPpResolveTraceLocations.perf │ │ │ │ ├── PpEntityTraceXRefLocations.out │ │ │ │ ├── PpEntityTraceXRefLocations.perf │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.out │ │ │ │ ├── codemarkup_CxxEntityDefinitionBase.perf │ │ │ │ ├── codemarkup_EntityReferences_decl.out │ │ │ │ ├── codemarkup_EntityReferences_decl.perf │ │ │ │ ├── codemarkup_EntityReferences_defn.out │ │ │ │ ├── codemarkup_EntityReferences_defn.perf │ │ │ │ ├── codemarkup_EntityReferences_enum.out │ │ │ │ ├── codemarkup_EntityReferences_enum.perf │ │ │ │ ├── codemarkup_EntitySource.out │ │ │ │ ├── codemarkup_EntitySource.perf │ │ │ │ ├── codemarkup_searchbyname.out │ │ │ │ ├── cxxFileXRefs.out │ │ │ │ ├── cxxFileXRefs.perf │ │ │ │ ├── cxx_entity_location.out │ │ │ │ ├── cxx_entity_location.perf │ │ │ │ ├── decltodeftodecl.out │ │ │ │ ├── decltodeftodecl.perf │ │ │ │ ├── enum_lowercase.out │ │ │ │ ├── enumerator_lowercase.out │ │ │ │ ├── fileentities.out │ │ │ │ ├── fileentityinfo.out │ │ │ │ ├── fileentityxrefkind.out │ │ │ │ ├── fileentityxrefs.out │ │ │ │ ├── fileentityxrefsgeneric.out │ │ │ │ ├── filexrefmap.out │ │ │ │ ├── function_name_lowercase.out │ │ │ │ ├── ppPPEntityLocation.out │ │ │ │ ├── ppPPEntityLocation.perf │ │ │ │ ├── pp_PpIncludeXRefLocations.out │ │ │ │ ├── record_name_lowercase_class.out │ │ │ │ ├── record_name_lowercase_struct.out │ │ │ │ ├── record_name_lowercase_union.out │ │ │ │ ├── search_by_name_kind.out │ │ │ │ ├── search_by_name_kind.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild.out │ │ │ │ ├── search_by_name_kind_anymatch_wild.perf │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.out │ │ │ │ ├── search_by_name_kind_anymatch_wild_maybe.perf │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.out │ │ │ │ ├── search_by_name_kind_anyrealkind_prefix.perf │ │ │ │ ├── search_by_name_kind_class.out │ │ │ │ ├── search_by_name_kind_class.perf │ │ │ │ ├── search_by_name_kind_class_namespace.out │ │ │ │ ├── search_by_name_kind_class_namespace.perf │ │ │ │ ├── search_by_name_kind_enum.out │ │ │ │ ├── search_by_name_kind_enum.perf │ │ │ │ ├── search_by_name_kind_enumerator.out │ │ │ │ ├── search_by_name_kind_enumerator.perf │ │ │ │ ├── search_by_name_kind_function.out │ │ │ │ ├── search_by_name_kind_function.perf │ │ │ │ ├── search_by_name_kind_function_prefix.out │ │ │ │ ├── search_by_name_kind_function_prefix.perf │ │ │ │ ├── search_by_name_kind_namespace.out │ │ │ │ ├── search_by_name_kind_namespace.perf │ │ │ │ ├── search_by_name_kind_no_match.out │ │ │ │ ├── search_by_name_kind_no_match.perf │ │ │ │ ├── search_by_name_kind_no_match_enumerator.out │ │ │ │ ├── search_by_name_kind_no_match_enumerator.perf │ │ │ │ ├── search_by_name_kind_no_match_filtered.out │ │ │ │ ├── search_by_name_kind_no_match_filtered.perf │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_by_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_function.out │ │ │ │ ├── search_by_name_kind_nomatch_function.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind.out │ │ │ │ ├── search_by_name_kind_nomatch_kind.perf │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.out │ │ │ │ ├── search_by_name_kind_nomatch_kind_interface.perf │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.out │ │ │ │ ├── search_by_name_kind_nomatch_otherkind.perf │ │ │ │ ├── search_by_name_kind_nomatch_using.out │ │ │ │ ├── search_by_name_kind_nomatch_using.perf │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.out │ │ │ │ ├── search_by_name_kind_nomatch_var_not_container.perf │ │ │ │ ├── search_by_name_kind_nomatch_variable.out │ │ │ │ ├── search_by_name_kind_nomatch_variable.perf │ │ │ │ ├── search_by_name_kind_nothing_anymatch.out │ │ │ │ ├── search_by_name_kind_nothing_anymatch.perf │ │ │ │ ├── search_by_name_kind_objc_interface.out │ │ │ │ ├── search_by_name_kind_objc_interface.perf │ │ │ │ ├── search_by_name_kind_struct.out │ │ │ │ ├── search_by_name_kind_struct.perf │ │ │ │ ├── search_by_name_kind_struct_union_enum.out │ │ │ │ ├── search_by_name_kind_struct_union_enum.perf │ │ │ │ ├── search_by_name_kind_type.out │ │ │ │ ├── search_by_name_kind_type.perf │ │ │ │ ├── search_by_name_kind_union.out │ │ │ │ ├── search_by_name_kind_union.perf │ │ │ │ ├── search_by_name_kind_using.out │ │ │ │ ├── search_by_name_kind_using.perf │ │ │ │ ├── search_by_name_kind_variable.out │ │ │ │ ├── search_by_name_kind_variable.perf │ │ │ │ ├── search_by_scope.out │ │ │ │ ├── search_by_scope.perf │ │ │ │ ├── search_by_scope_record.out │ │ │ │ ├── search_by_scope_record.perf │ │ │ │ ├── search_by_scope_record_ignorecase.out │ │ │ │ ├── search_by_scope_record_ignorecase.perf │ │ │ │ ├── search_insensitive_exact_exactkind.out │ │ │ │ ├── search_insensitive_exact_exactkind.perf │ │ │ │ ├── search_insensitive_exact_nokind.out │ │ │ │ ├── search_insensitive_exact_nokind.perf │ │ │ │ ├── search_insensitive_prefix_exactkind.out │ │ │ │ ├── search_insensitive_prefix_exactkind.perf │ │ │ │ ├── search_insensitive_prefix_exactkindplus.out │ │ │ │ ├── search_insensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_insensitive_prefix_nokind.out │ │ │ │ ├── search_insensitive_prefix_nokind.perf │ │ │ │ ├── search_kind_class.out │ │ │ │ ├── search_kind_class.perf │ │ │ │ ├── search_kind_class_neg.out │ │ │ │ ├── search_kind_class_neg.perf │ │ │ │ ├── search_kind_enum.out │ │ │ │ ├── search_kind_enum.perf │ │ │ │ ├── search_kind_enum_neg.out │ │ │ │ ├── search_kind_enum_neg.perf │ │ │ │ ├── search_kind_namespace.out │ │ │ │ ├── search_kind_namespace.perf │ │ │ │ ├── search_kind_namespace_neg.out │ │ │ │ ├── search_kind_namespace_neg.perf │ │ │ │ ├── search_kind_struct.out │ │ │ │ ├── search_kind_struct.perf │ │ │ │ ├── search_kind_struct_neg.out │ │ │ │ ├── search_kind_struct_neg.perf │ │ │ │ ├── search_kind_union.out │ │ │ │ ├── search_kind_union.perf │ │ │ │ ├── search_kind_union_neg.out │ │ │ │ ├── search_kind_union_neg.perf │ │ │ │ ├── search_related_contains_child.out │ │ │ │ ├── search_related_contains_child.perf │ │ │ │ ├── search_related_contains_child_namespace.out │ │ │ │ ├── search_related_contains_child_namespace.perf │ │ │ │ ├── search_sensitive_exact_exactkind.out │ │ │ │ ├── search_sensitive_exact_exactkind.perf │ │ │ │ ├── search_sensitive_exact_exactkindplus.out │ │ │ │ ├── search_sensitive_exact_exactkindplus.perf │ │ │ │ ├── search_sensitive_exact_language.out │ │ │ │ ├── search_sensitive_exact_language.perf │ │ │ │ ├── search_sensitive_exact_multilanguage.out │ │ │ │ ├── search_sensitive_exact_multilanguage.perf │ │ │ │ ├── search_sensitive_exact_nokind.out │ │ │ │ ├── search_sensitive_exact_nokind.perf │ │ │ │ ├── search_sensitive_exact_notlanguage.out │ │ │ │ ├── search_sensitive_exact_notlanguage.perf │ │ │ │ ├── search_sensitive_prefix_exactkind.out │ │ │ │ ├── search_sensitive_prefix_exactkind.perf │ │ │ │ ├── search_sensitive_prefix_exactkindplus.out │ │ │ │ ├── search_sensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_sensitive_prefix_nokind.out │ │ │ │ ├── search_sensitive_prefix_nokind.perf │ │ │ │ ├── searchbyname.out │ │ │ │ ├── srcfiles.out │ │ │ │ ├── test.cpp │ │ │ │ ├── typealias_lowercase.out │ │ │ │ └── variable_lowercase.out │ │ │ │ ├── variable_lowercase.out │ │ │ │ └── variable_lowercase.query │ │ │ ├── erlang │ │ │ └── cases │ │ │ │ └── basic │ │ │ │ ├── .elp.toml │ │ │ │ ├── entity_comments.out │ │ │ │ ├── entity_comments.perf │ │ │ │ ├── entity_comments.query │ │ │ │ ├── entity_info.out │ │ │ │ ├── entity_info.perf │ │ │ │ ├── entity_info.query │ │ │ │ ├── entity_kind.out │ │ │ │ ├── entity_kind.perf │ │ │ │ ├── entity_kind.query │ │ │ │ ├── entity_location.out │ │ │ │ ├── entity_location.perf │ │ │ │ ├── entity_location.query │ │ │ │ ├── entity_uses.out │ │ │ │ ├── entity_uses.perf │ │ │ │ ├── entity_uses.query │ │ │ │ ├── resolve_location.out │ │ │ │ ├── resolve_location.perf │ │ │ │ └── resolve_location.query │ │ │ ├── flow │ │ │ ├── Glean │ │ │ │ └── Regression │ │ │ │ │ └── Flow │ │ │ │ │ └── Main.hs │ │ │ └── cases │ │ │ │ ├── search │ │ │ │ ├── .flowconfig │ │ │ │ ├── a.js │ │ │ │ ├── exports.js │ │ │ │ ├── glass_search_by_name.out │ │ │ │ ├── glass_search_by_name.perf │ │ │ │ ├── glass_search_by_name.query │ │ │ │ ├── glass_search_by_name_kinds.out │ │ │ │ ├── glass_search_by_name_kinds.perf │ │ │ │ ├── glass_search_by_name_kinds.query │ │ │ │ ├── search_by_module.out │ │ │ │ ├── search_by_module.perf │ │ │ │ ├── search_by_module.query │ │ │ │ ├── search_by_name.out │ │ │ │ ├── search_by_name.perf │ │ │ │ └── search_by_name.query │ │ │ │ └── xrefs │ │ │ │ ├── .flowconfig │ │ │ │ ├── EntityDocumentation.out │ │ │ │ ├── EntityDocumentation.perf │ │ │ │ ├── EntityDocumentation.query │ │ │ │ ├── cjs_exports.js │ │ │ │ ├── cjs_file_entity_uses.out │ │ │ │ ├── cjs_file_entity_uses.perf │ │ │ │ ├── cjs_file_entity_uses.query │ │ │ │ ├── contains_child.out │ │ │ │ ├── contains_child.query │ │ │ │ ├── contains_child_module.out │ │ │ │ ├── contains_child_module.query │ │ │ │ ├── contains_parent.out │ │ │ │ ├── contains_parent.query │ │ │ │ ├── declarationlocation.out │ │ │ │ ├── declarationlocation.perf │ │ │ │ ├── declarationlocation.query │ │ │ │ ├── declarationnamespan.out │ │ │ │ ├── declarationnamespan.perf │ │ │ │ ├── declarationnamespan.query │ │ │ │ ├── entity_location.out │ │ │ │ ├── entity_location.query │ │ │ │ ├── es_exports.js.flow │ │ │ │ ├── file_entity_uses.out │ │ │ │ ├── file_entity_uses.perf │ │ │ │ ├── file_entity_uses.query │ │ │ │ ├── file_entity_uses_global.out │ │ │ │ ├── file_entity_uses_global.perf │ │ │ │ ├── file_entity_uses_global.query │ │ │ │ ├── file_of_string.out │ │ │ │ ├── file_of_string.query │ │ │ │ ├── file_of_string_2.out │ │ │ │ ├── file_of_string_2.query │ │ │ │ ├── file_of_string_js_flow.out │ │ │ │ ├── file_of_string_js_flow.query │ │ │ │ ├── fileentities.out │ │ │ │ ├── fileentities.perf │ │ │ │ ├── fileentities.query │ │ │ │ ├── fileentities_any.out │ │ │ │ ├── fileentities_any.perf │ │ │ │ ├── fileentities_any.query │ │ │ │ ├── imports.js │ │ │ │ ├── module.out │ │ │ │ ├── module.query │ │ │ │ ├── module_contains.out │ │ │ │ ├── module_contains.query │ │ │ │ ├── module_contains_imports.out │ │ │ │ ├── module_contains_imports.query │ │ │ │ ├── resolve.out │ │ │ │ ├── resolve.perf │ │ │ │ ├── resolve.query │ │ │ │ ├── search_by_module.out │ │ │ │ ├── search_by_module.perf │ │ │ │ ├── search_by_module.query │ │ │ │ ├── search_by_module_2.out │ │ │ │ ├── search_by_module_2.perf │ │ │ │ ├── search_by_module_2.query │ │ │ │ ├── search_by_module_all.out │ │ │ │ ├── search_by_module_all.perf │ │ │ │ ├── search_by_module_all.query │ │ │ │ ├── search_by_name_module.out │ │ │ │ ├── search_by_name_module.query │ │ │ │ ├── search_decl_by_name.out │ │ │ │ ├── search_decl_by_name.perf │ │ │ │ ├── search_decl_by_name.query │ │ │ │ ├── search_decl_by_name_1.out │ │ │ │ ├── search_decl_by_name_1.perf │ │ │ │ ├── search_decl_by_name_1.query │ │ │ │ ├── search_decl_by_name_2.out │ │ │ │ ├── search_decl_by_name_2.perf │ │ │ │ ├── search_decl_by_name_2.query │ │ │ │ ├── search_decl_by_name_3.out │ │ │ │ ├── search_decl_by_name_3.perf │ │ │ │ ├── search_decl_by_name_3.query │ │ │ │ ├── search_decl_by_name_4.out │ │ │ │ ├── search_decl_by_name_4.perf │ │ │ │ ├── search_decl_by_name_4.query │ │ │ │ ├── search_decl_by_name_5.out │ │ │ │ ├── search_decl_by_name_5.perf │ │ │ │ ├── search_decl_by_name_5.query │ │ │ │ ├── search_decl_by_name_6.out │ │ │ │ ├── search_decl_by_name_6.perf │ │ │ │ ├── search_decl_by_name_6.query │ │ │ │ ├── search_decl_by_name_lc.out │ │ │ │ ├── search_decl_by_name_lc.perf │ │ │ │ ├── search_decl_by_name_lc.query │ │ │ │ ├── search_decl_by_name_lc_1.out │ │ │ │ ├── search_decl_by_name_lc_1.perf │ │ │ │ ├── search_decl_by_name_lc_1.query │ │ │ │ ├── search_decl_by_name_lc_2.out │ │ │ │ ├── search_decl_by_name_lc_2.perf │ │ │ │ ├── search_decl_by_name_lc_2.query │ │ │ │ ├── search_decl_by_name_lc_nomatch.out │ │ │ │ ├── search_decl_by_name_lc_nomatch.perf │ │ │ │ ├── search_decl_by_name_lc_nomatch.query │ │ │ │ ├── search_decl_by_name_nomatch.out │ │ │ │ ├── search_decl_by_name_nomatch.perf │ │ │ │ ├── search_decl_by_name_nomatch.query │ │ │ │ ├── search_insensitive_exact_exactkind.out │ │ │ │ ├── search_insensitive_exact_exactkind.perf │ │ │ │ ├── search_insensitive_exact_exactkind.query │ │ │ │ ├── search_insensitive_exact_nokind.out │ │ │ │ ├── search_insensitive_exact_nokind.perf │ │ │ │ ├── search_insensitive_exact_nokind.query │ │ │ │ ├── search_insensitive_prefix_exactkind.out │ │ │ │ ├── search_insensitive_prefix_exactkind.perf │ │ │ │ ├── search_insensitive_prefix_exactkind.query │ │ │ │ ├── search_insensitive_prefix_exactkindplus.out │ │ │ │ ├── search_insensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_insensitive_prefix_exactkindplus.query │ │ │ │ ├── search_insensitive_prefix_nokind.out │ │ │ │ ├── search_insensitive_prefix_nokind.perf │ │ │ │ ├── search_insensitive_prefix_nokind.query │ │ │ │ ├── search_member_by_name.out │ │ │ │ ├── search_member_by_name.perf │ │ │ │ ├── search_member_by_name.query │ │ │ │ ├── search_member_by_name_1.out │ │ │ │ ├── search_member_by_name_1.perf │ │ │ │ ├── search_member_by_name_1.query │ │ │ │ ├── search_member_by_name_lc.out │ │ │ │ ├── search_member_by_name_lc.perf │ │ │ │ ├── search_member_by_name_lc.query │ │ │ │ ├── search_member_by_name_lc_nomatch.out │ │ │ │ ├── search_member_by_name_lc_nomatch.perf │ │ │ │ ├── search_member_by_name_lc_nomatch.query │ │ │ │ ├── search_member_by_name_nomatch.out │ │ │ │ ├── search_member_by_name_nomatch.perf │ │ │ │ ├── search_member_by_name_nomatch.query │ │ │ │ ├── search_name_sensitive_exact_module.out │ │ │ │ ├── search_name_sensitive_exact_module.perf │ │ │ │ ├── search_name_sensitive_exact_module.query │ │ │ │ ├── search_scope_sensitive_exact.out │ │ │ │ ├── search_scope_sensitive_exact.perf │ │ │ │ ├── search_scope_sensitive_exact.query │ │ │ │ ├── search_scope_sensitive_exact_language.out │ │ │ │ ├── search_scope_sensitive_exact_language.perf │ │ │ │ ├── search_scope_sensitive_exact_language.query │ │ │ │ ├── search_sensitive_exact_anylanguage.out │ │ │ │ ├── search_sensitive_exact_anylanguage.perf │ │ │ │ ├── search_sensitive_exact_anylanguage.query │ │ │ │ ├── search_sensitive_exact_exactkind.out │ │ │ │ ├── search_sensitive_exact_exactkind.perf │ │ │ │ ├── search_sensitive_exact_exactkind.query │ │ │ │ ├── search_sensitive_exact_exactkindplus.out │ │ │ │ ├── search_sensitive_exact_exactkindplus.perf │ │ │ │ ├── search_sensitive_exact_exactkindplus.query │ │ │ │ ├── search_sensitive_exact_language.out │ │ │ │ ├── search_sensitive_exact_language.perf │ │ │ │ ├── search_sensitive_exact_language.query │ │ │ │ ├── search_sensitive_exact_multilanguage.out │ │ │ │ ├── search_sensitive_exact_multilanguage.perf │ │ │ │ ├── search_sensitive_exact_multilanguage.query │ │ │ │ ├── search_sensitive_exact_nokind.out │ │ │ │ ├── search_sensitive_exact_nokind.perf │ │ │ │ ├── search_sensitive_exact_nokind.query │ │ │ │ ├── search_sensitive_exact_notlanguage.out │ │ │ │ ├── search_sensitive_exact_notlanguage.perf │ │ │ │ ├── search_sensitive_exact_notlanguage.query │ │ │ │ ├── search_sensitive_prefix_exactkind.out │ │ │ │ ├── search_sensitive_prefix_exactkind.perf │ │ │ │ ├── search_sensitive_prefix_exactkind.query │ │ │ │ ├── search_sensitive_prefix_exactkindplus.out │ │ │ │ ├── search_sensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_sensitive_prefix_exactkindplus.query │ │ │ │ ├── search_sensitive_prefix_nokind.out │ │ │ │ ├── search_sensitive_prefix_nokind.perf │ │ │ │ ├── search_sensitive_prefix_nokind.query │ │ │ │ ├── search_type_by_name.out │ │ │ │ ├── search_type_by_name.perf │ │ │ │ ├── search_type_by_name.query │ │ │ │ ├── search_type_by_name_1.out │ │ │ │ ├── search_type_by_name_1.perf │ │ │ │ ├── search_type_by_name_1.query │ │ │ │ ├── search_type_by_name_lc.out │ │ │ │ ├── search_type_by_name_lc.perf │ │ │ │ ├── search_type_by_name_lc.query │ │ │ │ ├── search_type_by_name_lc_nomatch.out │ │ │ │ ├── search_type_by_name_lc_nomatch.perf │ │ │ │ ├── search_type_by_name_lc_nomatch.query │ │ │ │ ├── search_type_by_name_nomatch.out │ │ │ │ ├── search_type_by_name_nomatch.perf │ │ │ │ ├── search_type_by_name_nomatch.query │ │ │ │ ├── search_type_import.out │ │ │ │ ├── search_type_import.perf │ │ │ │ ├── search_type_import.query │ │ │ │ ├── searchbyfilemodule.out │ │ │ │ ├── searchbyfilemodule.perf │ │ │ │ ├── searchbyfilemodule.query │ │ │ │ ├── signature.out │ │ │ │ ├── signature.perf │ │ │ │ ├── signature.query │ │ │ │ ├── string_to_file.out │ │ │ │ ├── string_to_file.query │ │ │ │ ├── subdir │ │ │ │ └── more_cjs.js │ │ │ │ ├── type_decl.out │ │ │ │ ├── type_decl.perf │ │ │ │ ├── type_decl.query │ │ │ │ ├── xref_at_loc.out │ │ │ │ ├── xref_at_loc.perf │ │ │ │ ├── xref_at_loc.query │ │ │ │ ├── xrefs.out │ │ │ │ ├── xrefs.query │ │ │ │ ├── xrefs_by_file.out │ │ │ │ ├── xrefs_by_file.perf │ │ │ │ ├── xrefs_by_file.query │ │ │ │ ├── xrefs_generic.out │ │ │ │ ├── xrefs_generic.query │ │ │ │ ├── xrefs_generic_by_file.out │ │ │ │ ├── xrefs_generic_by_file.perf │ │ │ │ └── xrefs_generic_by_file.query │ │ │ ├── go │ │ │ └── Glean │ │ │ │ └── Regression │ │ │ │ └── Go │ │ │ │ └── Main.hs │ │ │ ├── hack │ │ │ ├── Glean │ │ │ │ └── Regression │ │ │ │ │ └── Hack │ │ │ │ │ └── Main.hs │ │ │ ├── cases │ │ │ │ └── xrefs │ │ │ │ │ ├── .hhconfig │ │ │ │ │ ├── Module.php │ │ │ │ │ ├── ModuleMember.php │ │ │ │ │ ├── Namespace.php │ │ │ │ │ ├── Namespace2.php │ │ │ │ │ ├── Namespace3.php │ │ │ │ │ ├── RefClass.php │ │ │ │ │ ├── Require.php │ │ │ │ │ ├── SourceClass.php │ │ │ │ │ ├── SourceEnum.php │ │ │ │ │ ├── SourceInterface.php │ │ │ │ │ ├── SourceTrait.php │ │ │ │ │ ├── SuperClass.php │ │ │ │ │ ├── TopLevel.php │ │ │ │ │ ├── check_annotation_hidden.out │ │ │ │ │ ├── check_annotation_hidden.perf │ │ │ │ │ ├── check_annotation_hidden.query │ │ │ │ │ ├── class_by_name.out │ │ │ │ │ ├── class_by_name.perf │ │ │ │ │ ├── class_by_name.query │ │ │ │ │ ├── contains_child.out │ │ │ │ │ ├── contains_child.query │ │ │ │ │ ├── decl_by_name.out │ │ │ │ │ ├── decl_by_name.perf │ │ │ │ │ ├── decl_by_name.query │ │ │ │ │ ├── declarationnamespace.out │ │ │ │ │ ├── declarationnamespace.perf │ │ │ │ │ ├── declarationnamespace.query │ │ │ │ │ ├── entity_info.out │ │ │ │ │ ├── entity_info.query │ │ │ │ │ ├── entity_location.out │ │ │ │ │ ├── entity_location.query │ │ │ │ │ ├── entity_module_name.out │ │ │ │ │ ├── entity_module_name.query │ │ │ │ │ ├── entity_source.out │ │ │ │ │ ├── entity_source.perf │ │ │ │ │ ├── entity_source.query │ │ │ │ │ ├── entity_to_annotations.out │ │ │ │ │ ├── entity_to_annotations.perf │ │ │ │ │ ├── entity_to_annotations.query │ │ │ │ │ ├── entity_uses.out │ │ │ │ │ ├── entity_uses.query │ │ │ │ │ ├── entitymodifiers.out │ │ │ │ │ ├── entitymodifiers.perf │ │ │ │ │ ├── entitymodifiers.query │ │ │ │ │ ├── entityvisibility.out │ │ │ │ │ ├── entityvisibility.perf │ │ │ │ │ ├── entityvisibility.query │ │ │ │ │ ├── file_entity_uses.out │ │ │ │ │ ├── file_entity_uses.perf │ │ │ │ │ ├── file_entity_uses.query │ │ │ │ │ ├── filecall.out │ │ │ │ │ ├── filecall.query │ │ │ │ │ ├── fileentities.out │ │ │ │ │ ├── fileentities.perf │ │ │ │ │ ├── fileentities.query │ │ │ │ │ ├── hack_inherited_entities_machine.out │ │ │ │ │ ├── hack_inherited_entities_machine.perf │ │ │ │ │ ├── hack_inherited_entities_machine.query │ │ │ │ │ ├── hack_inherited_entities_refclass.out │ │ │ │ │ ├── hack_inherited_entities_refclass.perf │ │ │ │ │ ├── hack_inherited_entities_refclass.query │ │ │ │ │ ├── hack_inherited_entities_refclass_hide.out │ │ │ │ │ ├── hack_inherited_entities_refclass_hide.perf │ │ │ │ │ ├── hack_inherited_entities_refclass_hide.query │ │ │ │ │ ├── hack_inherited_entities_refclass_show.out │ │ │ │ │ ├── hack_inherited_entities_refclass_show.perf │ │ │ │ │ ├── hack_inherited_entities_refclass_show.query │ │ │ │ │ ├── referencingentity.out │ │ │ │ │ ├── referencingentity.perf │ │ │ │ │ ├── referencingentity.query │ │ │ │ │ ├── referencingentity2.out │ │ │ │ │ ├── referencingentity2.perf │ │ │ │ │ ├── referencingentity2.query │ │ │ │ │ ├── resolve.out │ │ │ │ │ ├── resolve.perf │ │ │ │ │ ├── resolve.query │ │ │ │ │ ├── search_inherited.out │ │ │ │ │ ├── search_inherited.perf │ │ │ │ │ ├── search_inherited.query │ │ │ │ │ ├── search_inherited_hidden.out │ │ │ │ │ ├── search_inherited_hidden.perf │ │ │ │ │ ├── search_inherited_hidden.query │ │ │ │ │ ├── search_insensitive_exact_exactkind.out │ │ │ │ │ ├── search_insensitive_exact_exactkind.perf │ │ │ │ │ ├── search_insensitive_exact_exactkind.query │ │ │ │ │ ├── search_insensitive_exact_nokind.out │ │ │ │ │ ├── search_insensitive_exact_nokind.perf │ │ │ │ │ ├── search_insensitive_exact_nokind.query │ │ │ │ │ ├── search_insensitive_prefix_exactkind.out │ │ │ │ │ ├── search_insensitive_prefix_exactkind.perf │ │ │ │ │ ├── search_insensitive_prefix_exactkind.query │ │ │ │ │ ├── search_insensitive_prefix_exactkindplus.out │ │ │ │ │ ├── search_insensitive_prefix_exactkindplus.perf │ │ │ │ │ ├── search_insensitive_prefix_exactkindplus.query │ │ │ │ │ ├── search_insensitive_prefix_nokind.out │ │ │ │ │ ├── search_insensitive_prefix_nokind.perf │ │ │ │ │ ├── search_insensitive_prefix_nokind.query │ │ │ │ │ ├── search_related_child_of_parent.out │ │ │ │ │ ├── search_related_child_of_parent.perf │ │ │ │ │ ├── search_related_child_of_parent.query │ │ │ │ │ ├── search_related_contains_child_of_parent.out │ │ │ │ │ ├── search_related_contains_child_of_parent.perf │ │ │ │ │ ├── search_related_contains_child_of_parent.query │ │ │ │ │ ├── search_related_parent_extends_all.out │ │ │ │ │ ├── search_related_parent_extends_all.perf │ │ │ │ │ ├── search_related_parent_extends_all.query │ │ │ │ │ ├── search_related_parent_extends_concise.out │ │ │ │ │ ├── search_related_parent_extends_concise.perf │ │ │ │ │ ├── search_related_parent_extends_concise.query │ │ │ │ │ ├── search_related_parent_of_child.out │ │ │ │ │ ├── search_related_parent_of_child.perf │ │ │ │ │ ├── search_related_parent_of_child.query │ │ │ │ │ ├── search_related_require_class_parent_of_child.out │ │ │ │ │ ├── search_related_require_class_parent_of_child.perf │ │ │ │ │ ├── search_related_require_class_parent_of_child.query │ │ │ │ │ ├── search_related_require_extends_parent_of_child.out │ │ │ │ │ ├── search_related_require_extends_parent_of_child.perf │ │ │ │ │ ├── search_related_require_extends_parent_of_child.query │ │ │ │ │ ├── search_related_require_implements_parent_of_child.out │ │ │ │ │ ├── search_related_require_implements_parent_of_child.perf │ │ │ │ │ ├── search_related_require_implements_parent_of_child.query │ │ │ │ │ ├── search_sensitive_exact.out │ │ │ │ │ ├── search_sensitive_exact.perf │ │ │ │ │ ├── search_sensitive_exact.query │ │ │ │ │ ├── search_sensitive_exact_exactkind.out │ │ │ │ │ ├── search_sensitive_exact_exactkind.perf │ │ │ │ │ ├── search_sensitive_exact_exactkind.query │ │ │ │ │ ├── search_sensitive_exact_exactkindplus.out │ │ │ │ │ ├── search_sensitive_exact_exactkindplus.perf │ │ │ │ │ ├── search_sensitive_exact_exactkindplus.query │ │ │ │ │ ├── search_sensitive_exact_lang.out │ │ │ │ │ ├── search_sensitive_exact_lang.perf │ │ │ │ │ ├── search_sensitive_exact_lang.query │ │ │ │ │ ├── search_sensitive_exact_lang_dontcare.out │ │ │ │ │ ├── search_sensitive_exact_lang_dontcare.perf │ │ │ │ │ ├── search_sensitive_exact_lang_dontcare.query │ │ │ │ │ ├── search_sensitive_exact_lang_exact_kind.out │ │ │ │ │ ├── search_sensitive_exact_lang_exact_kind.perf │ │ │ │ │ ├── search_sensitive_exact_lang_exact_kind.query │ │ │ │ │ ├── search_sensitive_exact_multilang.out │ │ │ │ │ ├── search_sensitive_exact_multilang.perf │ │ │ │ │ ├── search_sensitive_exact_multilang.query │ │ │ │ │ ├── search_sensitive_exact_nokind.out │ │ │ │ │ ├── search_sensitive_exact_nokind.perf │ │ │ │ │ ├── search_sensitive_exact_nokind.query │ │ │ │ │ ├── search_sensitive_exact_notlang.out │ │ │ │ │ ├── search_sensitive_exact_notlang.perf │ │ │ │ │ ├── search_sensitive_exact_notlang.query │ │ │ │ │ ├── search_sensitive_prefix_exactkind.out │ │ │ │ │ ├── search_sensitive_prefix_exactkind.perf │ │ │ │ │ ├── search_sensitive_prefix_exactkind.query │ │ │ │ │ ├── search_sensitive_prefix_exactkindplus.out │ │ │ │ │ ├── search_sensitive_prefix_exactkindplus.perf │ │ │ │ │ ├── search_sensitive_prefix_exactkindplus.query │ │ │ │ │ ├── search_sensitive_prefix_nokind.out │ │ │ │ │ ├── search_sensitive_prefix_nokind.perf │ │ │ │ │ ├── search_sensitive_prefix_nokind.query │ │ │ │ │ ├── xrefs.out │ │ │ │ │ ├── xrefs.query │ │ │ │ │ ├── xrefs_by_file.out │ │ │ │ │ ├── xrefs_by_file.perf │ │ │ │ │ ├── xrefs_by_file.query │ │ │ │ │ ├── xrefs_generic.out │ │ │ │ │ ├── xrefs_generic.query │ │ │ │ │ ├── xrefs_generic_by_file.out │ │ │ │ │ ├── xrefs_generic_by_file.perf │ │ │ │ │ ├── xrefs_generic_by_file.query │ │ │ │ │ ├── xrefs_to_methods_by_file.out │ │ │ │ │ ├── xrefs_to_methods_by_file.perf │ │ │ │ │ └── xrefs_to_methods_by_file.query │ │ │ ├── glass │ │ │ │ └── hack-xlang │ │ │ │ │ ├── .hhconfig │ │ │ │ │ ├── GeneratedEntityToIdlEntity.out │ │ │ │ │ ├── GeneratedEntityToIdlEntity.perf │ │ │ │ │ ├── GeneratedEntityToIdlEntity.query │ │ │ │ │ ├── TestService.php │ │ │ │ │ ├── entityreferences.out │ │ │ │ │ ├── entityreferences.perf │ │ │ │ │ ├── entityreferences.query │ │ │ │ │ ├── fileentitiyxreflocations.out │ │ │ │ │ ├── fileentitiyxreflocations.perf │ │ │ │ │ ├── fileentitiyxreflocations.query │ │ │ │ │ ├── filexrefsgenericentities.out │ │ │ │ │ ├── filexrefsgenericentities.perf │ │ │ │ │ ├── filexrefsgenericentities.query │ │ │ │ │ ├── test.php │ │ │ │ │ ├── test.thrift │ │ │ │ │ ├── test_constants.php │ │ │ │ │ └── test_types.php │ │ │ └── search │ │ │ │ ├── .hhconfig │ │ │ │ ├── BaseModule.php │ │ │ │ ├── RefClass.php │ │ │ │ ├── SourceClass.php │ │ │ │ ├── SourceInterface.php │ │ │ │ ├── SourceTrait.php │ │ │ │ ├── SuperClass.php │ │ │ │ ├── TopLevel.php │ │ │ │ ├── fileentities.out │ │ │ │ ├── fileentities.perf │ │ │ │ ├── fileentities.query │ │ │ │ ├── prefix_search_by_name.out │ │ │ │ ├── prefix_search_by_name.perf │ │ │ │ ├── prefix_search_by_name.query │ │ │ │ ├── prefix_search_function_in_namespace.out │ │ │ │ ├── prefix_search_function_in_namespace.perf │ │ │ │ ├── prefix_search_function_in_namespace.query │ │ │ │ ├── prefix_search_globalconst_in_namespace.out │ │ │ │ ├── prefix_search_globalconst_in_namespace.perf │ │ │ │ ├── prefix_search_globalconst_in_namespace.query │ │ │ │ ├── prefix_search_in_container_or_enum.out │ │ │ │ ├── prefix_search_in_container_or_enum.perf │ │ │ │ ├── prefix_search_in_container_or_enum.query │ │ │ │ ├── prefix_search_in_container_or_enum_no_property.out │ │ │ │ ├── prefix_search_in_container_or_enum_no_property.perf │ │ │ │ ├── prefix_search_in_container_or_enum_no_property.query │ │ │ │ ├── prefix_search_in_namespace.out │ │ │ │ ├── prefix_search_in_namespace.perf │ │ │ │ ├── prefix_search_in_namespace.query │ │ │ │ ├── prefix_search_type_in_namespace.out │ │ │ │ ├── prefix_search_type_in_namespace.perf │ │ │ │ ├── prefix_search_type_in_namespace.query │ │ │ │ ├── search_by_lowercase_scope.out │ │ │ │ ├── search_by_lowercase_scope.perf │ │ │ │ ├── search_by_lowercase_scope.query │ │ │ │ ├── search_by_name.out │ │ │ │ ├── search_by_name.perf │ │ │ │ ├── search_by_name.query │ │ │ │ ├── search_by_scope.out │ │ │ │ ├── search_by_scope.perf │ │ │ │ ├── search_by_scope.query │ │ │ │ ├── search_by_scope_class_const.out │ │ │ │ ├── search_by_scope_class_const.perf │ │ │ │ ├── search_by_scope_class_const.query │ │ │ │ ├── search_by_scope_enum.out │ │ │ │ ├── search_by_scope_enum.perf │ │ │ │ ├── search_by_scope_enum.query │ │ │ │ ├── search_by_scope_interface.out │ │ │ │ ├── search_by_scope_interface.perf │ │ │ │ ├── search_by_scope_interface.query │ │ │ │ ├── search_by_scope_interface_method.out │ │ │ │ ├── search_by_scope_interface_method.perf │ │ │ │ ├── search_by_scope_interface_method.query │ │ │ │ ├── search_by_scope_method.out │ │ │ │ ├── search_by_scope_method.perf │ │ │ │ ├── search_by_scope_method.query │ │ │ │ ├── search_by_scope_module.out │ │ │ │ ├── search_by_scope_module.perf │ │ │ │ ├── search_by_scope_module.query │ │ │ │ ├── search_by_scope_property.out │ │ │ │ ├── search_by_scope_property.perf │ │ │ │ ├── search_by_scope_property.query │ │ │ │ ├── search_by_scope_super.out │ │ │ │ ├── search_by_scope_super.perf │ │ │ │ ├── search_by_scope_super.query │ │ │ │ ├── search_by_scope_trait.out │ │ │ │ ├── search_by_scope_trait.perf │ │ │ │ ├── search_by_scope_trait.query │ │ │ │ ├── search_by_scope_type_const.out │ │ │ │ ├── search_by_scope_type_const.perf │ │ │ │ ├── search_by_scope_type_const.query │ │ │ │ ├── search_class_by_name.out │ │ │ │ ├── search_class_by_name.perf │ │ │ │ ├── search_class_by_name.query │ │ │ │ ├── search_class_by_name_all.out │ │ │ │ ├── search_class_by_name_all.perf │ │ │ │ ├── search_class_by_name_all.query │ │ │ │ ├── search_class_by_name_lc.out │ │ │ │ ├── search_class_by_name_lc.perf │ │ │ │ ├── search_class_by_name_lc.query │ │ │ │ ├── search_class_by_name_nomatch.out │ │ │ │ ├── search_class_by_name_nomatch.perf │ │ │ │ ├── search_class_by_name_nomatch.query │ │ │ │ ├── search_class_const_by_name.out │ │ │ │ ├── search_class_const_by_name.perf │ │ │ │ ├── search_class_const_by_name.query │ │ │ │ ├── search_class_const_by_name_all.out │ │ │ │ ├── search_class_const_by_name_all.perf │ │ │ │ ├── search_class_const_by_name_all.query │ │ │ │ ├── search_class_const_by_name_lc.out │ │ │ │ ├── search_class_const_by_name_lc.perf │ │ │ │ ├── search_class_const_by_name_lc.query │ │ │ │ ├── search_class_const_by_name_nomatch.out │ │ │ │ ├── search_class_const_by_name_nomatch.perf │ │ │ │ ├── search_class_const_by_name_nomatch.query │ │ │ │ ├── search_enum_by_name.out │ │ │ │ ├── search_enum_by_name.perf │ │ │ │ ├── search_enum_by_name.query │ │ │ │ ├── search_enum_by_name_all.out │ │ │ │ ├── search_enum_by_name_all.perf │ │ │ │ ├── search_enum_by_name_all.query │ │ │ │ ├── search_enum_by_name_lc.out │ │ │ │ ├── search_enum_by_name_lc.perf │ │ │ │ ├── search_enum_by_name_lc.query │ │ │ │ ├── search_enum_by_name_nomatch.out │ │ │ │ ├── search_enum_by_name_nomatch.perf │ │ │ │ ├── search_enum_by_name_nomatch.query │ │ │ │ ├── search_enumerator_by_name.out │ │ │ │ ├── search_enumerator_by_name.perf │ │ │ │ ├── search_enumerator_by_name.query │ │ │ │ ├── search_enumerator_by_name_all.out │ │ │ │ ├── search_enumerator_by_name_all.perf │ │ │ │ ├── search_enumerator_by_name_all.query │ │ │ │ ├── search_enumerator_by_name_lc.out │ │ │ │ ├── search_enumerator_by_name_lc.perf │ │ │ │ ├── search_enumerator_by_name_lc.query │ │ │ │ ├── search_enumerator_by_name_nomatch.out │ │ │ │ ├── search_enumerator_by_name_nomatch.perf │ │ │ │ ├── search_enumerator_by_name_nomatch.query │ │ │ │ ├── search_function_by_name.out │ │ │ │ ├── search_function_by_name.perf │ │ │ │ ├── search_function_by_name.query │ │ │ │ ├── search_function_by_name_all.out │ │ │ │ ├── search_function_by_name_all.perf │ │ │ │ ├── search_function_by_name_all.query │ │ │ │ ├── search_function_by_name_lc.out │ │ │ │ ├── search_function_by_name_lc.perf │ │ │ │ ├── search_function_by_name_lc.query │ │ │ │ ├── search_function_by_name_nomatch.out │ │ │ │ ├── search_function_by_name_nomatch.perf │ │ │ │ ├── search_function_by_name_nomatch.query │ │ │ │ ├── search_function_in_namespace.out │ │ │ │ ├── search_function_in_namespace.perf │ │ │ │ ├── search_function_in_namespace.query │ │ │ │ ├── search_globalconst_by_name.out │ │ │ │ ├── search_globalconst_by_name.perf │ │ │ │ ├── search_globalconst_by_name.query │ │ │ │ ├── search_globalconst_by_name_all.out │ │ │ │ ├── search_globalconst_by_name_all.perf │ │ │ │ ├── search_globalconst_by_name_all.query │ │ │ │ ├── search_globalconst_by_name_lc.out │ │ │ │ ├── search_globalconst_by_name_lc.perf │ │ │ │ ├── search_globalconst_by_name_lc.query │ │ │ │ ├── search_globalconst_by_name_nomatch.out │ │ │ │ ├── search_globalconst_by_name_nomatch.perf │ │ │ │ ├── search_globalconst_by_name_nomatch.query │ │ │ │ ├── search_globalconst_in_namespace.out │ │ │ │ ├── search_globalconst_in_namespace.perf │ │ │ │ ├── search_globalconst_in_namespace.query │ │ │ │ ├── search_in_container_or_enum.out │ │ │ │ ├── search_in_container_or_enum.perf │ │ │ │ ├── search_in_container_or_enum.query │ │ │ │ ├── search_in_container_or_enum_no_property.out │ │ │ │ ├── search_in_container_or_enum_no_property.perf │ │ │ │ ├── search_in_container_or_enum_no_property.query │ │ │ │ ├── search_in_context_const.out │ │ │ │ ├── search_in_context_const.perf │ │ │ │ ├── search_in_context_const.query │ │ │ │ ├── search_in_context_const_full.out │ │ │ │ ├── search_in_context_const_full.perf │ │ │ │ ├── search_in_context_const_full.query │ │ │ │ ├── search_in_context_enum.out │ │ │ │ ├── search_in_context_enum.perf │ │ │ │ ├── search_in_context_enum.query │ │ │ │ ├── search_in_context_interface.out │ │ │ │ ├── search_in_context_interface.perf │ │ │ │ ├── search_in_context_interface.query │ │ │ │ ├── search_in_namespace.out │ │ │ │ ├── search_in_namespace.perf │ │ │ │ ├── search_in_namespace.query │ │ │ │ ├── search_interface_by_name.out │ │ │ │ ├── search_interface_by_name.perf │ │ │ │ ├── search_interface_by_name.query │ │ │ │ ├── search_interface_by_name_all.out │ │ │ │ ├── search_interface_by_name_all.perf │ │ │ │ ├── search_interface_by_name_all.query │ │ │ │ ├── search_interface_by_name_lc.out │ │ │ │ ├── search_interface_by_name_lc.perf │ │ │ │ ├── search_interface_by_name_lc.query │ │ │ │ ├── search_interface_by_name_nomatch.out │ │ │ │ ├── search_interface_by_name_nomatch.perf │ │ │ │ ├── search_interface_by_name_nomatch.query │ │ │ │ ├── search_method_by_name.out │ │ │ │ ├── search_method_by_name.perf │ │ │ │ ├── search_method_by_name.query │ │ │ │ ├── search_method_by_name_1.out │ │ │ │ ├── search_method_by_name_1.perf │ │ │ │ ├── search_method_by_name_1.query │ │ │ │ ├── search_method_by_name_all.out │ │ │ │ ├── search_method_by_name_all.perf │ │ │ │ ├── search_method_by_name_all.query │ │ │ │ ├── search_method_by_name_lc.out │ │ │ │ ├── search_method_by_name_lc.perf │ │ │ │ ├── search_method_by_name_lc.query │ │ │ │ ├── search_method_by_name_nomatch.out │ │ │ │ ├── search_method_by_name_nomatch.perf │ │ │ │ ├── search_method_by_name_nomatch.query │ │ │ │ ├── search_module_by_name.out │ │ │ │ ├── search_module_by_name.perf │ │ │ │ ├── search_module_by_name.query │ │ │ │ ├── search_module_by_name_all.out │ │ │ │ ├── search_module_by_name_all.perf │ │ │ │ ├── search_module_by_name_all.query │ │ │ │ ├── search_module_by_name_lc.out │ │ │ │ ├── search_module_by_name_lc.perf │ │ │ │ ├── search_module_by_name_lc.query │ │ │ │ ├── search_module_by_name_nomatch.out │ │ │ │ ├── search_module_by_name_nomatch.perf │ │ │ │ ├── search_module_by_name_nomatch.query │ │ │ │ ├── search_namespace_by_name.out │ │ │ │ ├── search_namespace_by_name.perf │ │ │ │ ├── search_namespace_by_name.query │ │ │ │ ├── search_namespace_by_name_all.out │ │ │ │ ├── search_namespace_by_name_all.perf │ │ │ │ ├── search_namespace_by_name_all.query │ │ │ │ ├── search_namespace_by_name_lc.out │ │ │ │ ├── search_namespace_by_name_lc.perf │ │ │ │ ├── search_namespace_by_name_lc.query │ │ │ │ ├── search_namespace_by_name_nomatch.out │ │ │ │ ├── search_namespace_by_name_nomatch.perf │ │ │ │ ├── search_namespace_by_name_nomatch.query │ │ │ │ ├── search_property_by_name.out │ │ │ │ ├── search_property_by_name.perf │ │ │ │ ├── search_property_by_name.query │ │ │ │ ├── search_property_by_name_all.out │ │ │ │ ├── search_property_by_name_all.perf │ │ │ │ ├── search_property_by_name_all.query │ │ │ │ ├── search_property_by_name_lc.out │ │ │ │ ├── search_property_by_name_lc.perf │ │ │ │ ├── search_property_by_name_lc.query │ │ │ │ ├── search_property_by_name_nomatch.out │ │ │ │ ├── search_property_by_name_nomatch.perf │ │ │ │ ├── search_property_by_name_nomatch.query │ │ │ │ ├── search_trait_by_name.out │ │ │ │ ├── search_trait_by_name.perf │ │ │ │ ├── search_trait_by_name.query │ │ │ │ ├── search_trait_by_name_all.out │ │ │ │ ├── search_trait_by_name_all.perf │ │ │ │ ├── search_trait_by_name_all.query │ │ │ │ ├── search_trait_by_name_lc.out │ │ │ │ ├── search_trait_by_name_lc.perf │ │ │ │ ├── search_trait_by_name_lc.query │ │ │ │ ├── search_trait_by_name_nomatch.out │ │ │ │ ├── search_trait_by_name_nomatch.perf │ │ │ │ ├── search_trait_by_name_nomatch.query │ │ │ │ ├── search_type_in_namespace.out │ │ │ │ ├── search_type_in_namespace.perf │ │ │ │ ├── search_type_in_namespace.query │ │ │ │ ├── search_typeconst_by_name.out │ │ │ │ ├── search_typeconst_by_name.perf │ │ │ │ ├── search_typeconst_by_name.query │ │ │ │ ├── search_typeconst_by_name_all.out │ │ │ │ ├── search_typeconst_by_name_all.perf │ │ │ │ ├── search_typeconst_by_name_all.query │ │ │ │ ├── search_typeconst_by_name_lc.out │ │ │ │ ├── search_typeconst_by_name_lc.perf │ │ │ │ ├── search_typeconst_by_name_lc.query │ │ │ │ ├── search_typeconst_by_name_nomatch.out │ │ │ │ ├── search_typeconst_by_name_nomatch.perf │ │ │ │ ├── search_typeconst_by_name_nomatch.query │ │ │ │ ├── search_typedef_by_name.out │ │ │ │ ├── search_typedef_by_name.perf │ │ │ │ ├── search_typedef_by_name.query │ │ │ │ ├── search_typedef_by_name_all.out │ │ │ │ ├── search_typedef_by_name_all.perf │ │ │ │ ├── search_typedef_by_name_all.query │ │ │ │ ├── search_typedef_by_name_lc.out │ │ │ │ ├── search_typedef_by_name_lc.perf │ │ │ │ ├── search_typedef_by_name_lc.query │ │ │ │ ├── search_typedef_by_name_nomatch.out │ │ │ │ ├── search_typedef_by_name_nomatch.perf │ │ │ │ └── search_typedef_by_name_nomatch.query │ │ │ ├── haskell │ │ │ ├── Main.hs │ │ │ └── code │ │ │ │ ├── A.hi │ │ │ │ ├── A.hs │ │ │ │ ├── A.o │ │ │ │ ├── B.hs │ │ │ │ ├── contains_child.out │ │ │ │ ├── contains_child.perf │ │ │ │ ├── contains_child.query │ │ │ │ ├── contains_parent.out │ │ │ │ ├── contains_parent.perf │ │ │ │ ├── contains_parent.query │ │ │ │ ├── entity_info.out │ │ │ │ ├── entity_info.perf │ │ │ │ ├── entity_info.query │ │ │ │ ├── entity_location.out │ │ │ │ ├── entity_location.query │ │ │ │ ├── entity_uses.out │ │ │ │ ├── entity_uses.perf │ │ │ │ ├── entity_uses.query │ │ │ │ ├── file_entity_locations.out │ │ │ │ ├── file_entity_locations.perf │ │ │ │ ├── file_entity_locations.query │ │ │ │ ├── file_entity_xrefs.out │ │ │ │ ├── file_entity_xrefs.perf │ │ │ │ ├── file_entity_xrefs.query │ │ │ │ ├── file_entity_xrefs_generic.out │ │ │ │ ├── file_entity_xrefs_generic.perf │ │ │ │ ├── file_entity_xrefs_generic.query │ │ │ │ ├── resolve_location.out │ │ │ │ ├── resolve_location.perf │ │ │ │ └── resolve_location.query │ │ │ ├── lsif │ │ │ └── Glean │ │ │ │ └── Regression │ │ │ │ └── Lsif │ │ │ │ └── Main.hs │ │ │ ├── python │ │ │ ├── branches_cases │ │ │ │ ├── branch_v1 │ │ │ │ │ ├── branches_v1_main_xrefs.out │ │ │ │ │ ├── branches_v1_main_xrefs.perf │ │ │ │ │ ├── branches_v1_main_xrefs.query │ │ │ │ │ ├── lib.py │ │ │ │ │ ├── main.py │ │ │ │ │ └── utils.py │ │ │ │ └── branch_v2 │ │ │ │ │ ├── branches_v2_main_xrefs.out │ │ │ │ │ ├── branches_v2_main_xrefs.perf │ │ │ │ │ ├── branches_v2_main_xrefs.query │ │ │ │ │ ├── lib.py │ │ │ │ │ ├── main.py │ │ │ │ │ └── utils.py │ │ │ └── cases │ │ │ │ ├── search │ │ │ │ ├── fileentities.out │ │ │ │ ├── fileentities.perf │ │ │ │ ├── fileentities.query │ │ │ │ ├── search_by_name_class_meth.out │ │ │ │ ├── search_by_name_class_meth.perf │ │ │ │ ├── search_by_name_class_meth.query │ │ │ │ ├── search_by_name_class_meth_lc.out │ │ │ │ ├── search_by_name_class_meth_lc.perf │ │ │ │ ├── search_by_name_class_meth_lc.query │ │ │ │ ├── search_by_scope_class_meth.out │ │ │ │ ├── search_by_scope_class_meth.perf │ │ │ │ ├── search_by_scope_class_meth.query │ │ │ │ ├── search_by_scope_foo.out │ │ │ │ ├── search_by_scope_foo.perf │ │ │ │ ├── search_by_scope_foo.query │ │ │ │ ├── search_by_scope_foo_long.out │ │ │ │ ├── search_by_scope_foo_long.perf │ │ │ │ ├── search_by_scope_foo_long.query │ │ │ │ ├── search_by_scope_foo_long_insensitive.out │ │ │ │ ├── search_by_scope_foo_long_insensitive.perf │ │ │ │ ├── search_by_scope_foo_long_insensitive.query │ │ │ │ ├── search_by_scope_foo_long_prefix.out │ │ │ │ ├── search_by_scope_foo_long_prefix.perf │ │ │ │ ├── search_by_scope_foo_long_prefix.query │ │ │ │ ├── search_by_scope_foo_long_prefix_2.out │ │ │ │ ├── search_by_scope_foo_long_prefix_2.perf │ │ │ │ ├── search_by_scope_foo_long_prefix_2.query │ │ │ │ ├── search_by_scope_foo_long_prefix_3.out │ │ │ │ ├── search_by_scope_foo_long_prefix_3.perf │ │ │ │ ├── search_by_scope_foo_long_prefix_3.query │ │ │ │ ├── search_by_scope_foo_medium.out │ │ │ │ ├── search_by_scope_foo_medium.perf │ │ │ │ ├── search_by_scope_foo_medium.query │ │ │ │ ├── search_foo_by_name.out │ │ │ │ ├── search_foo_by_name.perf │ │ │ │ ├── search_foo_by_name.query │ │ │ │ ├── search_scope_long_9.out │ │ │ │ ├── search_scope_long_9.perf │ │ │ │ ├── search_scope_long_9.query │ │ │ │ ├── search_scope_long_9_a.out │ │ │ │ ├── search_scope_long_9_a.perf │ │ │ │ ├── search_scope_long_9_a.query │ │ │ │ ├── search_scope_long_9_a_class_kind.out │ │ │ │ ├── search_scope_long_9_a_class_kind.perf │ │ │ │ ├── search_scope_long_9_a_class_kind.query │ │ │ │ ├── search_scope_long_9_a_kind.out │ │ │ │ ├── search_scope_long_9_a_kind.perf │ │ │ │ ├── search_scope_long_9_a_kind.query │ │ │ │ ├── search_scope_long_9_b.out │ │ │ │ ├── search_scope_long_9_b.perf │ │ │ │ ├── search_scope_long_9_b.query │ │ │ │ ├── search_scope_long_9_b_class_kind.out │ │ │ │ ├── search_scope_long_9_b_class_kind.perf │ │ │ │ ├── search_scope_long_9_b_class_kind.query │ │ │ │ ├── search_scope_long_9_b_kind.out │ │ │ │ ├── search_scope_long_9_b_kind.perf │ │ │ │ ├── search_scope_long_9_b_kind.query │ │ │ │ ├── search_scope_long_9_c.out │ │ │ │ ├── search_scope_long_9_c.perf │ │ │ │ ├── search_scope_long_9_c.query │ │ │ │ ├── search_scope_long_9_c_class_kind.out │ │ │ │ ├── search_scope_long_9_c_class_kind.perf │ │ │ │ ├── search_scope_long_9_c_class_kind.query │ │ │ │ ├── search_scope_long_9_c_kind.out │ │ │ │ ├── search_scope_long_9_c_kind.perf │ │ │ │ ├── search_scope_long_9_c_kind.query │ │ │ │ ├── search_scope_long_9_class_kind.out │ │ │ │ ├── search_scope_long_9_class_kind.perf │ │ │ │ ├── search_scope_long_9_class_kind.query │ │ │ │ ├── search_scope_long_9_d.out │ │ │ │ ├── search_scope_long_9_d.perf │ │ │ │ ├── search_scope_long_9_d.query │ │ │ │ ├── search_scope_long_9_d_class_kind.out │ │ │ │ ├── search_scope_long_9_d_class_kind.perf │ │ │ │ ├── search_scope_long_9_d_class_kind.query │ │ │ │ ├── search_scope_long_9_d_kind.out │ │ │ │ ├── search_scope_long_9_d_kind.perf │ │ │ │ ├── search_scope_long_9_d_kind.query │ │ │ │ ├── search_scope_long_9_e.out │ │ │ │ ├── search_scope_long_9_e.perf │ │ │ │ ├── search_scope_long_9_e.query │ │ │ │ ├── search_scope_long_9_e_class_kind.out │ │ │ │ ├── search_scope_long_9_e_class_kind.perf │ │ │ │ ├── search_scope_long_9_e_class_kind.query │ │ │ │ ├── search_scope_long_9_e_kind.out │ │ │ │ ├── search_scope_long_9_e_kind.perf │ │ │ │ ├── search_scope_long_9_e_kind.query │ │ │ │ ├── search_scope_long_9_f.out │ │ │ │ ├── search_scope_long_9_f.perf │ │ │ │ ├── search_scope_long_9_f.query │ │ │ │ ├── search_scope_long_9_f_class_kind.out │ │ │ │ ├── search_scope_long_9_f_class_kind.perf │ │ │ │ ├── search_scope_long_9_f_class_kind.query │ │ │ │ ├── search_scope_long_9_f_kind.out │ │ │ │ ├── search_scope_long_9_f_kind.perf │ │ │ │ ├── search_scope_long_9_f_kind.query │ │ │ │ ├── search_scope_long_9_g.out │ │ │ │ ├── search_scope_long_9_g.perf │ │ │ │ ├── search_scope_long_9_g.query │ │ │ │ ├── search_scope_long_9_g_class_kind.out │ │ │ │ ├── search_scope_long_9_g_class_kind.perf │ │ │ │ ├── search_scope_long_9_g_class_kind.query │ │ │ │ ├── search_scope_long_9_g_kind.out │ │ │ │ ├── search_scope_long_9_g_kind.perf │ │ │ │ ├── search_scope_long_9_g_kind.query │ │ │ │ ├── search_scope_long_9_h.out │ │ │ │ ├── search_scope_long_9_h.perf │ │ │ │ ├── search_scope_long_9_h.query │ │ │ │ ├── search_scope_long_9_h_class_kind.out │ │ │ │ ├── search_scope_long_9_h_class_kind.perf │ │ │ │ ├── search_scope_long_9_h_class_kind.query │ │ │ │ ├── search_scope_long_9_h_kind.out │ │ │ │ ├── search_scope_long_9_h_kind.perf │ │ │ │ ├── search_scope_long_9_h_kind.query │ │ │ │ ├── search_scope_long_9_i.out │ │ │ │ ├── search_scope_long_9_i.perf │ │ │ │ ├── search_scope_long_9_i.query │ │ │ │ ├── search_scope_long_9_i_class_kind.out │ │ │ │ ├── search_scope_long_9_i_class_kind.perf │ │ │ │ ├── search_scope_long_9_i_class_kind.query │ │ │ │ ├── search_scope_long_9_i_kind.out │ │ │ │ ├── search_scope_long_9_i_kind.perf │ │ │ │ ├── search_scope_long_9_i_kind.query │ │ │ │ ├── search_scope_long_9_j.out │ │ │ │ ├── search_scope_long_9_j.perf │ │ │ │ ├── search_scope_long_9_j.query │ │ │ │ ├── search_scope_long_9_j_kind.out │ │ │ │ ├── search_scope_long_9_j_kind.perf │ │ │ │ ├── search_scope_long_9_j_kind.query │ │ │ │ ├── search_scope_long_9_kind.out │ │ │ │ ├── search_scope_long_9_kind.perf │ │ │ │ ├── search_scope_long_9_kind.query │ │ │ │ └── some │ │ │ │ │ ├── foo.py │ │ │ │ │ └── lib │ │ │ │ │ ├── a.py │ │ │ │ │ └── b.py │ │ │ │ └── xrefs │ │ │ │ ├── all.py │ │ │ │ ├── big_lib │ │ │ │ ├── __init__.py │ │ │ │ ├── _inner.py │ │ │ │ └── relative.py │ │ │ │ ├── contains_child_entity.out │ │ │ │ ├── contains_child_entity.perf │ │ │ │ ├── contains_child_entity.query │ │ │ │ ├── entity_documentation.out │ │ │ │ ├── entity_documentation.perf │ │ │ │ ├── entity_documentation.query │ │ │ │ ├── entity_info.out │ │ │ │ ├── entity_info.perf │ │ │ │ ├── entity_info.query │ │ │ │ ├── entity_location.out │ │ │ │ ├── entity_location.query │ │ │ │ ├── entity_modifiers.out │ │ │ │ ├── entity_modifiers.perf │ │ │ │ ├── entity_modifiers.query │ │ │ │ ├── entity_module_name.out │ │ │ │ ├── entity_module_name.query │ │ │ │ ├── entity_to_annotations.out │ │ │ │ ├── entity_to_annotations.perf │ │ │ │ ├── entity_to_annotations.query │ │ │ │ ├── entity_uses.out │ │ │ │ ├── entity_uses.query │ │ │ │ ├── entity_visibility.out │ │ │ │ ├── entity_visibility.perf │ │ │ │ ├── entity_visibility.query │ │ │ │ ├── entity_xref_generic.out │ │ │ │ ├── entity_xref_generic.perf │ │ │ │ ├── entity_xref_generic.query │ │ │ │ ├── entity_xref_locations.out │ │ │ │ ├── entity_xref_locations.perf │ │ │ │ ├── entity_xref_locations.query │ │ │ │ ├── entity_xrefs.out │ │ │ │ ├── entity_xrefs.perf │ │ │ │ ├── entity_xrefs.query │ │ │ │ ├── entity_xrefs_generic.out │ │ │ │ ├── entity_xrefs_generic.perf │ │ │ │ ├── entity_xrefs_generic.query │ │ │ │ ├── extends_child_entity.out │ │ │ │ ├── extends_child_entity.perf │ │ │ │ ├── extends_child_entity.query │ │ │ │ ├── extends_parent_entity.out │ │ │ │ ├── extends_parent_entity.perf │ │ │ │ ├── extends_parent_entity.query │ │ │ │ ├── file_entity_uses.out │ │ │ │ ├── file_entity_uses.perf │ │ │ │ ├── file_entity_uses.query │ │ │ │ ├── fileentities.out │ │ │ │ ├── fileentities.perf │ │ │ │ ├── fileentities.query │ │ │ │ ├── fileentities_all.out │ │ │ │ ├── fileentities_all.perf │ │ │ │ ├── fileentities_all.query │ │ │ │ ├── lib.py │ │ │ │ ├── main.py │ │ │ │ ├── resolve.out │ │ │ │ ├── resolve.perf │ │ │ │ ├── resolve.query │ │ │ │ ├── search_by_localname.out │ │ │ │ ├── search_by_localname.perf │ │ │ │ ├── search_by_localname.query │ │ │ │ ├── search_by_name_class_lc.out │ │ │ │ ├── search_by_name_class_lc.perf │ │ │ │ ├── search_by_name_class_lc.query │ │ │ │ ├── search_by_name_class_lc_exact.out │ │ │ │ ├── search_by_name_class_lc_exact.perf │ │ │ │ ├── search_by_name_class_lc_exact.query │ │ │ │ ├── search_by_name_class_lc_nomatch.out │ │ │ │ ├── search_by_name_class_lc_nomatch.perf │ │ │ │ ├── search_by_name_class_lc_nomatch.query │ │ │ │ ├── search_by_name_field_lc.out │ │ │ │ ├── search_by_name_field_lc.perf │ │ │ │ ├── search_by_name_field_lc.query │ │ │ │ ├── search_by_name_field_lc_exact.out │ │ │ │ ├── search_by_name_field_lc_exact.perf │ │ │ │ ├── search_by_name_field_lc_exact.query │ │ │ │ ├── search_by_name_field_lc_nomatch.out │ │ │ │ ├── search_by_name_field_lc_nomatch.perf │ │ │ │ ├── search_by_name_field_lc_nomatch.query │ │ │ │ ├── search_by_name_function_lc.out │ │ │ │ ├── search_by_name_function_lc.perf │ │ │ │ ├── search_by_name_function_lc.query │ │ │ │ ├── search_by_name_function_lc_exact.out │ │ │ │ ├── search_by_name_function_lc_exact.perf │ │ │ │ ├── search_by_name_function_lc_exact.query │ │ │ │ ├── search_by_name_function_lc_nomatch.out │ │ │ │ ├── search_by_name_function_lc_nomatch.perf │ │ │ │ ├── search_by_name_function_lc_nomatch.query │ │ │ │ ├── search_by_name_method_lc.out │ │ │ │ ├── search_by_name_method_lc.perf │ │ │ │ ├── search_by_name_method_lc.query │ │ │ │ ├── search_by_name_method_lc_exact.out │ │ │ │ ├── search_by_name_method_lc_exact.perf │ │ │ │ ├── search_by_name_method_lc_exact.query │ │ │ │ ├── search_by_name_method_lc_nomatch.out │ │ │ │ ├── search_by_name_method_lc_nomatch.perf │ │ │ │ ├── search_by_name_method_lc_nomatch.query │ │ │ │ ├── search_by_name_module_lc.out │ │ │ │ ├── search_by_name_module_lc.perf │ │ │ │ ├── search_by_name_module_lc.query │ │ │ │ ├── search_by_name_module_lc_exact.out │ │ │ │ ├── search_by_name_module_lc_exact.perf │ │ │ │ ├── search_by_name_module_lc_exact.query │ │ │ │ ├── search_by_name_module_lc_nomatch.out │ │ │ │ ├── search_by_name_module_lc_nomatch.perf │ │ │ │ ├── search_by_name_module_lc_nomatch.query │ │ │ │ ├── search_by_name_sensitive_class.out │ │ │ │ ├── search_by_name_sensitive_class.perf │ │ │ │ ├── search_by_name_sensitive_class.query │ │ │ │ ├── search_by_name_sensitive_class_2.out │ │ │ │ ├── search_by_name_sensitive_class_2.perf │ │ │ │ ├── search_by_name_sensitive_class_2.query │ │ │ │ ├── search_by_name_sensitive_class_3.out │ │ │ │ ├── search_by_name_sensitive_class_3.perf │ │ │ │ ├── search_by_name_sensitive_class_3.query │ │ │ │ ├── search_by_name_sensitive_class_4.out │ │ │ │ ├── search_by_name_sensitive_class_4.perf │ │ │ │ ├── search_by_name_sensitive_class_4.query │ │ │ │ ├── search_by_name_sensitive_class_5.out │ │ │ │ ├── search_by_name_sensitive_class_5.perf │ │ │ │ ├── search_by_name_sensitive_class_5.query │ │ │ │ ├── search_by_name_sensitive_class_6.out │ │ │ │ ├── search_by_name_sensitive_class_6.perf │ │ │ │ ├── search_by_name_sensitive_class_6.query │ │ │ │ ├── search_by_name_sensitive_class_nomatch.out │ │ │ │ ├── search_by_name_sensitive_class_nomatch.perf │ │ │ │ ├── search_by_name_sensitive_class_nomatch.query │ │ │ │ ├── search_by_name_sensitive_function_kind_method.out │ │ │ │ ├── search_by_name_sensitive_function_kind_method.perf │ │ │ │ ├── search_by_name_sensitive_function_kind_method.query │ │ │ │ ├── search_by_name_sensitive_module.out │ │ │ │ ├── search_by_name_sensitive_module.perf │ │ │ │ ├── search_by_name_sensitive_module.query │ │ │ │ ├── search_by_name_sensitive_module_1.out │ │ │ │ ├── search_by_name_sensitive_module_1.perf │ │ │ │ ├── search_by_name_sensitive_module_1.query │ │ │ │ ├── search_by_name_sensitive_module_3.out │ │ │ │ ├── search_by_name_sensitive_module_3.perf │ │ │ │ ├── search_by_name_sensitive_module_3.query │ │ │ │ ├── search_by_name_sensitive_module_4.out │ │ │ │ ├── search_by_name_sensitive_module_4.perf │ │ │ │ ├── search_by_name_sensitive_module_4.query │ │ │ │ ├── search_by_name_sensitive_module_5.out │ │ │ │ ├── search_by_name_sensitive_module_5.perf │ │ │ │ ├── search_by_name_sensitive_module_5.query │ │ │ │ ├── search_by_name_sensitive_module_6.out │ │ │ │ ├── search_by_name_sensitive_module_6.perf │ │ │ │ ├── search_by_name_sensitive_module_6.query │ │ │ │ ├── search_by_name_sensitive_module_kind_nomatch.out │ │ │ │ ├── search_by_name_sensitive_module_kind_nomatch.perf │ │ │ │ ├── search_by_name_sensitive_module_kind_nomatch.query │ │ │ │ ├── search_by_name_sensitive_module_name_nomatch.out │ │ │ │ ├── search_by_name_sensitive_module_name_nomatch.perf │ │ │ │ ├── search_by_name_sensitive_module_name_nomatch.query │ │ │ │ ├── search_by_name_sensitive_variable.out │ │ │ │ ├── search_by_name_sensitive_variable.perf │ │ │ │ ├── search_by_name_sensitive_variable.query │ │ │ │ ├── search_by_name_sensitive_variable_1.out │ │ │ │ ├── search_by_name_sensitive_variable_1.perf │ │ │ │ ├── search_by_name_sensitive_variable_1.query │ │ │ │ ├── search_by_name_sensitive_variable_2.out │ │ │ │ ├── search_by_name_sensitive_variable_2.perf │ │ │ │ ├── search_by_name_sensitive_variable_2.query │ │ │ │ ├── search_by_name_sensitive_variable_4.out │ │ │ │ ├── search_by_name_sensitive_variable_4.perf │ │ │ │ ├── search_by_name_sensitive_variable_4.query │ │ │ │ ├── search_by_name_sensitive_variable_5.out │ │ │ │ ├── search_by_name_sensitive_variable_5.perf │ │ │ │ ├── search_by_name_sensitive_variable_5.query │ │ │ │ ├── search_by_name_sensitive_variable_kind_field.out │ │ │ │ ├── search_by_name_sensitive_variable_kind_field.perf │ │ │ │ ├── search_by_name_sensitive_variable_kind_field.query │ │ │ │ ├── search_by_name_sensitive_variable_local_nomatch.out │ │ │ │ ├── search_by_name_sensitive_variable_local_nomatch.perf │ │ │ │ ├── search_by_name_sensitive_variable_local_nomatch.query │ │ │ │ ├── search_by_name_sensitive_variable_nomatch_kind.out │ │ │ │ ├── search_by_name_sensitive_variable_nomatch_kind.perf │ │ │ │ ├── search_by_name_sensitive_variable_nomatch_kind.query │ │ │ │ ├── search_by_name_sensitive_variable_nomatch_name.out │ │ │ │ ├── search_by_name_sensitive_variable_nomatch_name.perf │ │ │ │ ├── search_by_name_sensitive_variable_nomatch_name.query │ │ │ │ ├── search_by_name_sensitive_wrong_kind.out │ │ │ │ ├── search_by_name_sensitive_wrong_kind.perf │ │ │ │ ├── search_by_name_sensitive_wrong_kind.query │ │ │ │ ├── search_by_name_var_lc.out │ │ │ │ ├── search_by_name_var_lc.perf │ │ │ │ ├── search_by_name_var_lc.query │ │ │ │ ├── search_by_name_var_lc_exact.out │ │ │ │ ├── search_by_name_var_lc_exact.perf │ │ │ │ ├── search_by_name_var_lc_exact.query │ │ │ │ ├── search_by_name_var_lc_nomatch.out │ │ │ │ ├── search_by_name_var_lc_nomatch.perf │ │ │ │ ├── search_by_name_var_lc_nomatch.query │ │ │ │ ├── search_class_by_name.out │ │ │ │ ├── search_class_by_name.perf │ │ │ │ ├── search_class_by_name.query │ │ │ │ ├── search_class_by_name_nomatch.out │ │ │ │ ├── search_class_by_name_nomatch.perf │ │ │ │ ├── search_class_by_name_nomatch.query │ │ │ │ ├── search_class_by_name_specific.out │ │ │ │ ├── search_class_by_name_specific.perf │ │ │ │ ├── search_class_by_name_specific.query │ │ │ │ ├── search_field_by_name.out │ │ │ │ ├── search_field_by_name.perf │ │ │ │ ├── search_field_by_name.query │ │ │ │ ├── search_field_by_name_nomatch.out │ │ │ │ ├── search_field_by_name_nomatch.perf │ │ │ │ ├── search_field_by_name_nomatch.query │ │ │ │ ├── search_field_by_name_specific.out │ │ │ │ ├── search_field_by_name_specific.perf │ │ │ │ ├── search_field_by_name_specific.query │ │ │ │ ├── search_function_by_name.out │ │ │ │ ├── search_function_by_name.perf │ │ │ │ ├── search_function_by_name.query │ │ │ │ ├── search_function_by_name_nomatch.out │ │ │ │ ├── search_function_by_name_nomatch.perf │ │ │ │ ├── search_function_by_name_nomatch.query │ │ │ │ ├── search_function_by_name_specific.out │ │ │ │ ├── search_function_by_name_specific.perf │ │ │ │ ├── search_function_by_name_specific.query │ │ │ │ ├── search_function_by_name_specific_nomatch.out │ │ │ │ ├── search_function_by_name_specific_nomatch.perf │ │ │ │ ├── search_function_by_name_specific_nomatch.query │ │ │ │ ├── search_insensitive_exact_exactkind.out │ │ │ │ ├── search_insensitive_exact_exactkind.perf │ │ │ │ ├── search_insensitive_exact_exactkind.query │ │ │ │ ├── search_insensitive_exact_nokind.out │ │ │ │ ├── search_insensitive_exact_nokind.perf │ │ │ │ ├── search_insensitive_exact_nokind.query │ │ │ │ ├── search_insensitive_prefix_exactkind.out │ │ │ │ ├── search_insensitive_prefix_exactkind.perf │ │ │ │ ├── search_insensitive_prefix_exactkind.query │ │ │ │ ├── search_insensitive_prefix_exactkindplus.out │ │ │ │ ├── search_insensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_insensitive_prefix_exactkindplus.query │ │ │ │ ├── search_insensitive_prefix_nokind.out │ │ │ │ ├── search_insensitive_prefix_nokind.perf │ │ │ │ ├── search_insensitive_prefix_nokind.query │ │ │ │ ├── search_method_by_name.out │ │ │ │ ├── search_method_by_name.perf │ │ │ │ ├── search_method_by_name.query │ │ │ │ ├── search_method_by_name_nomatch.out │ │ │ │ ├── search_method_by_name_nomatch.perf │ │ │ │ ├── search_method_by_name_nomatch.query │ │ │ │ ├── search_method_by_name_specific.out │ │ │ │ ├── search_method_by_name_specific.perf │ │ │ │ ├── search_method_by_name_specific.query │ │ │ │ ├── search_module_by_name.out │ │ │ │ ├── search_module_by_name.perf │ │ │ │ ├── search_module_by_name.query │ │ │ │ ├── search_module_by_name_nomatch.out │ │ │ │ ├── search_module_by_name_nomatch.perf │ │ │ │ ├── search_module_by_name_nomatch.query │ │ │ │ ├── search_module_by_name_specific.out │ │ │ │ ├── search_module_by_name_specific.perf │ │ │ │ ├── search_module_by_name_specific.query │ │ │ │ ├── search_related_contains_child_of_parent.out │ │ │ │ ├── search_related_contains_child_of_parent.perf │ │ │ │ ├── search_related_contains_child_of_parent.query │ │ │ │ ├── search_related_contains_parent_of_child.out │ │ │ │ ├── search_related_contains_parent_of_child.perf │ │ │ │ ├── search_related_contains_parent_of_child.query │ │ │ │ ├── search_related_extends_child_of_parent.out │ │ │ │ ├── search_related_extends_child_of_parent.perf │ │ │ │ ├── search_related_extends_child_of_parent.query │ │ │ │ ├── search_related_extends_parent_of_child.out │ │ │ │ ├── search_related_extends_parent_of_child.perf │ │ │ │ ├── search_related_extends_parent_of_child.query │ │ │ │ ├── search_sensitive_exact_exactkind.out │ │ │ │ ├── search_sensitive_exact_exactkind.perf │ │ │ │ ├── search_sensitive_exact_exactkind.query │ │ │ │ ├── search_sensitive_exact_exactkindplus.out │ │ │ │ ├── search_sensitive_exact_exactkindplus.perf │ │ │ │ ├── search_sensitive_exact_exactkindplus.query │ │ │ │ ├── search_sensitive_exact_language.out │ │ │ │ ├── search_sensitive_exact_language.perf │ │ │ │ ├── search_sensitive_exact_language.query │ │ │ │ ├── search_sensitive_exact_multilanguage.out │ │ │ │ ├── search_sensitive_exact_multilanguage.perf │ │ │ │ ├── search_sensitive_exact_multilanguage.query │ │ │ │ ├── search_sensitive_exact_nokind.out │ │ │ │ ├── search_sensitive_exact_nokind.perf │ │ │ │ ├── search_sensitive_exact_nokind.query │ │ │ │ ├── search_sensitive_exact_notlanguage.out │ │ │ │ ├── search_sensitive_exact_notlanguage.perf │ │ │ │ ├── search_sensitive_exact_notlanguage.query │ │ │ │ ├── search_sensitive_prefix_exactkind.out │ │ │ │ ├── search_sensitive_prefix_exactkind.perf │ │ │ │ ├── search_sensitive_prefix_exactkind.query │ │ │ │ ├── search_sensitive_prefix_exactkindplus.out │ │ │ │ ├── search_sensitive_prefix_exactkindplus.perf │ │ │ │ ├── search_sensitive_prefix_exactkindplus.query │ │ │ │ ├── search_sensitive_prefix_nokind.out │ │ │ │ ├── search_sensitive_prefix_nokind.perf │ │ │ │ ├── search_sensitive_prefix_nokind.query │ │ │ │ ├── search_sensitive_scope_prefix.out │ │ │ │ ├── search_sensitive_scope_prefix.perf │ │ │ │ ├── search_sensitive_scope_prefix.query │ │ │ │ ├── search_variable_by_name.out │ │ │ │ ├── search_variable_by_name.perf │ │ │ │ ├── search_variable_by_name.query │ │ │ │ ├── search_variable_by_name_specific.out │ │ │ │ ├── search_variable_by_name_specific.perf │ │ │ │ ├── search_variable_by_name_specific.query │ │ │ │ ├── search_variable_by_name_specific_nomatch.out │ │ │ │ ├── search_variable_by_name_specific_nomatch.perf │ │ │ │ ├── search_variable_by_name_specific_nomatch.query │ │ │ │ ├── xrefs_by_file.out │ │ │ │ ├── xrefs_by_file.perf │ │ │ │ ├── xrefs_by_file.query │ │ │ │ ├── xrefs_generic_by_file.out │ │ │ │ ├── xrefs_generic_by_file.perf │ │ │ │ └── xrefs_generic_by_file.query │ │ │ ├── thrift │ │ │ └── cases │ │ │ │ └── xrefs │ │ │ │ ├── all.thrift │ │ │ │ ├── entity_child_contains.out │ │ │ │ ├── entity_child_contains.query │ │ │ │ ├── entity_child_extends.out │ │ │ │ ├── entity_child_extends.query │ │ │ │ ├── entity_comments.out │ │ │ │ ├── entity_comments.query │ │ │ │ ├── entity_location.out │ │ │ │ ├── entity_location.query │ │ │ │ ├── entity_parent_contains.out │ │ │ │ ├── entity_parent_contains.query │ │ │ │ ├── entity_parent_extends.out │ │ │ │ ├── entity_parent_extends.query │ │ │ │ ├── entity_references.out │ │ │ │ ├── entity_references.perf │ │ │ │ ├── entity_references.query │ │ │ │ ├── entity_uses.out │ │ │ │ ├── entity_uses.query │ │ │ │ ├── entity_xref_generic.out │ │ │ │ ├── entity_xref_generic.perf │ │ │ │ ├── entity_xref_generic.query │ │ │ │ ├── entity_xref_locations.out │ │ │ │ ├── entity_xref_locations.perf │ │ │ │ ├── entity_xref_locations.query │ │ │ │ ├── file_entity_references.out │ │ │ │ ├── file_entity_references.perf │ │ │ │ ├── file_entity_references.query │ │ │ │ ├── fileentities.out │ │ │ │ ├── fileentities.perf │ │ │ │ ├── fileentities.query │ │ │ │ ├── kind.out │ │ │ │ ├── kind.perf │ │ │ │ ├── kind.query │ │ │ │ ├── lib.thrift │ │ │ │ ├── resolve.out │ │ │ │ ├── resolve.perf │ │ │ │ ├── resolve.query │ │ │ │ ├── search_by_name.out │ │ │ │ ├── search_by_name.perf │ │ │ │ ├── search_by_name.query │ │ │ │ ├── search_by_name_lc.out │ │ │ │ ├── search_by_name_lc.perf │ │ │ │ └── search_by_name_lc.query │ │ │ └── typescript │ │ │ └── Glean │ │ │ └── Regression │ │ │ └── TypeScript │ │ │ └── Main.hs │ ├── dotnet-scip │ │ ├── Glean │ │ │ └── Indexer │ │ │ │ └── DotnetScip.hs │ │ └── tests │ │ │ ├── Glean │ │ │ └── Regression │ │ │ │ └── DotnetScip │ │ │ │ └── Main.hs │ │ │ └── cases │ │ │ └── xrefs │ │ │ ├── Definition.out │ │ │ ├── Definition.perf │ │ │ ├── Definition.query │ │ │ ├── DefinitionLocation.out │ │ │ ├── DefinitionLocation.perf │ │ │ ├── DefinitionLocation.query │ │ │ ├── Documentation.out │ │ │ ├── Documentation.perf │ │ │ ├── Documentation.query │ │ │ ├── File.out │ │ │ ├── File.perf │ │ │ ├── File.query │ │ │ ├── FileLanguage.out │ │ │ ├── FileLanguage.perf │ │ │ ├── FileLanguage.query │ │ │ ├── FileRange.out │ │ │ ├── FileRange.perf │ │ │ ├── FileRange.query │ │ │ ├── LocalName.out │ │ │ ├── LocalName.perf │ │ │ ├── LocalName.query │ │ │ ├── Metadata.out │ │ │ ├── Metadata.perf │ │ │ ├── Metadata.query │ │ │ ├── Program.cs │ │ │ ├── Reference.out │ │ │ ├── Reference.perf │ │ │ ├── Reference.query │ │ │ ├── ReferenceLocation.out │ │ │ ├── ReferenceLocation.perf │ │ │ ├── ReferenceLocation.query │ │ │ ├── Symbol.out │ │ │ ├── Symbol.perf │ │ │ ├── Symbol.query │ │ │ ├── SymbolDocumentation.out │ │ │ ├── SymbolDocumentation.perf │ │ │ ├── SymbolDocumentation.query │ │ │ ├── SymbolKind.out │ │ │ ├── SymbolKind.perf │ │ │ ├── SymbolKind.query │ │ │ ├── SymbolName.out │ │ │ ├── SymbolName.perf │ │ │ ├── SymbolName.query │ │ │ └── src.csproj │ ├── erlang │ │ ├── Glean │ │ │ └── Indexer │ │ │ │ └── Erlang.hs │ │ └── tests │ │ │ └── cases │ │ │ └── basic │ │ │ ├── .elp.toml │ │ │ ├── declaration.out │ │ │ ├── declaration.perf │ │ │ ├── declaration.query │ │ │ ├── declaration_comment.out │ │ │ ├── declaration_comment.perf │ │ │ ├── declaration_comment.query │ │ │ ├── declaration_to_fqn.out │ │ │ ├── declaration_to_fqn.perf │ │ │ ├── declaration_to_fqn.query │ │ │ ├── declaration_with_fqn.out │ │ │ ├── declaration_with_fqn.perf │ │ │ ├── declaration_with_fqn.query │ │ │ ├── declarationlocation.out │ │ │ ├── declarationlocation.perf │ │ │ ├── declarationlocation.query │ │ │ ├── declarationuses.out │ │ │ ├── declarationuses.perf │ │ │ ├── declarationuses.query │ │ │ ├── include │ │ │ └── example.hrl │ │ │ ├── module.out │ │ │ ├── module.perf │ │ │ ├── module.query │ │ │ └── src │ │ │ ├── basic.app.src │ │ │ └── example.erl │ ├── flow │ │ └── Glean │ │ │ └── Indexer │ │ │ └── Flow.hs │ ├── go │ │ ├── Glean │ │ │ └── Indexer │ │ │ │ └── Go.hs │ │ ├── targets.bxl │ │ └── tests │ │ │ ├── cases │ │ │ └── xrefs │ │ │ │ ├── codemarkup_entityinfo.out │ │ │ │ ├── codemarkup_entityinfo.perf │ │ │ │ ├── codemarkup_entityinfo.query │ │ │ │ ├── codemarkup_entitylocation.out │ │ │ │ ├── codemarkup_entitylocation.perf │ │ │ │ ├── codemarkup_entitylocation.query │ │ │ │ ├── codemarkup_entityuses.out │ │ │ │ ├── codemarkup_entityuses.perf │ │ │ │ ├── codemarkup_entityuses.query │ │ │ │ ├── codemarkup_fileentityxrefs.out │ │ │ │ ├── codemarkup_fileentityxrefs.perf │ │ │ │ ├── codemarkup_fileentityxrefs.query │ │ │ │ ├── codemarkup_resolvelocation.out │ │ │ │ ├── codemarkup_resolvelocation.perf │ │ │ │ ├── codemarkup_resolvelocation.query │ │ │ │ ├── definition.out │ │ │ │ ├── definition.perf │ │ │ │ ├── definition.query │ │ │ │ ├── definitionlocation.out │ │ │ │ ├── definitionlocation.perf │ │ │ │ ├── definitionlocation.query │ │ │ │ ├── definitionuse.out │ │ │ │ ├── definitionuse.perf │ │ │ │ ├── definitionuse.query │ │ │ │ ├── defn_documentation.out │ │ │ │ ├── defn_documentation.perf │ │ │ │ ├── defn_documentation.query │ │ │ │ ├── documentation.out │ │ │ │ ├── documentation.perf │ │ │ │ ├── documentation.query │ │ │ │ ├── entity.out │ │ │ │ ├── entity.perf │ │ │ │ ├── entity.query │ │ │ │ ├── filelanguage.out │ │ │ │ ├── filelanguage.perf │ │ │ │ ├── filelanguage.query │ │ │ │ ├── filerange.out │ │ │ │ ├── filerange.perf │ │ │ │ ├── filerange.query │ │ │ │ ├── go.mod │ │ │ │ ├── go.sum │ │ │ │ ├── leaphash.go │ │ │ │ ├── localname.out │ │ │ │ ├── localname.perf │ │ │ │ ├── localname.query │ │ │ │ ├── metadata.out │ │ │ │ ├── metadata.perf │ │ │ │ ├── metadata.query │ │ │ │ ├── references.out │ │ │ │ ├── references.perf │ │ │ │ ├── references.query │ │ │ │ ├── referencetarget.out │ │ │ │ ├── referencetarget.perf │ │ │ │ ├── referencetarget.query │ │ │ │ ├── searchbylowercasename.out │ │ │ │ ├── searchbylowercasename.perf │ │ │ │ ├── searchbylowercasename.query │ │ │ │ ├── searchbyname.out │ │ │ │ ├── searchbyname.perf │ │ │ │ ├── searchbyname.query │ │ │ │ ├── srcfile.out │ │ │ │ ├── srcfile.perf │ │ │ │ ├── srcfile.query │ │ │ │ ├── symbol.out │ │ │ │ ├── symbol.perf │ │ │ │ ├── symbol.query │ │ │ │ ├── symbolkind.out │ │ │ │ ├── symbolkind.perf │ │ │ │ └── symbolkind.query │ │ │ └── regression │ │ │ ├── codemarkup_fileentityinfos.out │ │ │ ├── codemarkup_fileentityinfos.perf │ │ │ ├── codemarkup_fileentityinfos.query │ │ │ ├── codemarkup_fileentityxreflocations.out │ │ │ ├── codemarkup_fileentityxreflocations.perf │ │ │ ├── codemarkup_fileentityxreflocations.query │ │ │ ├── lib1 │ │ │ ├── lib1.go │ │ │ └── lib1_test.go │ │ │ ├── lib2 │ │ │ ├── lib2.go │ │ │ └── lib2_test.go │ │ │ ├── scip_EnclosingRange.out │ │ │ ├── scip_EnclosingRange.perf │ │ │ └── scip_EnclosingRange.query │ ├── hack │ │ ├── Derive │ │ │ ├── All.hs │ │ │ ├── Env.hs │ │ │ ├── HackDeclarationTarget.hs │ │ │ └── Types.hs │ │ ├── Glean │ │ │ └── Indexer │ │ │ │ ├── Hack.hs │ │ │ │ └── HackWithDeriver.hs │ │ ├── deriver │ │ │ └── Derive.hs │ │ └── tests │ │ │ ├── Driver.hs │ │ │ ├── Main.hs │ │ │ └── cases │ │ │ └── declarationtarget │ │ │ ├── .hhconfig │ │ │ ├── A.php │ │ │ ├── B.php │ │ │ ├── C.php │ │ │ ├── HackEntityDocumentation.out │ │ │ ├── HackEntityDocumentation.query │ │ │ ├── declaration_target.out │ │ │ ├── declaration_target.query │ │ │ ├── declaration_target_by_name.out │ │ │ ├── declaration_target_by_name.perf │ │ │ ├── declaration_target_by_name.query │ │ │ ├── method_overrides.out │ │ │ └── method_overrides.query │ ├── haskell │ │ ├── Glean │ │ │ └── Indexer │ │ │ │ └── Haskell.hs │ │ ├── HieIndexer │ │ │ ├── Index.hs │ │ │ ├── Main.hs │ │ │ └── Options.hs │ │ ├── index.bxl │ │ └── tests │ │ │ ├── Main.hs │ │ │ └── code │ │ │ ├── A.hs │ │ │ ├── B.hs │ │ │ ├── hsClassDecl.out │ │ │ ├── hsClassDecl.query │ │ │ ├── hsDataDecl.out │ │ │ ├── hsDataDecl.query │ │ │ ├── hsDeclarationLocation.out │ │ │ ├── hsDeclarationLocation.query │ │ │ ├── hsFileXRefs.out │ │ │ ├── hsFileXRefs.query │ │ │ ├── hsInstanceDecl.out │ │ │ ├── hsInstanceDecl.query │ │ │ ├── hsModuleDeclarations.out │ │ │ ├── hsModuleDeclarations.query │ │ │ ├── hsSigDecl.out │ │ │ ├── hsSigDecl.query │ │ │ ├── hsType.out │ │ │ └── hsType.query │ ├── java-alpha │ │ ├── Glean │ │ │ └── Indexer │ │ │ │ └── Java.hs │ │ ├── README.md │ │ ├── debug.py │ │ ├── extract_facts_from_jar.sh │ │ ├── index_and_extract.py │ │ ├── indexer │ │ │ ├── examples │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── facebook │ │ │ │ │ └── glean │ │ │ │ │ ├── generics │ │ │ │ │ ├── Main.java │ │ │ │ │ ├── Map.java │ │ │ │ │ ├── class_declarations.out │ │ │ │ │ ├── class_declarations.query │ │ │ │ │ ├── constructor_declarations.out │ │ │ │ │ ├── constructor_declarations.query │ │ │ │ │ ├── contains_declaration.out │ │ │ │ │ ├── contains_declaration.query │ │ │ │ │ ├── contains_parent.out │ │ │ │ │ ├── contains_parent.query │ │ │ │ │ ├── declaration_type.out │ │ │ │ │ ├── declaration_type.query │ │ │ │ │ ├── entity_annotations.out │ │ │ │ │ ├── entity_annotations.query │ │ │ │ │ ├── entity_kind.out │ │ │ │ │ ├── entity_kind.query │ │ │ │ │ ├── entity_location.out │ │ │ │ │ ├── entity_location.query │ │ │ │ │ ├── entity_modifiers.out │ │ │ │ │ ├── entity_modifiers.query │ │ │ │ │ ├── entity_uses.out │ │ │ │ │ ├── entity_uses.query │ │ │ │ │ ├── entity_visibility.out │ │ │ │ │ ├── entity_visibility.query │ │ │ │ │ ├── extends_parent.out │ │ │ │ │ ├── extends_parent.query │ │ │ │ │ ├── field_declarations.out │ │ │ │ │ ├── field_declarations.query │ │ │ │ │ ├── file_entity_xrefs.out │ │ │ │ │ ├── file_entity_xrefs.query │ │ │ │ │ ├── filelines.out │ │ │ │ │ ├── filelines.query │ │ │ │ │ ├── interface_declarations.out │ │ │ │ │ ├── interface_declarations.query │ │ │ │ │ ├── method_declarations.out │ │ │ │ │ ├── method_declarations.query │ │ │ │ │ ├── name_lowercase.out │ │ │ │ │ ├── name_lowercase.query │ │ │ │ │ ├── resolve_location.out │ │ │ │ │ ├── resolve_location.query │ │ │ │ │ ├── search_insensitive.out │ │ │ │ │ ├── search_insensitive.query │ │ │ │ │ ├── search_sensitive.out │ │ │ │ │ └── search_sensitive.query │ │ │ │ │ ├── glean │ │ │ │ │ ├── Glean.java │ │ │ │ │ ├── POJO.java │ │ │ │ │ ├── class_declarations.out │ │ │ │ │ ├── class_declarations.query │ │ │ │ │ ├── constructor_declarations.out │ │ │ │ │ ├── constructor_declarations.query │ │ │ │ │ ├── contains_declaration.out │ │ │ │ │ ├── contains_declaration.query │ │ │ │ │ ├── contains_parent.out │ │ │ │ │ ├── contains_parent.query │ │ │ │ │ ├── declaration_comment.out │ │ │ │ │ ├── declaration_comment.query │ │ │ │ │ ├── declaration_type.out │ │ │ │ │ ├── declaration_type.query │ │ │ │ │ ├── entity_annotations.out │ │ │ │ │ ├── entity_annotations.query │ │ │ │ │ ├── entity_comment.out │ │ │ │ │ ├── entity_comment.query │ │ │ │ │ ├── entity_kind.out │ │ │ │ │ ├── entity_kind.query │ │ │ │ │ ├── entity_location.out │ │ │ │ │ ├── entity_location.query │ │ │ │ │ ├── entity_modifiers.out │ │ │ │ │ ├── entity_modifiers.query │ │ │ │ │ ├── entity_uses.out │ │ │ │ │ ├── entity_uses.query │ │ │ │ │ ├── entity_visibility.out │ │ │ │ │ ├── entity_visibility.query │ │ │ │ │ ├── extends_parent.out │ │ │ │ │ ├── extends_parent.query │ │ │ │ │ ├── field_declarations.out │ │ │ │ │ ├── field_declarations.query │ │ │ │ │ ├── file_entity_xrefs.out │ │ │ │ │ ├── file_entity_xrefs.query │ │ │ │ │ ├── filelines.out │ │ │ │ │ ├── filelines.query │ │ │ │ │ ├── interface_declarations.out │ │ │ │ │ ├── interface_declarations.query │ │ │ │ │ ├── method_declarations.out │ │ │ │ │ ├── method_declarations.query │ │ │ │ │ ├── name_lowercase.out │ │ │ │ │ ├── name_lowercase.query │ │ │ │ │ ├── resolve_location.out │ │ │ │ │ ├── resolve_location.query │ │ │ │ │ ├── scope_n1.out │ │ │ │ │ ├── scope_n1.query │ │ │ │ │ ├── scope_n1_insensitive.out │ │ │ │ │ ├── scope_n1_insensitive.query │ │ │ │ │ ├── scope_n2.out │ │ │ │ │ ├── scope_n2.query │ │ │ │ │ ├── scope_n2_insensitive.out │ │ │ │ │ ├── scope_n2_insensitive.query │ │ │ │ │ ├── scope_n3.out │ │ │ │ │ ├── scope_n3.query │ │ │ │ │ ├── scope_n4.out │ │ │ │ │ ├── scope_n4.query │ │ │ │ │ ├── search_insensitive.out │ │ │ │ │ ├── search_insensitive.query │ │ │ │ │ ├── search_sensitive.out │ │ │ │ │ └── search_sensitive.query │ │ │ │ │ └── inheritance │ │ │ │ │ ├── Drawable.java │ │ │ │ │ ├── IA.java │ │ │ │ │ ├── IB.java │ │ │ │ │ ├── IPolygon.java │ │ │ │ │ ├── IX.java │ │ │ │ │ ├── Rectangle.java │ │ │ │ │ ├── class_declarations.out │ │ │ │ │ ├── class_declarations.query │ │ │ │ │ ├── constructor_declarations.out │ │ │ │ │ ├── constructor_declarations.query │ │ │ │ │ ├── contains_declaration.out │ │ │ │ │ ├── contains_declaration.query │ │ │ │ │ ├── contains_parent.out │ │ │ │ │ ├── contains_parent.query │ │ │ │ │ ├── declaration_type.out │ │ │ │ │ ├── declaration_type.query │ │ │ │ │ ├── entity_annotations.out │ │ │ │ │ ├── entity_annotations.query │ │ │ │ │ ├── entity_kind.out │ │ │ │ │ ├── entity_kind.query │ │ │ │ │ ├── entity_location.out │ │ │ │ │ ├── entity_location.query │ │ │ │ │ ├── entity_modifiers.out │ │ │ │ │ ├── entity_modifiers.query │ │ │ │ │ ├── entity_uses.out │ │ │ │ │ ├── entity_uses.query │ │ │ │ │ ├── entity_visibility.out │ │ │ │ │ ├── entity_visibility.query │ │ │ │ │ ├── extends_parent.out │ │ │ │ │ ├── extends_parent.query │ │ │ │ │ ├── field_declarations.out │ │ │ │ │ ├── field_declarations.query │ │ │ │ │ ├── file_entity_xrefs.out │ │ │ │ │ ├── file_entity_xrefs.query │ │ │ │ │ ├── filelines.out │ │ │ │ │ ├── filelines.query │ │ │ │ │ ├── interface_declarations.out │ │ │ │ │ ├── interface_declarations.query │ │ │ │ │ ├── method_declarations.out │ │ │ │ │ ├── method_declarations.query │ │ │ │ │ ├── name_lowercase.out │ │ │ │ │ ├── name_lowercase.query │ │ │ │ │ ├── resolve_location.out │ │ │ │ │ ├── resolve_location.query │ │ │ │ │ ├── search_insensitive.out │ │ │ │ │ ├── search_insensitive.query │ │ │ │ │ ├── search_sensitive.out │ │ │ │ │ └── search_sensitive.query │ │ │ └── java │ │ │ │ ├── META-INF │ │ │ │ └── services │ │ │ │ │ └── com.sun.source.util.Plugin │ │ │ │ └── com │ │ │ │ └── facebook │ │ │ │ └── glean │ │ │ │ ├── Indexer.java │ │ │ │ ├── IndexerContext.java │ │ │ │ ├── Utils.java │ │ │ │ ├── descriptors │ │ │ │ ├── AnnotationDescriptor.java │ │ │ │ ├── ClassDescriptor.java │ │ │ │ ├── ClassUtils.java │ │ │ │ ├── CommentDescriptor.java │ │ │ │ ├── ConstructorDescriptor.java │ │ │ │ ├── EnumDescriptor.java │ │ │ │ ├── FileLinesDescriptor.java │ │ │ │ ├── ImportDescriptor.java │ │ │ │ ├── InterfaceDescriptor.java │ │ │ │ ├── LocDescriptor.java │ │ │ │ ├── LocationDescriptor.java │ │ │ │ ├── MethodDescriptor.java │ │ │ │ ├── MethodNameDescriptor.java │ │ │ │ ├── ModifierDescriptor.java │ │ │ │ ├── NameDescriptor.java │ │ │ │ ├── ObjectTypeDescriptor.java │ │ │ │ ├── PackageDescriptor.java │ │ │ │ ├── PathDescriptor.java │ │ │ │ ├── PrimitiveTypeDescriptor.java │ │ │ │ ├── QNameDescriptor.java │ │ │ │ ├── TypeDescriptor.java │ │ │ │ ├── VariableDescriptor.java │ │ │ │ ├── XRefDescriptor.java │ │ │ │ ├── debug │ │ │ │ │ └── DebugUtils.java │ │ │ │ ├── exceptions │ │ │ │ │ └── DescriptorException.java │ │ │ │ └── utils │ │ │ │ │ ├── ElementUtils.java │ │ │ │ │ ├── FileLinesUtils.java │ │ │ │ │ ├── LocUtils.java │ │ │ │ │ ├── QNameUtils.java │ │ │ │ │ ├── SignatureGenerator.java │ │ │ │ │ └── TypeUtils.java │ │ │ │ ├── logger │ │ │ │ ├── BufferedLogger.java │ │ │ │ ├── ConsoleLogger.java │ │ │ │ ├── ILogger.java │ │ │ │ └── Logger.java │ │ │ │ └── predicates │ │ │ │ ├── ListPredicate.java │ │ │ │ ├── Predicate.java │ │ │ │ ├── Predicates.java │ │ │ │ ├── SetPredicate.java │ │ │ │ ├── SwiftSerializer.java │ │ │ │ └── XRefPredicate.java │ │ └── sync_to_xplat.py │ ├── java-lsif │ │ ├── Glean │ │ │ └── Indexer │ │ │ │ └── JavaLsif.hs │ │ └── tests │ │ │ ├── Glean │ │ │ └── Regression │ │ │ │ └── JavaLsif │ │ │ │ └── Main.hs │ │ │ └── cases │ │ │ └── xrefs │ │ │ ├── definitionhover.out │ │ │ ├── definitionhover.query │ │ │ ├── definitionmoniker.out │ │ │ ├── definitionmoniker.query │ │ │ ├── definitionuse.out │ │ │ ├── definitionuse.query │ │ │ ├── entityinfo.out │ │ │ ├── entityinfo.query │ │ │ ├── entitylocation.out │ │ │ ├── entitylocation.query │ │ │ ├── entityreferences.out │ │ │ ├── entityreferences.query │ │ │ ├── fileentitylocations.out │ │ │ ├── fileentitylocations.query │ │ │ ├── fileentityxreflocations.out │ │ │ ├── fileentityxreflocations.query │ │ │ ├── monikerkind.out │ │ │ ├── monikerkind.query │ │ │ ├── pom.xml │ │ │ ├── reference.out │ │ │ ├── reference.query │ │ │ ├── src │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── glean │ │ │ │ └── app │ │ │ │ └── App.java │ │ │ ├── srcfile.out │ │ │ └── srcfile.query │ ├── kotlin │ │ ├── extract_facts_from_jar.sh │ │ ├── indexer │ │ │ ├── KotlinIndexContext.kt │ │ │ ├── KotlinIndexerConfigurationKeys.kt │ │ │ ├── KotlinIndexerPluginCompilerPluginRegistrar.kt │ │ │ ├── KotlinIndexerPluginExtension.kt │ │ │ ├── KotlinIndexerTreeVisitor.kt │ │ │ ├── examples │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── facebook │ │ │ │ │ └── glean │ │ │ │ │ └── glean │ │ │ │ │ ├── ClassA.kt │ │ │ │ │ ├── Glean.kt │ │ │ │ │ ├── contains_method.out │ │ │ │ │ ├── contains_method.perf │ │ │ │ │ ├── contains_method.query │ │ │ │ │ ├── contains_parent.out │ │ │ │ │ ├── contains_parent.perf │ │ │ │ │ ├── contains_parent.query │ │ │ │ │ ├── entity_kinds.out │ │ │ │ │ ├── entity_kinds.query │ │ │ │ │ ├── entity_uses.out │ │ │ │ │ ├── entity_uses.query │ │ │ │ │ ├── extends_parent.out │ │ │ │ │ ├── extends_parent.perf │ │ │ │ │ ├── extends_parent.query │ │ │ │ │ ├── file_entities.out │ │ │ │ │ ├── file_entities.query │ │ │ │ │ ├── file_entity_xrefs.out │ │ │ │ │ ├── file_entity_xrefs.query │ │ │ │ │ ├── method_declarations.out │ │ │ │ │ ├── method_declarations.query │ │ │ │ │ ├── resolve_location.out │ │ │ │ │ ├── resolve_location.query │ │ │ │ │ ├── search_by_name.out │ │ │ │ │ ├── search_by_name.query │ │ │ │ │ ├── search_name_case.out │ │ │ │ │ ├── search_name_case.query │ │ │ │ │ ├── search_scope.out │ │ │ │ │ ├── search_scope.perf │ │ │ │ │ ├── search_scope.query │ │ │ │ │ ├── variable_parent.out │ │ │ │ │ ├── variable_parent.perf │ │ │ │ │ └── variable_parent.query │ │ │ ├── kotlin_psi_utils │ │ │ │ ├── ClassDeclaration.kt │ │ │ │ ├── FileLocation.kt │ │ │ │ ├── Loc.kt │ │ │ │ ├── MethodDeclaration.kt │ │ │ │ ├── MethodName.kt │ │ │ │ ├── MissingRequiredGleanFieldException.kt │ │ │ │ ├── QName.kt │ │ │ │ ├── Type.kt │ │ │ │ ├── Utils.kt │ │ │ │ └── VariableDeclaration.kt │ │ │ └── scripts │ │ │ │ ├── build.py │ │ │ │ └── indexer_spec.py │ │ ├── predicates │ │ │ ├── ClassDeclarationPredicate.kt │ │ │ ├── DeclarationLocationPredicate.kt │ │ │ ├── FilePredicate.kt │ │ │ ├── GleanPredicate.kt │ │ │ ├── JavaKotlinTypePredicate.kt │ │ │ ├── KotlinTypePredicate.kt │ │ │ ├── LocPredicate.kt │ │ │ ├── MethodDeclarationPredicate.kt │ │ │ ├── MethodNamePredicate.kt │ │ │ ├── NamePredicate.kt │ │ │ ├── PathPredicate.kt │ │ │ ├── Predicates.kt │ │ │ ├── QNamePredicate.kt │ │ │ ├── SpanPredicate.kt │ │ │ ├── TypeArgPredicate.kt │ │ │ └── VariableDeclarationPredicate.kt │ │ └── resources │ │ │ └── META-INF │ │ │ └── services │ │ │ └── org.jetbrains.kotlin.compiler.plugin.CompilerPluginRegistrar │ ├── lsif │ │ ├── Data │ │ │ └── LSIF │ │ │ │ ├── Angle.hs │ │ │ │ ├── Env.hs │ │ │ │ ├── Gen.hs │ │ │ │ ├── JSON.hs │ │ │ │ ├── Moniker.hs │ │ │ │ └── Types.hs │ │ ├── Glean │ │ │ └── LSIF │ │ │ │ └── Driver.hs │ │ ├── indexer │ │ │ └── Glean │ │ │ │ └── Indexer │ │ │ │ ├── LSIF.hs │ │ │ │ └── LSIF │ │ │ │ └── Main.hs │ │ └── tests │ │ │ └── cases │ │ │ ├── Readme.md │ │ │ └── lsif-tsc │ │ │ ├── codemarkup │ │ │ ├── entityinfo.out │ │ │ ├── entityinfo.perf │ │ │ ├── entityinfo.query │ │ │ ├── entitykind.out │ │ │ ├── entitykind.perf │ │ │ ├── entitykind.query │ │ │ ├── entitylocation.out │ │ │ ├── entitylocation.perf │ │ │ ├── entitylocation.query │ │ │ ├── entityreferences.out │ │ │ ├── entityreferences.perf │ │ │ ├── entityreferences.query │ │ │ ├── fileentityinfos.out │ │ │ ├── fileentityinfos.perf │ │ │ ├── fileentityinfos.query │ │ │ ├── fileentitykinds.out │ │ │ ├── fileentitykinds.perf │ │ │ ├── fileentitykinds.query │ │ │ ├── fileentitylocations.out │ │ │ ├── fileentitylocations.perf │ │ │ ├── fileentitylocations.query │ │ │ ├── fileentityxrefinfos.out │ │ │ ├── fileentityxrefinfos.perf │ │ │ ├── fileentityxrefinfos.query │ │ │ ├── fileentityxrefkinds.out │ │ │ ├── fileentityxrefkinds.perf │ │ │ ├── fileentityxrefkinds.query │ │ │ ├── fileentityxreflocations.out │ │ │ ├── fileentityxreflocations.perf │ │ │ ├── fileentityxreflocations.query │ │ │ ├── resolvelocation.out │ │ │ ├── resolvelocation.perf │ │ │ └── resolvelocation.query │ │ │ ├── codesearch │ │ │ ├── searchbylowercasename.out │ │ │ ├── searchbylowercasename.perf │ │ │ ├── searchbylowercasename.query │ │ │ ├── searchbyname.out │ │ │ ├── searchbyname.perf │ │ │ └── searchbyname.query │ │ │ └── lsif │ │ │ ├── definition.out │ │ │ ├── definition.perf │ │ │ ├── definition.query │ │ │ ├── definitionhover.out │ │ │ ├── definitionhover.perf │ │ │ ├── definitionhover.query │ │ │ ├── definitionkind.out │ │ │ ├── definitionkind.perf │ │ │ ├── definitionkind.query │ │ │ ├── definitionmoniker.out │ │ │ ├── definitionmoniker.perf │ │ │ ├── definitionmoniker.query │ │ │ ├── definitionuse.out │ │ │ ├── definitionuse.perf │ │ │ ├── definitionuse.query │ │ │ ├── document.out │ │ │ ├── document.perf │ │ │ ├── document.query │ │ │ ├── dump.lsif │ │ │ ├── entitykind.out │ │ │ ├── entitykind.perf │ │ │ ├── entitykind.query │ │ │ ├── entitylocation.out │ │ │ ├── entitylocation.perf │ │ │ ├── entitylocation.query │ │ │ ├── entityuses.out │ │ │ ├── entityuses.perf │ │ │ ├── entityuses.query │ │ │ ├── fileentityxreflocation.out │ │ │ ├── fileentityxreflocation.perf │ │ │ ├── fileentityxreflocation.query │ │ │ ├── hovercontent.out │ │ │ ├── hovercontent.perf │ │ │ ├── hovercontent.query │ │ │ ├── hovertext.out │ │ │ ├── hovertext.perf │ │ │ ├── hovertext.query │ │ │ ├── metadata.out │ │ │ ├── metadata.perf │ │ │ ├── metadata.query │ │ │ ├── moniker.out │ │ │ ├── moniker.perf │ │ │ ├── moniker.query │ │ │ ├── monikerdefinition.out │ │ │ ├── monikerdefinition.perf │ │ │ ├── monikerdefinition.query │ │ │ ├── monikerid.out │ │ │ ├── monikerid.perf │ │ │ ├── monikerid.query │ │ │ ├── monikerscheme.out │ │ │ ├── monikerscheme.perf │ │ │ ├── monikerscheme.query │ │ │ ├── name.out │ │ │ ├── name.perf │ │ │ ├── name.query │ │ │ ├── namedefinition.out │ │ │ ├── namedefinition.perf │ │ │ ├── namedefinition.query │ │ │ ├── namelowercase.out │ │ │ ├── namelowercase.perf │ │ │ ├── namelowercase.query │ │ │ ├── packageinformation.out │ │ │ ├── packageinformation.perf │ │ │ ├── packageinformation.query │ │ │ ├── project.out │ │ │ ├── project.perf │ │ │ ├── project.query │ │ │ ├── range.out │ │ │ ├── range.perf │ │ │ ├── range.query │ │ │ ├── reference.out │ │ │ ├── reference.perf │ │ │ ├── reference.query │ │ │ ├── resolvelocation.out │ │ │ ├── resolvelocation.perf │ │ │ ├── resolvelocation.query │ │ │ ├── searchbyexactlocation.out │ │ │ ├── searchbyexactlocation.perf │ │ │ ├── searchbyexactlocation.query │ │ │ ├── searchbyexactlocationandname.out │ │ │ ├── searchbyexactlocationandname.perf │ │ │ ├── searchbyexactlocationandname.query │ │ │ ├── searchbymoniker.out │ │ │ ├── searchbymoniker.perf │ │ │ ├── searchbymoniker.query │ │ │ ├── searchbyname.out │ │ │ ├── searchbyname.perf │ │ │ ├── searchbyname.query │ │ │ ├── searchnonlocalbylocation.out │ │ │ ├── searchnonlocalbylocation.perf │ │ │ ├── searchnonlocalbylocation.query │ │ │ ├── srcfile.out │ │ │ ├── srcfile.perf │ │ │ └── srcfile.query │ ├── python-pyrefly │ │ ├── Glean │ │ │ └── Indexer │ │ │ │ └── PythonPyrefly.hs │ │ └── tests │ │ │ └── regression │ │ │ ├── pyrefly_specific │ │ │ ├── bar.py │ │ │ ├── bigger_module │ │ │ │ ├── another_submodule.py │ │ │ │ └── submodule.py │ │ │ ├── callee_to_caller.out │ │ │ ├── callee_to_caller.query │ │ │ ├── definition_declaration.out │ │ │ ├── definition_declaration.query │ │ │ ├── foo.py │ │ │ ├── generic.py │ │ │ ├── optional_generic.py │ │ │ ├── some_module.py │ │ │ ├── xrefs_via_name_by_file.out │ │ │ └── xrefs_via_name_by_file.query │ │ │ └── without_dynamic_import │ │ │ ├── core │ │ │ ├── declarations │ │ │ │ ├── bar │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── baz.py │ │ │ │ │ └── quux.py │ │ │ │ ├── callee_to_caller.out │ │ │ │ ├── callee_to_caller.query │ │ │ │ ├── contained_by.out │ │ │ │ ├── contained_by.query │ │ │ │ ├── containing_declaration.out │ │ │ │ ├── containing_declaration.query │ │ │ │ ├── declaration_docstring.out │ │ │ │ ├── declaration_docstring.query │ │ │ │ ├── declaration_location.out │ │ │ │ ├── declaration_location.query │ │ │ │ ├── definition_declaration.out │ │ │ │ ├── definition_declaration.query │ │ │ │ ├── definition_location.out │ │ │ │ ├── definition_location.query │ │ │ │ ├── filecalls.out │ │ │ │ ├── filecalls.query │ │ │ │ ├── filelanguage.out │ │ │ │ ├── filelanguage.query │ │ │ │ ├── filelines.out │ │ │ │ ├── filelines.query │ │ │ │ ├── foo.py │ │ │ │ ├── is_abstract.out │ │ │ │ ├── is_abstract.perf │ │ │ │ ├── is_abstract.query │ │ │ │ ├── method_overriden.out │ │ │ │ ├── method_overriden.perf │ │ │ │ ├── method_overriden.query │ │ │ │ ├── method_overrides.out │ │ │ │ ├── method_overrides.perf │ │ │ │ ├── method_overrides.query │ │ │ │ ├── module.out │ │ │ │ ├── module.query │ │ │ │ └── quux │ │ │ │ │ └── empty.py │ │ │ ├── gencode │ │ │ │ ├── gencode.out │ │ │ │ ├── gencode.query │ │ │ │ ├── generated.py │ │ │ │ ├── partially-generated.py │ │ │ │ └── source-without-name.py │ │ │ ├── sname │ │ │ │ ├── a.py │ │ │ │ ├── mod │ │ │ │ │ └── b.py │ │ │ │ ├── name.out │ │ │ │ ├── name.query │ │ │ │ ├── name_to_sname.out │ │ │ │ ├── name_to_sname.query │ │ │ │ ├── sname.out │ │ │ │ └── sname.query │ │ │ └── xrefs │ │ │ │ ├── all.py │ │ │ │ ├── as.py │ │ │ │ ├── big_lib │ │ │ │ ├── __init__.py │ │ │ │ └── relative.py │ │ │ │ ├── declaration_reference.out │ │ │ │ ├── declaration_reference.query │ │ │ │ ├── lib.py │ │ │ │ ├── main.py │ │ │ │ ├── module.out │ │ │ │ ├── module.query │ │ │ │ ├── shadow.py │ │ │ │ ├── xrefs_via_name_by_file.out │ │ │ │ └── xrefs_via_name_by_file.query │ │ │ ├── declaration_uses │ │ │ └── simple │ │ │ │ ├── declaration_uses.out │ │ │ │ ├── declaration_uses.query │ │ │ │ ├── mod_a │ │ │ │ └── __init__.py │ │ │ │ ├── mod_b │ │ │ │ ├── helper.py │ │ │ │ └── util.py │ │ │ │ ├── xrefs_via_name_by_file.out │ │ │ │ └── xrefs_via_name_by_file.query │ │ │ ├── import_statements │ │ │ ├── by_name │ │ │ │ ├── by_as_name.out │ │ │ │ ├── by_as_name.query │ │ │ │ └── mod.py │ │ │ └── spec │ │ │ │ ├── a.py │ │ │ │ ├── current_module.py │ │ │ │ ├── declaration_location.out │ │ │ │ ├── declaration_location.query │ │ │ │ ├── declaration_uses.out │ │ │ │ ├── declaration_uses.query │ │ │ │ ├── import_star_location.out │ │ │ │ ├── import_star_location.query │ │ │ │ ├── import_stars_by_file.out │ │ │ │ ├── import_stars_by_file.query │ │ │ │ ├── star.py │ │ │ │ ├── u │ │ │ │ ├── __init__.py │ │ │ │ └── v.py │ │ │ │ ├── x │ │ │ │ ├── __init__.py │ │ │ │ └── y.py │ │ │ │ ├── xrefs_via_name_by_file.out │ │ │ │ └── xrefs_via_name_by_file.query │ │ │ └── things_by_sname │ │ │ └── all │ │ │ ├── a.py │ │ │ ├── class.out │ │ │ ├── class.query │ │ │ ├── func.out │ │ │ ├── func.query │ │ │ ├── import.out │ │ │ ├── import.query │ │ │ ├── mod │ │ │ └── b.py │ │ │ ├── module.out │ │ │ ├── module.query │ │ │ ├── sname_to_name.out │ │ │ ├── sname_to_name.query │ │ │ ├── variable.out │ │ │ └── variable.query │ ├── python-scip │ │ ├── Glean │ │ │ └── Indexer │ │ │ │ └── PythonScip.hs │ │ └── tests │ │ │ ├── Glean │ │ │ └── Regression │ │ │ │ └── PythonScip │ │ │ │ └── Main.hs │ │ │ └── cases │ │ │ └── xrefs │ │ │ ├── Definition.out │ │ │ ├── Definition.perf │ │ │ ├── Definition.query │ │ │ ├── DefinitionLocation.out │ │ │ ├── DefinitionLocation.perf │ │ │ ├── DefinitionLocation.query │ │ │ ├── Documentation.out │ │ │ ├── Documentation.perf │ │ │ ├── Documentation.query │ │ │ ├── FileLanguage.out │ │ │ ├── FileLanguage.perf │ │ │ ├── FileLanguage.query │ │ │ ├── FileRange.out │ │ │ ├── FileRange.perf │ │ │ ├── FileRange.query │ │ │ ├── LocalName.out │ │ │ ├── LocalName.perf │ │ │ ├── LocalName.query │ │ │ ├── Metadata.out │ │ │ ├── Metadata.perf │ │ │ ├── Metadata.query │ │ │ ├── Reference.out │ │ │ ├── Reference.perf │ │ │ ├── Reference.query │ │ │ ├── ReferenceLocation.out │ │ │ ├── ReferenceLocation.perf │ │ │ ├── ReferenceLocation.query │ │ │ ├── Symbol.out │ │ │ ├── Symbol.perf │ │ │ ├── Symbol.query │ │ │ ├── SymbolDocumentation.out │ │ │ ├── SymbolDocumentation.perf │ │ │ ├── SymbolDocumentation.query │ │ │ ├── SymbolKind.out │ │ │ ├── SymbolKind.perf │ │ │ ├── SymbolKind.query │ │ │ ├── SymbolName.out │ │ │ ├── SymbolName.perf │ │ │ ├── SymbolName.query │ │ │ └── example.py │ ├── rust-lsif │ │ ├── Glean │ │ │ └── Indexer │ │ │ │ └── RustLsif.hs │ │ └── tests │ │ │ ├── Glean │ │ │ └── Regression │ │ │ │ └── RustLsif │ │ │ │ └── Main.hs │ │ │ └── cases │ │ │ └── xrefs │ │ │ ├── Cargo.lock │ │ │ ├── Cargo.toml │ │ │ ├── defhover.out │ │ │ ├── defhover.query │ │ │ ├── definition.out │ │ │ ├── definition.query │ │ │ ├── hovertext.out │ │ │ ├── hovertext.query │ │ │ ├── range.out │ │ │ ├── range.query │ │ │ ├── searchbylowercasename.out │ │ │ ├── searchbylowercasename.perf │ │ │ ├── searchbylowercasename.query │ │ │ ├── searchbyname.out │ │ │ ├── searchbyname.perf │ │ │ ├── searchbyname.query │ │ │ ├── src │ │ │ ├── bintree.rs │ │ │ ├── bounds.rs │ │ │ ├── break.rs │ │ │ ├── closures.rs │ │ │ ├── collect.rs │ │ │ ├── collect1.rs │ │ │ ├── enum.rs │ │ │ ├── enum2.rs │ │ │ ├── expr.rs │ │ │ ├── expr2.rs │ │ │ ├── foo.rs │ │ │ ├── generics.rs │ │ │ ├── grep.rs │ │ │ ├── impl.rs │ │ │ ├── impl2.rs │ │ │ ├── io.rs │ │ │ ├── lib.rs │ │ │ ├── mod2.rs │ │ │ ├── modules.rs │ │ │ ├── mutable.rs │ │ │ ├── operators.rs │ │ │ ├── ownership.rs │ │ │ ├── panic.rs │ │ │ ├── pattern.rs │ │ │ ├── result.rs │ │ │ ├── sharing.rs │ │ │ ├── struct.rs │ │ │ ├── trait.rs │ │ │ ├── types.rs │ │ │ └── utility.rs │ │ │ ├── srcfile.out │ │ │ ├── srcfile.query │ │ │ ├── uses.out │ │ │ ├── uses.query │ │ │ ├── xrefs.out │ │ │ └── xrefs.query │ ├── rust-scip │ │ ├── Glean │ │ │ └── Indexer │ │ │ │ └── RustScip.hs │ │ └── tests │ │ │ ├── Glean │ │ │ └── Regression │ │ │ │ └── RustScip │ │ │ │ └── Main.hs │ │ │ └── cases │ │ │ └── xrefs │ │ │ ├── Cargo.lock │ │ │ ├── Cargo.toml │ │ │ ├── codemarkup_entityinfo.out │ │ │ ├── codemarkup_entityinfo.perf │ │ │ ├── codemarkup_entityinfo.query │ │ │ ├── codemarkup_entitylocation.out │ │ │ ├── codemarkup_entitylocation.perf │ │ │ ├── codemarkup_entitylocation.query │ │ │ ├── codemarkup_entityuses.out │ │ │ ├── codemarkup_entityuses.perf │ │ │ ├── codemarkup_entityuses.query │ │ │ ├── codemarkup_fileentityxrefs.out │ │ │ ├── codemarkup_fileentityxrefs.perf │ │ │ ├── codemarkup_fileentityxrefs.query │ │ │ ├── codemarkup_resolvelocation.out │ │ │ ├── codemarkup_resolvelocation.perf │ │ │ ├── codemarkup_resolvelocation.query │ │ │ ├── definition.out │ │ │ ├── definition.perf │ │ │ ├── definition.query │ │ │ ├── definitionlocation.out │ │ │ ├── definitionlocation.perf │ │ │ ├── definitionlocation.query │ │ │ ├── definitionuse.out │ │ │ ├── definitionuse.perf │ │ │ ├── definitionuse.query │ │ │ ├── defn_documentation.out │ │ │ ├── defn_documentation.perf │ │ │ ├── defn_documentation.query │ │ │ ├── display_name_symbol.out │ │ │ ├── display_name_symbol.perf │ │ │ ├── display_name_symbol.query │ │ │ ├── documentation.out │ │ │ ├── documentation.perf │ │ │ ├── documentation.query │ │ │ ├── entity.out │ │ │ ├── entity.perf │ │ │ ├── entity.query │ │ │ ├── filelanguage.out │ │ │ ├── filelanguage.perf │ │ │ ├── filelanguage.query │ │ │ ├── filerange.out │ │ │ ├── filerange.perf │ │ │ ├── filerange.query │ │ │ ├── localname.out │ │ │ ├── localname.perf │ │ │ ├── localname.query │ │ │ ├── metadata.out │ │ │ ├── metadata.perf │ │ │ ├── metadata.query │ │ │ ├── references.out │ │ │ ├── references.perf │ │ │ ├── references.query │ │ │ ├── referencetarget.out │ │ │ ├── referencetarget.perf │ │ │ ├── referencetarget.query │ │ │ ├── search_by_name.out │ │ │ ├── search_by_name.perf │ │ │ ├── search_by_name.query │ │ │ ├── search_by_name_kind.out │ │ │ ├── search_by_name_kind.perf │ │ │ ├── search_by_name_kind.query │ │ │ ├── search_by_name_kind_lang_rust.out │ │ │ ├── search_by_name_kind_lang_rust.perf │ │ │ ├── search_by_name_kind_lang_rust.query │ │ │ ├── search_by_name_kind_rust.out │ │ │ ├── search_by_name_kind_rust.perf │ │ │ ├── search_by_name_kind_rust.query │ │ │ ├── search_by_name_lang_rust.out │ │ │ ├── search_by_name_lang_rust.perf │ │ │ ├── search_by_name_lang_rust.query │ │ │ ├── search_by_name_rust.out │ │ │ ├── search_by_name_rust.perf │ │ │ ├── search_by_name_rust.query │ │ │ ├── searchbyname.out │ │ │ ├── searchbyname.perf │ │ │ ├── searchbyname.query │ │ │ ├── src │ │ │ ├── bintree.rs │ │ │ ├── bounds.rs │ │ │ ├── break.rs │ │ │ ├── closures.rs │ │ │ ├── collect.rs │ │ │ ├── collect1.rs │ │ │ ├── enum.rs │ │ │ ├── enum2.rs │ │ │ ├── expr.rs │ │ │ ├── expr2.rs │ │ │ ├── foo.rs │ │ │ ├── generics.rs │ │ │ ├── grep.rs │ │ │ ├── impl.rs │ │ │ ├── impl2.rs │ │ │ ├── io.rs │ │ │ ├── lib.rs │ │ │ ├── mod2.rs │ │ │ ├── modules.rs │ │ │ ├── mutable.rs │ │ │ ├── operators.rs │ │ │ ├── ownership.rs │ │ │ ├── panic.rs │ │ │ ├── pattern.rs │ │ │ ├── result.rs │ │ │ ├── sharing.rs │ │ │ ├── struct.rs │ │ │ ├── trait.rs │ │ │ ├── types.rs │ │ │ └── utility.rs │ │ │ ├── srcfile.out │ │ │ ├── srcfile.perf │ │ │ ├── srcfile.query │ │ │ ├── symbol.out │ │ │ ├── symbol.perf │ │ │ ├── symbol.query │ │ │ ├── symbol_kind.out │ │ │ ├── symbol_kind.perf │ │ │ ├── symbol_kind.query │ │ │ ├── symbolkind.out │ │ │ ├── symbolkind.perf │ │ │ └── symbolkind.query │ ├── scip │ │ ├── Data │ │ │ └── SCIP │ │ │ │ └── Angle.hs │ │ ├── Glean │ │ │ └── SCIP │ │ │ │ └── Driver.hs │ │ ├── indexer │ │ │ ├── Glean │ │ │ │ └── Indexer │ │ │ │ │ ├── SCIP.hs │ │ │ │ │ └── SCIP │ │ │ │ │ └── Main.hs │ │ │ └── scip_to_glean │ │ │ │ ├── cli │ │ │ │ └── src │ │ │ │ │ ├── angle.rs │ │ │ │ │ ├── lsif.rs │ │ │ │ │ ├── main.rs │ │ │ │ │ └── output.rs │ │ │ │ ├── scip_symbol │ │ │ │ └── src │ │ │ │ │ └── lib.rs │ │ │ │ ├── scip_symbol_parse │ │ │ │ ├── README.md │ │ │ │ ├── src │ │ │ │ │ └── main.rs │ │ │ │ └── test.sh │ │ │ │ └── upload-to-glean.sh │ │ ├── proto │ │ │ ├── Proto │ │ │ │ ├── Scip.hs │ │ │ │ └── Scip_Fields.hs │ │ │ └── README.md │ │ └── tests │ │ │ └── cases │ │ │ └── rust-analyzer │ │ │ ├── codemarkup_entityinfo.out │ │ │ ├── codemarkup_entityinfo.perf │ │ │ ├── codemarkup_entityinfo.query │ │ │ ├── codemarkup_entitylocation.out │ │ │ ├── codemarkup_entitylocation.perf │ │ │ ├── codemarkup_entitylocation.query │ │ │ ├── codemarkup_entityuses.out │ │ │ ├── codemarkup_entityuses.perf │ │ │ ├── codemarkup_entityuses.query │ │ │ ├── codemarkup_fileentityxrefs.out │ │ │ ├── codemarkup_fileentityxrefs.perf │ │ │ ├── codemarkup_fileentityxrefs.query │ │ │ ├── codemarkup_resolvelocation.out │ │ │ ├── codemarkup_resolvelocation.perf │ │ │ ├── codemarkup_resolvelocation.query │ │ │ ├── definition.out │ │ │ ├── definition.perf │ │ │ ├── definition.query │ │ │ ├── definitionlocation.out │ │ │ ├── definitionlocation.perf │ │ │ ├── definitionlocation.query │ │ │ ├── definitionuse.out │ │ │ ├── definitionuse.perf │ │ │ ├── definitionuse.query │ │ │ ├── defn_documentation.out │ │ │ ├── defn_documentation.perf │ │ │ ├── defn_documentation.query │ │ │ ├── displayName.out │ │ │ ├── displayName.perf │ │ │ ├── displayName.query │ │ │ ├── displayNameSymbol.out │ │ │ ├── displayNameSymbol.perf │ │ │ ├── displayNameSymbol.query │ │ │ ├── display_name_symbol.out │ │ │ ├── display_name_symbol.perf │ │ │ ├── display_name_symbol.query │ │ │ ├── display_names.out │ │ │ ├── display_names.perf │ │ │ ├── display_names.query │ │ │ ├── documentation.out │ │ │ ├── documentation.perf │ │ │ ├── documentation.query │ │ │ ├── entity.out │ │ │ ├── entity.perf │ │ │ ├── entity.query │ │ │ ├── filelanguage.out │ │ │ ├── filelanguage.perf │ │ │ ├── filelanguage.query │ │ │ ├── filerange.out │ │ │ ├── filerange.perf │ │ │ ├── filerange.query │ │ │ ├── index.README.md │ │ │ ├── index.scip │ │ │ ├── localname.out │ │ │ ├── localname.perf │ │ │ ├── localname.query │ │ │ ├── metadata.out │ │ │ ├── metadata.perf │ │ │ ├── metadata.query │ │ │ ├── references.out │ │ │ ├── references.perf │ │ │ ├── references.query │ │ │ ├── referencetarget.out │ │ │ ├── referencetarget.perf │ │ │ ├── referencetarget.query │ │ │ ├── searchByName.out │ │ │ ├── searchByName.perf │ │ │ ├── searchByName.query │ │ │ ├── searchByNameCode.out │ │ │ ├── searchByNameCode.perf │ │ │ ├── searchByNameCode.query │ │ │ ├── searchByNameKind.out │ │ │ ├── searchByNameKind.perf │ │ │ ├── searchByNameKind.query │ │ │ ├── searchByNameKindAndLanguage.out │ │ │ ├── searchByNameKindAndLanguage.perf │ │ │ ├── searchByNameKindAndLanguage.query │ │ │ ├── searchSymbol.out │ │ │ ├── searchSymbol.perf │ │ │ ├── searchSymbol.query │ │ │ ├── srcfile.out │ │ │ ├── srcfile.perf │ │ │ ├── srcfile.query │ │ │ ├── symbol.out │ │ │ ├── symbol.perf │ │ │ ├── symbol.query │ │ │ ├── symbolkind.out │ │ │ ├── symbolkind.perf │ │ │ └── symbolkind.query │ ├── swift │ │ ├── Glean │ │ │ └── Indexer │ │ │ │ └── Swift.hs │ │ └── tests │ │ │ └── regression │ │ │ ├── CIBCanvas │ │ │ ├── CIBCanvasBallView.swift │ │ │ └── CIBCanvasView.swift │ │ │ ├── definition.out │ │ │ ├── definition.perf │ │ │ ├── definition.query │ │ │ ├── displayName.out │ │ │ ├── displayName.perf │ │ │ ├── displayName.query │ │ │ ├── displayNameSymbol.out │ │ │ ├── displayNameSymbol.perf │ │ │ ├── displayNameSymbol.query │ │ │ ├── documentation.out │ │ │ ├── documentation.perf │ │ │ ├── documentation.query │ │ │ ├── fileLanguage.out │ │ │ ├── fileLanguage.perf │ │ │ ├── fileLanguage.query │ │ │ ├── fileRange.out │ │ │ ├── fileRange.perf │ │ │ ├── fileRange.query │ │ │ ├── isImplementation.out │ │ │ ├── isImplementation.perf │ │ │ ├── isImplementation.query │ │ │ ├── localName.out │ │ │ ├── localName.perf │ │ │ ├── localName.query │ │ │ ├── metadata.out │ │ │ ├── metadata.perf │ │ │ ├── metadata.query │ │ │ ├── reference.out │ │ │ ├── reference.perf │ │ │ ├── reference.query │ │ │ ├── scipSymbolSearch_container.out │ │ │ ├── scipSymbolSearch_container.perf │ │ │ ├── scipSymbolSearch_container.query │ │ │ ├── scipSymbolSearch_method.out │ │ │ ├── scipSymbolSearch_method.perf │ │ │ ├── scipSymbolSearch_method.query │ │ │ ├── symbolDocumentation.out │ │ │ ├── symbolDocumentation.perf │ │ │ ├── symbolDocumentation.query │ │ │ ├── symbolKind.out │ │ │ ├── symbolKind.perf │ │ │ ├── symbolKind.query │ │ │ ├── symbolName.out │ │ │ ├── symbolName.perf │ │ │ ├── symbolName.query │ │ │ ├── symbolUSR.out │ │ │ ├── symbolUSR.perf │ │ │ ├── symbolUSR.query │ │ │ ├── symbols.out │ │ │ ├── symbols.perf │ │ │ ├── symbols.query │ │ │ ├── usrSymbol.out │ │ │ ├── usrSymbol.perf │ │ │ ├── usrSymbol.query │ │ │ ├── usrToDef.out │ │ │ ├── usrToDef.perf │ │ │ └── usrToDef.query │ ├── typescript-lsif │ │ └── tests │ │ │ └── cases │ │ │ └── xrefs │ │ │ ├── example.ts │ │ │ └── tsconfig.json │ └── typescript │ │ ├── Glean │ │ └── Indexer │ │ │ └── Typescript.hs │ │ └── tests │ │ └── cases │ │ └── xrefs │ │ ├── codemarkup_entityinfo.out │ │ ├── codemarkup_entityinfo.perf │ │ ├── codemarkup_entityinfo.query │ │ ├── codemarkup_entitylocation.out │ │ ├── codemarkup_entitylocation.perf │ │ ├── codemarkup_entitylocation.query │ │ ├── codemarkup_entityuses.out │ │ ├── codemarkup_entityuses.perf │ │ ├── codemarkup_entityuses.query │ │ ├── codemarkup_fileentityxrefs.out │ │ ├── codemarkup_fileentityxrefs.perf │ │ ├── codemarkup_fileentityxrefs.query │ │ ├── codemarkup_resolvelocation.out │ │ ├── codemarkup_resolvelocation.perf │ │ ├── codemarkup_resolvelocation.query │ │ ├── definition.out │ │ ├── definition.perf │ │ ├── definition.query │ │ ├── definitionlocation.out │ │ ├── definitionlocation.perf │ │ ├── definitionlocation.query │ │ ├── definitionuse.out │ │ ├── definitionuse.perf │ │ ├── definitionuse.query │ │ ├── defn_documentation.out │ │ ├── defn_documentation.perf │ │ ├── defn_documentation.query │ │ ├── documentation.out │ │ ├── documentation.perf │ │ ├── documentation.query │ │ ├── entity.out │ │ ├── entity.perf │ │ ├── entity.query │ │ ├── example.ts │ │ ├── filelanguage.out │ │ ├── filelanguage.perf │ │ ├── filelanguage.query │ │ ├── filerange.out │ │ ├── filerange.perf │ │ ├── filerange.query │ │ ├── localname.out │ │ ├── localname.perf │ │ ├── localname.query │ │ ├── metadata.out │ │ ├── metadata.perf │ │ ├── metadata.query │ │ ├── references.out │ │ ├── references.perf │ │ ├── references.query │ │ ├── referencetarget.out │ │ ├── referencetarget.perf │ │ ├── referencetarget.query │ │ ├── srcfile.out │ │ ├── srcfile.perf │ │ ├── srcfile.query │ │ ├── symbol.out │ │ ├── symbol.perf │ │ ├── symbol.query │ │ ├── symbolkind.out │ │ ├── symbolkind.perf │ │ ├── symbolkind.query │ │ └── tsconfig.json ├── lib │ ├── Glean │ │ ├── Derive.hs │ │ ├── Server │ │ │ └── Spawn.hs │ │ ├── Util │ │ │ ├── CxxXRef.hs │ │ │ ├── Declarations.hs │ │ │ ├── PredMap.hs │ │ │ ├── PredSet.hs │ │ │ ├── Range.hs │ │ │ ├── Same.hs │ │ │ ├── ShowSchemaId.hs │ │ │ ├── ToAngle.hs │ │ │ └── XRefs.hs │ │ └── Write │ │ │ └── SimpleAsync.hs │ └── tests │ │ └── RangeTest.hs ├── lsp │ ├── CHANGELOG.md │ ├── Data │ │ └── Path.hs │ ├── Glean │ │ └── LSP.hs │ ├── LICENSE │ ├── README.md │ └── glean-lsp.cabal ├── rocksdb │ ├── container-impl.cpp │ ├── container-impl.h │ ├── database-impl.cpp │ ├── database-impl.h │ ├── ffi.cpp │ ├── ffi.h │ ├── ownership.cpp │ ├── rocksdb.cpp │ ├── rocksdb.h │ ├── stats.cpp │ ├── stats.h │ ├── tests │ │ ├── exits_with_0.sh │ │ └── ffi_works_as_c.c │ └── util.h ├── rts │ ├── benchmarking │ │ ├── factblock.cpp │ │ ├── factblock.h │ │ ├── ffi.cpp │ │ └── ffi.h │ ├── binary.cpp │ ├── binary.h │ ├── bytecode │ │ ├── subroutine.cpp │ │ ├── subroutine.h │ │ └── syscall.h │ ├── cache.cpp │ ├── cache.h │ ├── define.cpp │ ├── define.h │ ├── densemap.h │ ├── error.cpp │ ├── error.h │ ├── fact.cpp │ ├── fact.h │ ├── factset.cpp │ ├── factset.h │ ├── ffi.cpp │ ├── ffi.h │ ├── id.h │ ├── inventory.cpp │ ├── inventory.h │ ├── json.cpp │ ├── json.h │ ├── lookup.cpp │ ├── lookup.h │ ├── nat.cpp │ ├── nat.h │ ├── ondemand.h │ ├── ownership.cpp │ ├── ownership.h │ ├── ownership │ │ ├── derived.cpp │ │ ├── derived.h │ │ ├── fallbackavx.h │ │ ├── pool.h │ │ ├── setu32.cpp │ │ ├── setu32.h │ │ ├── slice.cpp │ │ ├── slice.h │ │ ├── triearray.h │ │ ├── uset.cpp │ │ └── uset.h │ ├── prim.cpp │ ├── prim.h │ ├── query.cpp │ ├── query.h │ ├── sanity.cpp │ ├── sanity.h │ ├── serialize.h │ ├── set.cpp │ ├── set.h │ ├── stacked.h │ ├── stats.cpp │ ├── stats.h │ ├── store.h │ ├── string.cpp │ ├── string.h │ ├── substitution.cpp │ ├── substitution.h │ ├── tests │ │ ├── BinaryTest.cpp │ │ ├── CacheTest.cpp │ │ ├── DenseMapTest.cpp │ │ ├── LookupInvariants.cpp │ │ ├── NatBenchmark.cpp │ │ ├── NatTest.cpp │ │ ├── OwnershipTest.cpp │ │ ├── SubstitutionTest.cpp │ │ ├── TrieArrayTest.cpp │ │ ├── VarintBenchmark.cpp │ │ ├── arbitrary.h │ │ ├── ffi_works_as_c.c │ │ └── uniform.h │ ├── thrift.cpp │ ├── thrift.h │ ├── timer.cpp │ ├── timer.h │ ├── validate.cpp │ └── validate.h ├── schema │ ├── gen │ │ ├── Glean │ │ │ └── Schema │ │ │ │ └── Gen │ │ │ │ ├── Cpp.hs │ │ │ │ ├── HackJson.hs │ │ │ │ ├── Haskell.hs │ │ │ │ ├── Main.hs │ │ │ │ ├── OCaml.hs │ │ │ │ ├── Python.hs │ │ │ │ ├── Rust.hs │ │ │ │ ├── Thrift.hs │ │ │ │ └── Utils.hs │ │ └── tests │ │ │ └── schema_index_test.sh │ └── source │ │ ├── VERSION │ │ ├── anglelang.angle │ │ ├── buck.angle │ │ ├── builtin.angle │ │ ├── chef.angle │ │ ├── code.angle │ │ ├── code.anglelang.angle │ │ ├── code.buck.angle │ │ ├── code.chef.angle │ │ ├── code.csharp.angle │ │ ├── code.cxx.angle │ │ ├── code.dataswarm.angle │ │ ├── code.erlang.angle │ │ ├── code.fbthrift.angle │ │ ├── code.flow.angle │ │ ├── code.graphql.angle │ │ ├── code.hack.angle │ │ ├── code.hs.angle │ │ ├── code.java.angle │ │ ├── code.kotlin.angle │ │ ├── code.lsif.angle │ │ ├── code.pp.angle │ │ ├── code.python.angle │ │ ├── code.scip.angle │ │ ├── code.swift.angle │ │ ├── codelens.angle │ │ ├── codemarkup.angle │ │ ├── codemarkup.anglelang.angle │ │ ├── codemarkup.buck.angle │ │ ├── codemarkup.chef.angle │ │ ├── codemarkup.csharp.angle │ │ ├── codemarkup.cxx.angle │ │ ├── codemarkup.dataswarm.angle │ │ ├── codemarkup.erlang.angle │ │ ├── codemarkup.fbthrift.angle │ │ ├── codemarkup.flow.angle │ │ ├── codemarkup.graphql.angle │ │ ├── codemarkup.hack.angle │ │ ├── codemarkup.haskell.angle │ │ ├── codemarkup.java.angle │ │ ├── codemarkup.kotlin.angle │ │ ├── codemarkup.lsif.angle │ │ ├── codemarkup.pp.angle │ │ ├── codemarkup.python.angle │ │ ├── codemarkup.scip.angle │ │ ├── codemarkup.search.angle │ │ ├── codemarkup.swift.angle │ │ ├── codemarkup.types.angle │ │ ├── codemarkup.yaml.angle │ │ ├── codemetrics.angle │ │ ├── csharp.angle │ │ ├── cxx.angle │ │ ├── dataswarm.angle │ │ ├── digest.angle │ │ ├── dyn.angle │ │ ├── erlang.angle │ │ ├── fbthrift.angle │ │ ├── flow.angle │ │ ├── gencode.angle │ │ ├── github │ │ └── schema.angle │ │ ├── glass.angle │ │ ├── graphql.angle │ │ ├── hack.angle │ │ ├── hs.angle │ │ ├── indexer.angle │ │ ├── java.alpha.angle │ │ ├── javakotlin.angle │ │ ├── kotlin.angle │ │ ├── lsif.angle │ │ ├── lsif.types.angle │ │ ├── pp.angle │ │ ├── python.angle │ │ ├── python.branches.angle │ │ ├── scip.angle │ │ ├── search.anglelang.angle │ │ ├── search.buck.angle │ │ ├── search.code.angle │ │ ├── search.cxx.angle │ │ ├── search.erlang.angle │ │ ├── search.flow.angle │ │ ├── search.hack.angle │ │ ├── search.hs.angle │ │ ├── search.java.angle │ │ ├── search.kind.cxx.angle │ │ ├── search.kotlin.angle │ │ ├── search.pp.angle │ │ ├── search.python.angle │ │ ├── src.angle │ │ ├── swift.angle │ │ ├── symbolid.cxx.angle │ │ ├── symbolid.java.angle │ │ ├── symbolid.kotlin.angle │ │ ├── test.angle │ │ └── yaml.angle ├── server │ └── Glean │ │ ├── Handler.hs │ │ ├── Server.hs │ │ └── Server │ │ ├── Config.hs │ │ └── Sharding.hs ├── shell │ ├── Glean │ │ ├── Shell.hs │ │ └── Shell │ │ │ ├── Error.hs │ │ │ ├── Index.hs │ │ │ ├── Terminal.hs │ │ │ └── Types.hs │ ├── shell │ └── tests │ │ ├── derived.glean │ │ ├── error.glean │ │ ├── expr.glean │ │ ├── integration │ │ ├── setup.sh │ │ └── test-shell.t │ │ ├── keyvalue.glean │ │ ├── lsan.supp │ │ ├── owner.glean │ │ └── shell_test.py ├── test │ ├── README.md │ ├── cpp │ │ └── compact.cpp │ ├── lib │ │ ├── Glean │ │ │ └── Database │ │ │ │ ├── Catalog │ │ │ │ └── Test.hs │ │ │ │ └── Test.hs │ │ ├── MakeTestDB.hs │ │ ├── TestBatch.hs │ │ ├── TestDB.hs │ │ └── TestData.hs │ ├── regression │ │ ├── Glean │ │ │ └── Regression │ │ │ │ ├── Config.hs │ │ │ │ ├── Driver │ │ │ │ └── External.hs │ │ │ │ ├── Indexer.hs │ │ │ │ ├── Snapshot.hs │ │ │ │ ├── Snapshot │ │ │ │ ├── Driver.hs │ │ │ │ ├── Options.hs │ │ │ │ ├── Query.hs │ │ │ │ ├── Result.hs │ │ │ │ └── Transform.hs │ │ │ │ └── Test.hs │ │ └── example │ │ │ └── external │ │ │ └── glean-write │ │ │ ├── 1 │ │ │ ├── batch.json │ │ │ ├── main.out │ │ │ └── main.query │ │ │ └── 2 │ │ │ ├── batch.json │ │ │ ├── main.out │ │ │ └── main.query │ ├── tests │ │ ├── Angle │ │ │ ├── AngleTest.hs │ │ │ ├── ArrayTest.hs │ │ │ ├── DataTest.hs │ │ │ ├── DerivedTest.hs │ │ │ ├── ErrorTest.hs │ │ │ ├── MiscTest.hs │ │ │ ├── NestedTest.hs │ │ │ ├── OptTest.hs │ │ │ ├── RecExpansionTest.hs │ │ │ ├── RecursionTest.hs │ │ │ ├── SetTest.hs │ │ │ └── StoredTest.hs │ │ ├── ApiTest.hs │ │ ├── BackupTest.hs │ │ ├── CatalogTest.hs │ │ ├── ContinuationTest.hs │ │ ├── CppCatchTest.hs │ │ ├── DatabaseJanitorTest.hs │ │ ├── DbDependenciesTest.hs │ │ ├── DbDeriveTest.hs │ │ ├── DbOpenFail.hs │ │ ├── DbPropertiesTest.hs │ │ ├── EncodingTest.hs │ │ ├── FactSetTest.hs │ │ ├── GracefulShutdown.hs │ │ ├── IncrementalTest.hs │ │ ├── InventoryTest.hs │ │ ├── JSONWriteTest.hs │ │ ├── LifecycleTest.hs │ │ ├── LookupTest.hs │ │ ├── ParserTest.hs │ │ ├── PublishShardsTest.hs │ │ ├── RTSJSONTest.hs │ │ ├── RTSTest.hs │ │ ├── Schema │ │ │ ├── Basic.hs │ │ │ ├── Evolves.hs │ │ │ ├── Lib.hs │ │ │ └── Multi.hs │ │ ├── SendAndRebaseQueueTest.hs │ │ ├── TestShard.hs │ │ └── TimeoutTest.hs │ └── unit │ │ └── Glean │ │ └── Test │ │ ├── HUnit.hs │ │ └── Mock.hs ├── tools │ ├── byte-offsets-to-lines │ │ └── byte_offsets_to_lines.py │ ├── derive │ │ ├── Glean │ │ │ └── Derive │ │ │ │ ├── Digest.hs │ │ │ │ └── Digest │ │ │ │ └── Lib.hs │ │ ├── bench │ │ │ └── cases │ │ │ │ └── hack │ │ │ │ ├── .hhconfig │ │ │ │ ├── Example1.php │ │ │ │ ├── Example2.php │ │ │ │ ├── Example3.php │ │ │ │ ├── Example4.php │ │ │ │ ├── Example5.php │ │ │ │ ├── entities.out │ │ │ │ └── entities.query │ │ └── test │ │ │ ├── Derive │ │ │ └── Digest │ │ │ │ └── Test │ │ │ │ └── Driver.hs │ │ │ └── cases │ │ │ ├── cpp │ │ │ ├── .clang-format │ │ │ ├── entities.out │ │ │ ├── entity_digest.out │ │ │ ├── test.cpp │ │ │ └── test.h │ │ │ ├── entities.query │ │ │ ├── entity_digest.query │ │ │ └── python │ │ │ ├── all.py │ │ │ ├── big_lib │ │ │ ├── __init__.py │ │ │ └── relative.py │ │ │ ├── entities.out │ │ │ ├── entity_digest.out │ │ │ ├── lib.py │ │ │ ├── main.py │ │ │ └── nonindex.py │ ├── diff │ │ ├── Diff.hs │ │ ├── Main.hs │ │ ├── lib.cpp │ │ └── test │ │ │ └── DiffTest.hs │ ├── disassemble │ │ └── Disassemble.hs │ ├── gleancli │ │ ├── GleanCLI.hs │ │ ├── GleanCLI │ │ │ ├── Backup.hs │ │ │ ├── Common.hs │ │ │ ├── Complete.hs │ │ │ ├── Create.hs │ │ │ ├── Derive.hs │ │ │ ├── Finish.hs │ │ │ ├── Index.hs │ │ │ ├── Merge.hs │ │ │ ├── Query.hs │ │ │ ├── Restore.hs │ │ │ └── Write.hs │ │ ├── plugin │ │ │ └── GleanCLI │ │ │ │ ├── Types.hs │ │ │ │ └── Utils.hs │ │ └── test │ │ │ ├── setup.sh │ │ │ ├── test-glean-list.t │ │ │ └── test-glean-query.t │ └── loadgen │ │ └── LoadGenerator.hs ├── typed │ └── Glean │ │ ├── Query │ │ └── Angle.hs │ │ ├── Typed.hs │ │ └── Typed │ │ ├── Binary.hs │ │ ├── Build.hs │ │ ├── BuildFact.hs │ │ ├── Fact.hs │ │ ├── Id.hs │ │ ├── Predicate.hs │ │ └── Prim.hs ├── util │ ├── Glean │ │ ├── Impl │ │ │ ├── ConfigProvider.hs │ │ │ ├── TestConfigProvider.hs │ │ │ └── ThriftService.hs │ │ └── Util │ │ │ ├── Bisect.hs │ │ │ ├── ConfigProvider.hs │ │ │ ├── Disk.hs │ │ │ ├── IO.hs │ │ │ ├── Metric.hs │ │ │ ├── Mutex.hs │ │ │ ├── Observed.hs │ │ │ ├── Periodic.hs │ │ │ ├── Process.hs │ │ │ ├── RetryChannelException.hs │ │ │ ├── RetryRecvTimeout.hs │ │ │ ├── Service.hs │ │ │ ├── ShardManager.hs │ │ │ ├── Some.hs │ │ │ ├── ThriftService.hs │ │ │ ├── ThriftSource.hs │ │ │ ├── Throttle.hs │ │ │ ├── Trace.hs │ │ │ ├── TransitiveClosure.hs │ │ │ ├── ValueBuffer.hs │ │ │ ├── Vector.hs │ │ │ └── Warden.hs │ └── tests │ │ ├── BasicThriftService.hs │ │ ├── ConfigProviderTest.hs │ │ ├── TimeTest.hs │ │ └── WardenTest.hs ├── vscode │ ├── README.md │ ├── package.json │ ├── resources │ │ └── glean-icon.png │ └── syntaxes │ │ ├── angle.configuration.json │ │ └── angle.grammar.json ├── website │ ├── .gitignore │ ├── README.md │ ├── babel.config.js │ ├── blog │ │ ├── 2022-12-01-incremental.md │ │ └── incremental │ │ │ ├── derived.jpg │ │ │ ├── factdep1.jpg │ │ │ ├── factdep2.jpg │ │ │ ├── stack.jpg │ │ │ ├── stacked-dependency.jpg │ │ │ ├── stacked-derived.jpg │ │ │ └── stacked-incremental.jpg │ ├── docs │ │ ├── angle │ │ │ ├── advanced.md │ │ │ ├── debugging.md │ │ │ ├── efficiency.md │ │ │ ├── guide.md │ │ │ ├── intro.md │ │ │ ├── reference.md │ │ │ └── style.md │ │ ├── building.md │ │ ├── cli.md │ │ ├── databases.md │ │ ├── derived.md │ │ ├── implementation │ │ │ └── incrementality.md │ │ ├── indexer │ │ │ ├── cxx.md │ │ │ ├── dotnet.md │ │ │ ├── flow.md │ │ │ ├── hack.md │ │ │ ├── haskell.md │ │ │ ├── intro.md │ │ │ ├── lsif-go.md │ │ │ ├── lsif-java.md │ │ │ ├── lsif-rust.md │ │ │ ├── lsif-typescript.md │ │ │ └── python-scip.md │ │ ├── introduction.md │ │ ├── query │ │ │ ├── api │ │ │ │ └── haskell.md │ │ │ ├── haskell.md │ │ │ └── intro.md │ │ ├── running.md │ │ ├── schema │ │ │ ├── all.md │ │ │ ├── basic.md │ │ │ ├── changing.md │ │ │ ├── design.md │ │ │ ├── recursion.md │ │ │ ├── syntax.md │ │ │ ├── thrift.md │ │ │ ├── types.md │ │ │ └── workflow.md │ │ ├── server.md │ │ ├── shell.md │ │ ├── trying.md │ │ ├── walkthrough.md │ │ └── write.md │ ├── docusaurus.config.js │ ├── package.json │ ├── sidebars.js │ ├── src │ │ ├── css │ │ │ └── custom.css │ │ └── pages │ │ │ ├── index.js │ │ │ └── styles.module.css │ ├── static │ │ ├── .nojekyll │ │ └── img │ │ │ ├── favicon.ico │ │ │ ├── icon.png │ │ │ ├── logo.svg │ │ │ └── oss_logo.png │ ├── utils.js │ └── yarn.lock └── write │ └── Glean │ └── Write │ ├── Async.hs │ ├── Options.hs │ ├── SendAndRebaseQueue.hs │ └── SendQueue.hs ├── hie.yaml ├── index-llvm.sh ├── install_deps.sh ├── mk ├── cxx-cabal.mk ├── cxx-make.mk ├── cxx.mk ├── mode-dev.mk └── mode-opt.mk ├── quick.sh └── thrift └── annotation ├── CMakeLists.txt ├── bundled_annotations.h ├── compat.thrift ├── cpp.thrift ├── erlang.thrift ├── go.thrift ├── hack.thrift ├── internal.thrift ├── java.thrift ├── python.thrift ├── rust.thrift ├── scope.thrift └── thrift.thrift /.dockerignore: -------------------------------------------------------------------------------- 1 | dist-newstyle 2 | Dockerfile 3 | *~ -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/Glean/HEAD/.gitignore -------------------------------------------------------------------------------- /.hlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/Glean/HEAD/.hlint.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/Glean/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/Glean/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/Glean/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/Glean/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/Glean/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/Glean/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/Glean/HEAD/README.md -------------------------------------------------------------------------------- /cabal.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/Glean/HEAD/cabal.project -------------------------------------------------------------------------------- /glean.cabal.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/Glean/HEAD/glean.cabal.in -------------------------------------------------------------------------------- /glean/ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/Glean/HEAD/glean/ROADMAP.md -------------------------------------------------------------------------------- /glean/bytecode/sync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/Glean/HEAD/glean/bytecode/sync -------------------------------------------------------------------------------- /glean/cpp/glean.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/Glean/HEAD/glean/cpp/glean.cpp -------------------------------------------------------------------------------- /glean/cpp/glean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/Glean/HEAD/glean/cpp/glean.h -------------------------------------------------------------------------------- /glean/cpp/sender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/Glean/HEAD/glean/cpp/sender.h -------------------------------------------------------------------------------- /glean/lang/angle/tests/cases/srcFile.query: -------------------------------------------------------------------------------- 1 | query: src.File _ 2 | transform: [gensort, []] 3 | -------------------------------------------------------------------------------- /glean/lang/clang/tests/regression/declarations/declarations.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/clang/tests/regression/declarations/digest.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/clang/tests/regression/preprocessor/define_use.query: -------------------------------------------------------------------------------- 1 | query: pp1.DefineUse _ 2 | -------------------------------------------------------------------------------- /glean/lang/clang/tests/regression/preprocessor/objc-import1/define_use.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/clang/tests/regression/preprocessor/objc-import1/trace.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/clang/tests/regression_docblock/declarations/enum1/CxxToThrift.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/clang/tests/regression_docblock/declarations/fun1/CxxToThrift.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/clang/tests/regression_docblock/declarations/fun2/CxxToThrift.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/clang/tests/regression_docblock/declarations/typeAlias1/CxxToThrift.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/clang/tests/regression_docblock/declarations/var1/CxxToThrift.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/clang/tests/regression_docblock/declarations/var2/CxxToThrift.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/declarations/enum1/entitymodifiers.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/declarations/macro1/search_name_kind_nomatch.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/declarations/macro1/search_name_nomatch.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/declarations/macro1/search_name_nomatch_case.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/declarations/objc-property2/ivar.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/glass/namespace1/searchbyname_pp.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/CxxContainsParentEntity_decl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/CxxContainsParentEntity_defn.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/CxxFileEntityIdl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/CxxFileEntitySpellingXRefLocations.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/CxxFileEntityXMapFixedXRefLocations.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/CxxPpResolveTraceLocations.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/PpEntityTraceXRefLocations.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/builtin1/CxxContainsParentEntity_decl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/builtin1/CxxContainsParentEntity_defn.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/builtin1/CxxFileEntityIdl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/builtin1/PpEntityTraceXRefLocations.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/builtin1/codemarkup_EntitySource.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/builtin1/decltodeftodecl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/builtin1/enum_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/builtin1/enumerator_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/builtin1/ppPPEntityLocation.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/builtin1/pp_PpIncludeXRefLocations.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/builtin1/record_name_lowercase_class.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/builtin1/record_name_lowercase_struct.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/builtin1/record_name_lowercase_union.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/builtin1/search_by_name_kind.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/builtin1/search_by_name_kind_class.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/builtin1/search_by_name_kind_enum.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/builtin1/search_by_name_kind_function.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/builtin1/search_by_name_kind_namespace.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/builtin1/search_by_name_kind_no_match.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/builtin1/search_by_name_kind_struct.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/builtin1/search_by_name_kind_type.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/builtin1/search_by_name_kind_union.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/builtin1/search_by_name_kind_using.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/builtin1/search_by_name_kind_variable.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/builtin1/search_by_scope.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/builtin1/search_by_scope_record.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/builtin1/search_kind_class.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/builtin1/search_kind_class_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/builtin1/search_kind_enum.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/builtin1/search_kind_enum_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/builtin1/search_kind_namespace.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/builtin1/search_kind_namespace_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/builtin1/search_kind_struct.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/builtin1/search_kind_struct_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/builtin1/search_kind_union.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/builtin1/search_kind_union_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/builtin1/search_related_contains_child.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/builtin1/search_sensitive_exact_nokind.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/builtin1/variable_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/codemarkup_CxxEntityDefinitionBase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/codemarkup_EntityReferences_decl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/codemarkup_EntityReferences_defn.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/codemarkup_EntityReferences_enum.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/codemarkup_EntitySource.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/codemarkup_searchbyname.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/containers/CxxFileEntityIdl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/containers/PpEntityTraceXRefLocations.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/containers/decltodeftodecl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/containers/ppPPEntityLocation.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/containers/pp_PpIncludeXRefLocations.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/containers/record_name_lowercase_class.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/containers/search_by_name_kind.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/containers/search_by_name_kind_class.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/containers/search_by_scope_record.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/containers/search_kind_class.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/containers/search_kind_class_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/containers/search_kind_enum_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/containers/search_kind_namespace.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/containers/search_kind_namespace_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/containers/search_kind_struct_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/containers/search_kind_union_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/cxxFileXRefs.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/cxx_entity_location.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/decltodeftodecl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/enum_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/enumerator_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/fileentities.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/fileentityinfo.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/fileentityxrefkind.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/fileentityxrefs.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/fileentityxrefsgeneric.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/filexrefmap.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/function_name_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro1/CxxFileEntityIdl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro1/enum_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro1/enumerator_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro1/pp_PpIncludeXRefLocations.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro1/record_name_lowercase_class.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro1/record_name_lowercase_union.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro1/search_by_name_kind.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro1/search_by_name_kind_class.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro1/search_by_name_kind_enum.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro1/search_by_name_kind_enumerator.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro1/search_by_name_kind_function.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro1/search_by_name_kind_namespace.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro1/search_by_name_kind_no_match.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro1/search_by_name_kind_struct.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro1/search_by_name_kind_type.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro1/search_by_name_kind_union.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro1/search_by_name_kind_using.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro1/search_by_name_kind_variable.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro1/search_by_scope.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro1/search_by_scope_record.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro1/search_kind_class.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro1/search_kind_class_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro1/search_kind_enum.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro1/search_kind_enum_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro1/search_kind_namespace.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro1/search_kind_namespace_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro1/search_kind_struct_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro1/search_kind_union.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro1/search_kind_union_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro1/srcfiles.out: -------------------------------------------------------------------------------- 1 | [ "@generated", { "key": "test.cpp" } ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro1/typealias_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro2/CxxContainsParentEntity_decl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro2/CxxContainsParentEntity_defn.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro2/CxxFileEntityIdl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro2/decltodeftodecl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro2/enum_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro2/enumerator_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro2/pp_PpIncludeXRefLocations.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro2/record_name_lowercase_class.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro2/record_name_lowercase_struct.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro2/record_name_lowercase_union.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro2/search_by_name_kind.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro2/search_by_name_kind_class.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro2/search_by_name_kind_enum.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro2/search_by_name_kind_enumerator.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro2/search_by_name_kind_function.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro2/search_by_name_kind_namespace.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro2/search_by_name_kind_no_match.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro2/search_by_name_kind_struct.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro2/search_by_name_kind_type.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro2/search_by_name_kind_union.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro2/search_by_name_kind_using.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro2/search_by_name_kind_variable.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro2/search_by_scope.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro2/search_by_scope_record.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro2/search_insensitive_exact_nokind.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro2/search_kind_class.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro2/search_kind_class_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro2/search_kind_enum.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro2/search_kind_enum_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro2/search_kind_namespace.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro2/search_kind_namespace_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro2/search_kind_struct.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro2/search_kind_struct_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro2/search_kind_union.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro2/search_kind_union_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro2/search_related_contains_child.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro2/search_sensitive_exact_language.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro2/search_sensitive_exact_nokind.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro2/search_sensitive_prefix_nokind.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro2/srcfiles.out: -------------------------------------------------------------------------------- 1 | [ "@generated", { "key": "test.cpp" } ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro2/typealias_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro2/variable_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro3/CxxContainsParentEntity_decl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro3/CxxContainsParentEntity_defn.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro3/CxxFileEntityIdl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro3/decltodeftodecl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro3/enum_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro3/enumerator_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro3/pp_PpIncludeXRefLocations.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro3/record_name_lowercase_class.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro3/record_name_lowercase_struct.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro3/record_name_lowercase_union.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro3/search_by_name_kind.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro3/search_by_name_kind_class.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro3/search_by_name_kind_enum.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro3/search_by_name_kind_enumerator.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro3/search_by_name_kind_function.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro3/search_by_name_kind_namespace.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro3/search_by_name_kind_no_match.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro3/search_by_name_kind_struct.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro3/search_by_name_kind_type.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro3/search_by_name_kind_union.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro3/search_by_name_kind_using.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro3/search_by_name_kind_variable.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro3/search_by_scope.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro3/search_by_scope_record.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro3/search_insensitive_exact_nokind.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro3/search_kind_class.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro3/search_kind_class_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro3/search_kind_enum.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro3/search_kind_enum_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro3/search_kind_namespace.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro3/search_kind_namespace_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro3/search_kind_struct.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro3/search_kind_struct_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro3/search_kind_union.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro3/search_kind_union_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro3/search_related_contains_child.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro3/search_sensitive_exact_language.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro3/search_sensitive_exact_nokind.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro3/srcfiles.out: -------------------------------------------------------------------------------- 1 | [ "@generated", { "key": "test.cpp" } ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro3/typealias_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro3/variable_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro4/CxxContainsParentEntity_decl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro4/CxxContainsParentEntity_defn.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro4/CxxFileEntityIdl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro4/decltodeftodecl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro4/enum_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro4/enumerator_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro4/record_name_lowercase_class.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro4/record_name_lowercase_struct.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro4/record_name_lowercase_union.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro4/search_by_name_kind.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro4/search_by_name_kind_class.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro4/search_by_name_kind_enum.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro4/search_by_name_kind_enumerator.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro4/search_by_name_kind_function.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro4/search_by_name_kind_namespace.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro4/search_by_name_kind_no_match.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro4/search_by_name_kind_struct.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro4/search_by_name_kind_type.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro4/search_by_name_kind_union.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro4/search_by_name_kind_using.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro4/search_by_name_kind_variable.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro4/search_by_scope.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro4/search_by_scope_record.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro4/search_kind_class.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro4/search_kind_class_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro4/search_kind_enum.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro4/search_kind_enum_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro4/search_kind_namespace.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro4/search_kind_namespace_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro4/search_kind_struct.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro4/search_kind_struct_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro4/search_kind_union.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro4/search_kind_union_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro4/search_related_contains_child.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro4/typealias_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/macro4/variable_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/member-xlang/codemarkup_EntitySource.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/member-xlang/decltodeftodecl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/member-xlang/enum_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/member-xlang/enumerator_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/member-xlang/ppPPEntityLocation.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/member-xlang/pp_PpIncludeXRefLocations.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/member-xlang/search_by_name_kind.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/member-xlang/search_by_name_kind_class.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/member-xlang/search_by_name_kind_enum.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/member-xlang/search_by_name_kind_type.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/member-xlang/search_by_name_kind_union.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/member-xlang/search_by_name_kind_using.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/member-xlang/search_by_scope.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/member-xlang/search_by_scope_record.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/member-xlang/search_kind_class.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/member-xlang/search_kind_class_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/member-xlang/search_kind_enum.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/member-xlang/search_kind_enum_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/member-xlang/search_kind_namespace.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/member-xlang/search_kind_namespace_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/member-xlang/search_kind_struct.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/member-xlang/search_kind_struct_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/member-xlang/search_kind_union.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/member-xlang/search_kind_union_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/member-xlang/typealias_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/member-xlang/variable_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/member1/CxxFileEntityIdl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/member1/PpEntityTraceXRefLocations.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/member1/decltodeftodecl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/member1/enum_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/member1/enumerator_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/member1/ppPPEntityLocation.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/member1/pp_PpIncludeXRefLocations.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/member1/record_name_lowercase_class.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/member1/record_name_lowercase_union.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/member1/search_by_name_kind.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/member1/search_by_name_kind_class.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/member1/search_by_name_kind_enum.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/member1/search_by_name_kind_enumerator.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/member1/search_by_name_kind_function.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/member1/search_by_name_kind_namespace.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/member1/search_by_name_kind_no_match.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/member1/search_by_name_kind_struct.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/member1/search_by_name_kind_type.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/member1/search_by_name_kind_union.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/member1/search_by_name_kind_using.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/member1/search_by_name_kind_variable.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/member1/search_by_scope.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/member1/search_by_scope_record.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/member1/search_kind_class.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/member1/search_kind_class_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/member1/search_kind_enum.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/member1/search_kind_enum_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/member1/search_kind_namespace.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/member1/search_kind_namespace_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/member1/search_kind_struct_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/member1/search_kind_union.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/member1/search_kind_union_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/member1/typealias_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/multifile-xlang/decltodeftodecl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/multifile-xlang/enum_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/multifile-xlang/enumerator_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/multifile-xlang/search_by_name_kind.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/multifile-xlang/search_by_scope.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/multifile-xlang/search_by_scope_record.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/multifile-xlang/search_kind_class.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/multifile-xlang/search_kind_class_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/multifile-xlang/search_kind_enum.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/multifile-xlang/search_kind_enum_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/multifile-xlang/search_kind_namespace.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/multifile-xlang/search_kind_struct.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/multifile-xlang/search_kind_struct_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/multifile-xlang/search_kind_union.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/multifile-xlang/search_kind_union_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/multifile-xlang/typealias_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/multifile-xlang/variable_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/multifile1/CxxFileEntityIdl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/multifile1/decltodeftodecl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/multifile1/enum_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/multifile1/enumerator_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/multifile1/record_name_lowercase_class.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/multifile1/record_name_lowercase_union.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/multifile1/search_by_name_kind.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/multifile1/search_by_name_kind_class.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/multifile1/search_by_name_kind_enum.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/multifile1/search_by_name_kind_struct.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/multifile1/search_by_name_kind_type.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/multifile1/search_by_name_kind_union.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/multifile1/search_by_name_kind_using.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/multifile1/search_by_scope.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/multifile1/search_by_scope_record.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/multifile1/search_kind_class.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/multifile1/search_kind_class_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/multifile1/search_kind_enum.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/multifile1/search_kind_enum_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/multifile1/search_kind_namespace.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/multifile1/search_kind_namespace_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/multifile1/search_kind_struct_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/multifile1/search_kind_union.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/multifile1/search_kind_union_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/multifile1/typealias_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/multifile1/variable_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/multifile2/CxxFileEntityIdl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/multifile2/decltodeftodecl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/multifile2/enum_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/multifile2/enumerator_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/multifile2/record_name_lowercase_class.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/multifile2/record_name_lowercase_union.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/multifile2/search_by_name_kind.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/multifile2/search_by_name_kind_class.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/multifile2/search_by_name_kind_enum.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/multifile2/search_by_name_kind_struct.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/multifile2/search_by_scope.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/multifile2/search_by_scope_record.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/multifile2/search_kind_class.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/multifile2/search_kind_class_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/multifile2/search_kind_enum.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/multifile2/search_kind_enum_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/multifile2/search_kind_namespace.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/multifile2/search_kind_struct_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/multifile2/search_kind_union.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/multifile2/search_kind_union_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/multifile2/typealias_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/multifile2/variable_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/namespace-nesting/cxxFileXRefs.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/namespace-nesting/decltodeftodecl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/namespace-nesting/enum_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/namespace-nesting/fileentityxrefs.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/namespace-nesting/filexrefmap.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/namespace-nesting/search_by_scope.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/namespace1/CxxFileEntityIdl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/namespace1/decltodeftodecl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/namespace1/enum_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/namespace1/enumerator_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/namespace1/ppPPEntityLocation.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/namespace1/search_by_name_kind.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/namespace1/search_by_scope_record.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/namespace1/search_kind_class.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/namespace1/search_kind_class_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/namespace1/search_kind_enum.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/namespace1/search_kind_enum_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/namespace1/search_kind_namespace.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/namespace1/search_kind_struct_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/namespace1/search_kind_union.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/namespace1/search_kind_union_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/namespace1/typealias_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/namespace1/variable_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-ivar1/CxxFileEntityIdl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-ivar1/decltodeftodecl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-ivar1/enum_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-ivar1/enumerator_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-ivar1/ppPPEntityLocation.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-ivar1/search_by_name_kind.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-ivar1/search_by_scope.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-ivar1/search_by_scope_record.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-ivar1/search_kind_class.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-ivar1/search_kind_class_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-ivar1/search_kind_enum.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-ivar1/search_kind_enum_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-ivar1/search_kind_namespace.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-ivar1/search_kind_struct.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-ivar1/search_kind_struct_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-ivar1/search_kind_union.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-ivar1/search_kind_union_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-ivar1/typealias_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-method1/CxxFileEntityIdl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-method1/decltodeftodecl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-method1/enum_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-method1/enumerator_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-method1/ppPPEntityLocation.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-method1/search_by_name_kind.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-method1/search_by_scope.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-method1/search_kind_class.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-method1/search_kind_enum.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-method1/search_kind_enum_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-method1/search_kind_struct.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-method1/search_kind_union.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-method1/typealias_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-property1/CxxFileEntityIdl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-property1/decltodeftodecl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-property1/enum_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-property1/ppPPEntityLocation.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-property1/search_by_scope.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-property1/search_kind_class.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-property1/search_kind_enum.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-property1/search_kind_struct.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-property1/search_kind_union.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-property1/variable_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-property2/CxxFileEntityIdl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-property2/enum_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-property2/ppPPEntityLocation.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-property2/search_by_scope.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-property2/search_kind_class.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-property2/search_kind_enum.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-property2/search_kind_struct.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-property2/search_kind_union.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-property2/variable_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-protocol1/CxxFileEntityIdl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-protocol1/decltodeftodecl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-protocol1/enum_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-protocol1/ppPPEntityLocation.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-protocol1/search_by_scope.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-protocol1/search_kind_class.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-protocol1/search_kind_enum.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-protocol1/search_kind_struct.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-protocol1/search_kind_union.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-protocol1/variable_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-selector1/CxxFileEntityIdl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-selector1/decltodeftodecl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-selector1/enum_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-selector1/ppPPEntityLocation.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-selector1/search_by_scope.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-selector1/search_kind_class.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-selector1/search_kind_enum.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-selector1/search_kind_struct.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-selector1/search_kind_union.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/objc-selector1/variable_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/ppPPEntityLocation.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/pp_PpIncludeXRefLocations.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/record_name_lowercase_class.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/record_name_lowercase_struct.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/record_name_lowercase_union.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/search_by_name_kind.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/search_by_name_kind_anymatch_wild.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/search_by_name_kind_class.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/search_by_name_kind_enum.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/search_by_name_kind_enumerator.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/search_by_name_kind_function.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/search_by_name_kind_namespace.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/search_by_name_kind_no_match.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/search_by_name_kind_nomatch_kind.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/search_by_name_kind_nomatch_using.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/search_by_name_kind_struct.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/search_by_name_kind_type.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/search_by_name_kind_union.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/search_by_name_kind_using.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/search_by_name_kind_variable.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/search_by_scope.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/search_by_scope_record.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/search_by_scope_record_ignorecase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/search_insensitive_exact_nokind.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/search_insensitive_prefix_nokind.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/search_kind_class.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/search_kind_class_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/search_kind_enum.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/search_kind_enum_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/search_kind_namespace.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/search_kind_namespace_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/search_kind_struct.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/search_kind_struct_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/search_kind_union.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/search_kind_union_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/search_related_contains_child.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/search_sensitive_exact_exactkind.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/search_sensitive_exact_language.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/search_sensitive_exact_nokind.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/search_sensitive_prefix_exactkind.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/search_sensitive_prefix_nokind.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/searchbyname.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/srcfiles.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template-alias1/CxxFileEntityIdl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template-alias1/enum_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template-alias1/search_by_scope.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template-alias1/search_kind_class.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template-alias1/search_kind_enum.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template-alias1/search_kind_union.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template-fun1/CxxFileEntityIdl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template-fun1/decltodeftodecl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template-fun1/enum_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template-fun1/ppPPEntityLocation.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template-fun1/search_by_name_kind.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template-fun1/search_by_scope.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template-fun1/search_kind_class.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template-fun1/search_kind_enum.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template-fun1/search_kind_union.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template-fun1/typealias_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template-fun1/variable_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template-var1/CxxFileEntityIdl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template-var1/enum_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template-var1/ppPPEntityLocation.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template-var1/search_by_name_kind.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template-var1/search_by_scope.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template-var1/search_kind_class.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template-var1/search_kind_enum.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template-var1/search_kind_struct.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template-var1/search_kind_union.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template-var1/typealias_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template1/CxxFileEntityIdl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template1/enum_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template1/enumerator_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template1/function_name_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template1/ppPPEntityLocation.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template1/search_by_name_kind.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template1/search_by_scope.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template1/search_by_scope_record.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template1/search_kind_class.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template1/search_kind_class_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template1/search_kind_enum.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template1/search_kind_enum_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template1/search_kind_namespace.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template1/search_kind_struct_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template1/search_kind_union.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template1/search_kind_union_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template1/typealias_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template2/CxxFileEntityIdl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template2/decltodeftodecl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template2/enum_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template2/enumerator_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template2/ppPPEntityLocation.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template2/search_by_name_kind.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template2/search_by_scope.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template2/search_by_scope_record.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template2/search_kind_class.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template2/search_kind_class_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template2/search_kind_enum.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template2/search_kind_enum_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template2/search_kind_namespace.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template2/search_kind_struct_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template2/search_kind_union.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template2/search_kind_union_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template2/typealias_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template2/variable_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template3/CxxFileEntityIdl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template3/decltodeftodecl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template3/enum_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template3/enumerator_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template3/ppPPEntityLocation.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template3/search_by_name_kind.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template3/search_by_scope.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template3/search_by_scope_record.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template3/search_kind_class.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template3/search_kind_class_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template3/search_kind_enum.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template3/search_kind_enum_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template3/search_kind_namespace.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template3/search_kind_struct_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template3/search_kind_union.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template3/search_kind_union_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template3/typealias_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/template3/variable_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/typealias_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-chain1/CxxFileEntityIdl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-chain1/enum_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-chain1/enumerator_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-chain1/ppPPEntityLocation.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-chain1/search_by_name_kind.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-chain1/search_by_scope.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-chain1/search_kind_class.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-chain1/search_kind_enum.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-chain1/search_kind_enum_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-chain1/search_kind_union.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-chain1/typealias_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl1/CxxFileEntityIdl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl1/enum_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl1/enumerator_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl1/ppPPEntityLocation.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl1/search_by_name_kind.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl1/search_by_scope.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl1/search_kind_class.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl1/search_kind_class_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl1/search_kind_enum.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl1/search_kind_enum_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl1/search_kind_namespace.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl1/search_kind_struct.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl1/search_kind_union.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl1/search_kind_union_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl1/typealias_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl2/CxxFileEntityIdl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl2/enum_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl2/enumerator_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl2/ppPPEntityLocation.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl2/search_by_name_kind.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl2/search_by_scope.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl2/search_kind_class.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl2/search_kind_class_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl2/search_kind_enum.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl2/search_kind_enum_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl2/search_kind_namespace.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl2/search_kind_struct.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl2/search_kind_union.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl2/search_kind_union_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl2/typealias_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl3/CxxFileEntityIdl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl3/ppPPEntityLocation.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl3/search_by_name_kind.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl3/search_by_scope.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl3/search_kind_class.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl3/search_kind_class_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl3/search_kind_enum_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl3/search_kind_namespace.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl3/search_kind_union.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl3/search_kind_union_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl4/CxxFileEntityIdl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl4/enum_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl4/enumerator_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl4/ppPPEntityLocation.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl4/search_by_name_kind.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl4/search_by_scope.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl4/search_kind_class.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl4/search_kind_class_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl4/search_kind_enum.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl4/search_kind_enum_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl4/search_kind_namespace.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl4/search_kind_union.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl4/search_kind_union_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl4/typealias_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl4/variable_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl5/CxxFileEntityIdl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl5/enum_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl5/enumerator_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl5/ppPPEntityLocation.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl5/search_by_name_kind.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl5/search_by_scope.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl5/search_kind_class.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl5/search_kind_class_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl5/search_kind_enum.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl5/search_kind_enum_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl5/search_kind_namespace.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl5/search_kind_union.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl5/search_kind_union_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl5/typealias_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl5/variable_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl6/CxxFileEntityIdl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl6/ppPPEntityLocation.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl6/search_by_name_kind.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl6/search_by_scope.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl6/search_kind_class.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl6/search_kind_class_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl6/search_kind_enum_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl6/search_kind_namespace.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl6/search_kind_union.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl6/search_kind_union_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl6/typealias_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl7/CxxFileEntityIdl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl7/decltodeftodecl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl7/enum_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl7/enumerator_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl7/ppPPEntityLocation.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl7/search_by_name_kind.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl7/search_by_scope.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl7/search_kind_class.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl7/search_kind_class_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl7/search_kind_enum.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl7/search_kind_enum_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl7/search_kind_namespace.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl7/search_kind_struct.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl7/search_kind_union.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl7/search_kind_union_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl7/typealias_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-decl7/variable_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-directive1/CxxFileEntityIdl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-directive1/enum_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-directive1/search_by_scope.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-directive1/search_kind_enum.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-directive2/CxxFileEntityIdl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-directive2/enum_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-directive2/search_by_scope.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-directive2/search_kind_enum.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-directive3/CxxFileEntityIdl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-directive3/decltodeftodecl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-directive3/enum_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-directive3/search_by_scope.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-directive3/search_kind_enum.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-directive5/CxxFileEntityIdl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-directive5/decltodeftodecl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-directive5/enum_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-directive5/search_by_scope.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-directive5/search_kind_enum.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-directive6/CxxFileEntityIdl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-directive6/decltodeftodecl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-directive6/enum_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-directive6/search_by_scope.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-directive6/search_kind_enum.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-enum1/CxxFileEntityIdl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-enum1/decltodeftodecl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-enum1/ppPPEntityLocation.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-enum1/search_by_name_kind.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-enum1/search_by_scope.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-enum1/search_kind_class.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-enum1/search_kind_class_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-enum1/search_kind_enum_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-enum1/search_kind_namespace.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-enum1/search_kind_struct.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-enum1/search_kind_union.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-enum1/search_kind_union_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-enum1/typealias_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-enum1/variable_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-enum2/CxxFileEntityIdl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-enum2/decltodeftodecl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-enum2/ppPPEntityLocation.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-enum2/search_by_name_kind.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-enum2/search_by_scope.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-enum2/search_kind_class.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-enum2/search_kind_class_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-enum2/search_kind_enum_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-enum2/search_kind_namespace.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-enum2/search_kind_struct.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-enum2/search_kind_union.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-enum2/search_kind_union_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-enum2/typealias_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-enum2/variable_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-enum3/CxxFileEntityIdl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-enum3/decltodeftodecl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-enum3/ppPPEntityLocation.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-enum3/search_by_name_kind.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-enum3/search_by_scope.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-enum3/search_kind_class.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-enum3/search_kind_class_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-enum3/search_kind_enum_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-enum3/search_kind_namespace.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-enum3/search_kind_struct.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-enum3/search_kind_union.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-enum3/search_kind_union_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-enum3/typealias_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-enum3/variable_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-lambda1/CxxFileEntityIdl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-lambda1/decltodeftodecl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-lambda1/enum_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-lambda1/ppPPEntityLocation.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-lambda1/search_by_name_kind.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-lambda1/search_by_scope.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-lambda1/search_kind_enum.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-lambda1/search_kind_struct.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-lambda1/search_kind_union.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-lambda1/typealias_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/using-lambda1/variable_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/var1/CxxFileEntityIdl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/var1/PpEntityTraceXRefLocations.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/var1/enum_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/var1/enumerator_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/var1/ppPPEntityLocation.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/var1/pp_PpIncludeXRefLocations.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/var1/record_name_lowercase_class.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/var1/record_name_lowercase_union.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/var1/search_by_name_kind.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/var1/search_by_name_kind_class.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/var1/search_by_name_kind_enum.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/var1/search_by_name_kind_function.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/var1/search_by_name_kind_no_match.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/var1/search_by_name_kind_struct.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/var1/search_by_name_kind_type.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/var1/search_by_name_kind_union.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/var1/search_by_name_kind_using.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/var1/search_by_name_kind_variable.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/var1/search_by_scope.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/var1/search_by_scope_record.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/var1/search_kind_class.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/var1/search_kind_class_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/var1/search_kind_enum.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/var1/search_kind_enum_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/var1/search_kind_namespace.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/var1/search_kind_namespace_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/var1/search_kind_struct_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/var1/search_kind_union.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/var1/search_kind_union_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/var1/typealias_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/var2/CxxFileEntityIdl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/var2/PpEntityTraceXRefLocations.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/var2/decltodeftodecl.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/var2/enum_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/var2/enumerator_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/var2/ppPPEntityLocation.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/var2/pp_PpIncludeXRefLocations.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/var2/record_name_lowercase_class.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/var2/record_name_lowercase_union.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/var2/search_by_name_kind.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/var2/search_by_name_kind_class.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/var2/search_by_name_kind_enum.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/var2/search_by_name_kind_function.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/var2/search_by_name_kind_no_match.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/var2/search_by_name_kind_struct.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/var2/search_by_name_kind_type.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/var2/search_by_name_kind_union.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/var2/search_by_name_kind_using.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/var2/search_by_name_kind_variable.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/var2/search_by_scope.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/var2/search_by_scope_record.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/var2/search_kind_class.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/var2/search_kind_class_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/var2/search_kind_enum.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/var2/search_kind_enum_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/var2/search_kind_namespace.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/var2/search_kind_namespace_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/var2/search_kind_struct_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/var2/search_kind_union.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/var2/search_kind_union_neg.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/var2/typealias_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/clang/xrefs/variable_lowercase.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/flow/cases/search/glass_search_by_name_kinds.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/flow/cases/xrefs/file_of_string_js_flow.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/flow/cases/xrefs/resolve.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/flow/cases/xrefs/search_decl_by_name_lc.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/flow/cases/xrefs/search_decl_by_name_lc_1.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/flow/cases/xrefs/search_decl_by_name_nomatch.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/flow/cases/xrefs/search_scope_sensitive_exact.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/flow/cases/xrefs/search_type_by_name_lc.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/flow/cases/xrefs/search_type_by_name_nomatch.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/flow/cases/xrefs/xref_at_loc.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/hack/cases/xrefs/entity_source.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/hack/cases/xrefs/resolve.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/hack/search/search_by_lowercase_scope.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/hack/search/search_by_scope.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/hack/search/search_by_scope_type_const.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/hack/search/search_class_by_name_nomatch.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/hack/search/search_enum_by_name_nomatch.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/hack/search/search_enumerator_by_name_nomatch.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/hack/search/search_function_by_name_nomatch.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/hack/search/search_in_container_or_enum.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/hack/search/search_in_context_const.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/hack/search/search_in_namespace.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/hack/search/search_interface_by_name_nomatch.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/hack/search/search_method_by_name_nomatch.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/hack/search/search_module_by_name_nomatch.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/hack/search/search_namespace_by_name_nomatch.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/hack/search/search_property_by_name_nomatch.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/hack/search/search_trait_by_name_nomatch.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/hack/search/search_typeconst_by_name_nomatch.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/hack/search/search_typedef_by_name_nomatch.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/python/cases/search/search_scope_long_9.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/python/cases/search/search_scope_long_9_kind.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/python/cases/xrefs/resolve.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/codemarkup/tests/thrift/cases/xrefs/entity_uses.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/erlang/tests/cases/basic/include/example.hrl: -------------------------------------------------------------------------------- 1 | -define(HELLO, 42). 2 | -------------------------------------------------------------------------------- /glean/lang/go/tests/cases/xrefs/codemarkup_entityuses.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/go/tests/cases/xrefs/codemarkup_fileentityxrefs.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/go/tests/cases/xrefs/definition.perf: -------------------------------------------------------------------------------- 1 | { "@generated": null, "scip.Definition.1": 2 } -------------------------------------------------------------------------------- /glean/lang/go/tests/cases/xrefs/definitionuse.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/go/tests/cases/xrefs/entity.perf: -------------------------------------------------------------------------------- 1 | { "@generated": null, "scip.Definition.1": 2 } -------------------------------------------------------------------------------- /glean/lang/go/tests/cases/xrefs/filerange.perf: -------------------------------------------------------------------------------- 1 | { "@generated": null, "scip.FileRange.1": 73 } -------------------------------------------------------------------------------- /glean/lang/go/tests/cases/xrefs/localname.perf: -------------------------------------------------------------------------------- 1 | { "@generated": null, "scip.SymbolName.1": 11 } -------------------------------------------------------------------------------- /glean/lang/go/tests/cases/xrefs/metadata.perf: -------------------------------------------------------------------------------- 1 | { "@generated": null, "scip.Metadata.1": 1 } -------------------------------------------------------------------------------- /glean/lang/go/tests/cases/xrefs/references.perf: -------------------------------------------------------------------------------- 1 | { "@generated": null, "scip.Reference.1": 21 } -------------------------------------------------------------------------------- /glean/lang/go/tests/cases/xrefs/referencetarget.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/go/tests/cases/xrefs/searchbylowercasename.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/go/tests/cases/xrefs/searchbylowercasename.perf: -------------------------------------------------------------------------------- 1 | { "@generated": null } -------------------------------------------------------------------------------- /glean/lang/go/tests/cases/xrefs/searchbyname.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/go/tests/cases/xrefs/searchbyname.perf: -------------------------------------------------------------------------------- 1 | { "@generated": null } -------------------------------------------------------------------------------- /glean/lang/go/tests/cases/xrefs/srcfile.out: -------------------------------------------------------------------------------- 1 | [ "@generated", { "key": "leaphash.go" } ] -------------------------------------------------------------------------------- /glean/lang/go/tests/cases/xrefs/srcfile.perf: -------------------------------------------------------------------------------- 1 | { "@generated": null, "src.File.1": 1 } -------------------------------------------------------------------------------- /glean/lang/go/tests/cases/xrefs/symbol.perf: -------------------------------------------------------------------------------- 1 | { "@generated": null, "scip.Symbol.1": 11 } -------------------------------------------------------------------------------- /glean/lang/haskell/tests/code/hsType.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/lsif/tests/cases/lsif-tsc/lsif/monikerscheme.out: -------------------------------------------------------------------------------- 1 | [ "@generated", { "key": "tsc" } ] -------------------------------------------------------------------------------- /glean/lang/lsif/tests/cases/lsif-tsc/lsif/packageinformation.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/rust-lsif/tests/cases/xrefs/searchbylowercasename.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/rust-lsif/tests/cases/xrefs/searchbylowercasename.perf: -------------------------------------------------------------------------------- 1 | { "@generated": null } -------------------------------------------------------------------------------- /glean/lang/rust-lsif/tests/cases/xrefs/searchbyname.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/rust-lsif/tests/cases/xrefs/searchbyname.perf: -------------------------------------------------------------------------------- 1 | { "@generated": null } -------------------------------------------------------------------------------- /glean/lang/rust-lsif/tests/cases/xrefs/srcfile.out: -------------------------------------------------------------------------------- 1 | [ "@generated", { "key": "src/lib.rs" } ] -------------------------------------------------------------------------------- /glean/lang/rust-scip/tests/cases/xrefs/defn_documentation.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/rust-scip/tests/cases/xrefs/documentation.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/rust-scip/tests/cases/xrefs/searchbyname.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/rust-scip/tests/cases/xrefs/srcfile.out: -------------------------------------------------------------------------------- 1 | [ "@generated", { "key": "src/lib.rs" } ] -------------------------------------------------------------------------------- /glean/lang/swift/tests/regression/documentation.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/swift/tests/regression/localName.out: -------------------------------------------------------------------------------- 1 | [ "@generated", { "key": "" } ] -------------------------------------------------------------------------------- /glean/lang/swift/tests/regression/symbolDocumentation.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/swift/tests/regression/symbolKind.out: -------------------------------------------------------------------------------- 1 | [ "@generated" ] -------------------------------------------------------------------------------- /glean/lang/typescript/tests/cases/xrefs/srcfile.out: -------------------------------------------------------------------------------- 1 | [ "@generated", { "key": "example.ts" } ] -------------------------------------------------------------------------------- /glean/lsp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/Glean/HEAD/glean/lsp/LICENSE -------------------------------------------------------------------------------- /glean/rts/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/Glean/HEAD/glean/rts/cache.h -------------------------------------------------------------------------------- /glean/rts/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/Glean/HEAD/glean/rts/error.h -------------------------------------------------------------------------------- /glean/rts/fact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/Glean/HEAD/glean/rts/fact.h -------------------------------------------------------------------------------- /glean/rts/ffi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/Glean/HEAD/glean/rts/ffi.cpp -------------------------------------------------------------------------------- /glean/rts/ffi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/Glean/HEAD/glean/rts/ffi.h -------------------------------------------------------------------------------- /glean/rts/id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/Glean/HEAD/glean/rts/id.h -------------------------------------------------------------------------------- /glean/rts/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/Glean/HEAD/glean/rts/json.h -------------------------------------------------------------------------------- /glean/rts/nat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/Glean/HEAD/glean/rts/nat.cpp -------------------------------------------------------------------------------- /glean/rts/nat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/Glean/HEAD/glean/rts/nat.h -------------------------------------------------------------------------------- /glean/rts/prim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/Glean/HEAD/glean/rts/prim.h -------------------------------------------------------------------------------- /glean/rts/query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/Glean/HEAD/glean/rts/query.h -------------------------------------------------------------------------------- /glean/rts/set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/Glean/HEAD/glean/rts/set.cpp -------------------------------------------------------------------------------- /glean/rts/set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/Glean/HEAD/glean/rts/set.h -------------------------------------------------------------------------------- /glean/rts/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/Glean/HEAD/glean/rts/stats.h -------------------------------------------------------------------------------- /glean/rts/store.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/Glean/HEAD/glean/rts/store.h -------------------------------------------------------------------------------- /glean/rts/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/Glean/HEAD/glean/rts/timer.h -------------------------------------------------------------------------------- /glean/shell/shell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/Glean/HEAD/glean/shell/shell -------------------------------------------------------------------------------- /glean/shell/tests/lsan.supp: -------------------------------------------------------------------------------- 1 | # D70272454 2 | leak:mysql_server_init 3 | -------------------------------------------------------------------------------- /glean/website/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hie.yaml: -------------------------------------------------------------------------------- 1 | cradle: 2 | cabal: 3 | -------------------------------------------------------------------------------- /index-llvm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/Glean/HEAD/index-llvm.sh -------------------------------------------------------------------------------- /install_deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/Glean/HEAD/install_deps.sh -------------------------------------------------------------------------------- /mk/cxx-cabal.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/Glean/HEAD/mk/cxx-cabal.mk -------------------------------------------------------------------------------- /mk/cxx-make.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/Glean/HEAD/mk/cxx-make.mk -------------------------------------------------------------------------------- /mk/cxx.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/Glean/HEAD/mk/cxx.mk -------------------------------------------------------------------------------- /mk/mode-dev.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/Glean/HEAD/mk/mode-dev.mk -------------------------------------------------------------------------------- /mk/mode-opt.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/Glean/HEAD/mk/mode-opt.mk -------------------------------------------------------------------------------- /quick.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/Glean/HEAD/quick.sh --------------------------------------------------------------------------------