Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:urlRecord
(Results
1 - 3
of
3
) sorted by relevance
/third_party/node/test/fixtures/wpt/url/
H
A
D
url-setters-stripping.any.js
12
function
urlRecord
(scheme) {
function
31
const url =
urlRecord
(scheme);
39
const url =
urlRecord
(scheme);
55
const url =
urlRecord
(scheme);
70
const url =
urlRecord
(scheme);
78
const url =
urlRecord
(scheme);
87
const url =
urlRecord
(scheme);
95
const url =
urlRecord
(scheme);
103
const url =
urlRecord
(scheme);
117
const url =
urlRecord
(schem
[all...]
/third_party/node/deps/undici/src/lib/websocket/
H
A
D
websocket.js
64
// 1. Let
urlRecord
be the result of applying the URL parser to url with baseURL.
65
let
urlRecord
68
urlRecord
= new URL(url, baseURL)
70
// 3. If
urlRecord
is failure, then throw a "SyntaxError" DOMException.
74
// 4. If
urlRecord
’s scheme is "http", then set
urlRecord
’s scheme to "ws".
75
if (
urlRecord
.protocol === 'http:') {
76
urlRecord
.protocol = 'ws:'
77
} else if (
urlRecord
.protocol === 'https:') {
78
// 5. Otherwise, if
urlRecord
’
[all...]
/third_party/node/deps/undici/
H
A
D
undici.js
12262
let
urlRecord
;
12264
urlRecord
= new URL(url, baseURL);
12268
if (
urlRecord
.protocol === "http:") {
12269
urlRecord
.protocol = "ws:";
12270
} else if (
urlRecord
.protocol === "https:") {
12271
urlRecord
.protocol = "wss:";
12273
if (
urlRecord
.protocol !== "ws:" &&
urlRecord
.protocol !== "wss:") {
12275
`Expected a ws: or wss: protocol, got ${
urlRecord
.protocol}`,
12279
if (
urlRecord
[all...]
Completed in 12 milliseconds