Welcome to WebKitSearch
WebKit codebase
Last build: r274042 2021-03-06T19:09:36+00:00 webkit-patch won't parse rdar://nnnnnnnn URLs in ChangeLogs
This is an indexed version of WebKit using Searchfox.
Query Language
Queries entered into the search box use exact string matching. No search operators are supported. Case insensitive matching and regular expression matching can be requested with the check boxes.
Path filtering uses globbing. A path matches even if only a substring
of the path is matched by the glob. Use the ^
and $
operators to match the beginning or end of the
path. 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 in subdirectories (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.