男主挤女主奶喝的漫画
男主挤女主奶喝的漫画Searchfox is a source code indexing tool for Mozilla Firefox. Itindexes C++, Rust, and JavaScript code. This is the help page for Searchfox.You can contribute to Searchfox! Visitour Github page.Please send bug reports toBugzilla.
Query Language
Queries entered into the search box use exact string matching. Nosearch operators are supported. Case insensitive matching and regularexpression matching can be requested with the check boxes.Path filtering uses globbing. A path matches even if only a substringof the path is matched by the glob. Use the^
and $
operators to match the beginning or end of thepath. Here are some examples:test
- Find all paths containing the substring "
test
". ^js/src
- Find all paths starting with
js/src
. *.cpp
- Find all paths containing "
.cpp
". *.cpp$
- Find all paths ending with "
.cpp
". ^js/src/*.cpp$
- Find all C++ files in
js/src
, but not insubdirectories (i.e.,*
does not match/
). ^js/src/**.cpp$
- Find all C++ files in
js/src
or in subdirectories(i.e.,**
matches/
). ^js/src/**.{cpp,h}$
- Find all C++ source or header files in
js/src
or in subdirectories.
Repositories indexed
Repository | Text search | Blame | Language semantic analysis | |||
---|---|---|---|---|---|---|
JS | IDL | C++ | Rust | |||
mozilla-central | ||||||
mozilla-mobile | ||||||
comm-central | ||||||
glean | ||||||
nss | ||||||
WHATWG HTML spec | ||||||
TC39 ECMA262 spec | ||||||
mozilla-build | ||||||
mozilla-beta | ||||||
mozilla-release | ||||||
mozilla-esr68 | ||||||
comm-esr68 | ||||||
mozilla-esr60 | ||||||
comm-esr60 | ||||||
mozilla-esr45 | ||||||
mozilla-esr31 | ||||||
mozilla-esr17 | ||||||
version-control-tools |
Cross-referencing
Once you have arrived at a file, you can mouse over identifiers. Ifthe color of the identifier changes, then clicking on the identifierwill open a context menu for cross-referencing identifiers.男主挤女主奶喝的漫画
reviveCrashedTab
” andclicking. A context menu will open and you can choose to search for all references to the symbol(definitions, assignments, and uses).In JavaScript code, a second option is sometimes offered.Try mousingover the same identifier in the following:“SessionStore.reviveCrashedTab
”.In this case, you're given the opportunity to search forSessionStore.reviveCrashedTab
(and notSessionStoreInternal.reviveCrashedTab
). Also, since there is only one definition ofSessionStore.reviveCrashedTab
, you can jump directly to it.
In some cases there is ambiguity whether to search for C++ orJavaScript implementations of an XPCOM method. Searching for themethod from C++ or JavaScript will find the same-languageimplementations of that method as well as the IDLdeclaration. Visiting the IDL declaration and searching from therewill yield all implementations.