Home
last modified time | relevance | path

Searched refs:ch (Results 1 – 25 of 437) sorted by relevance

12345678910>>...18

/plugin/asciidocjs/node_modules/esutils/lib/
Dcode.js29 var ES6Regex, ES5Regex, NON_ASCII_WHITESPACES, IDENTIFIER_START, IDENTIFIER_PART, ch;
46 function isDecimalDigit(ch) { argument
47 return 0x30 <= ch && ch <= 0x39; // 0..9
50 function isHexDigit(ch) { argument
51 return 0x30 <= ch && ch <= 0x39 || // 0..9
52 0x61 <= ch && ch <= 0x66 || // a..f
53 0x41 <= ch && ch <= 0x46; // A..F
56 function isOctalDigit(ch) { argument
57 return ch >= 0x30 && ch <= 0x37; // 0..7
70 function isWhiteSpace(ch) { argument
[all …]
Dkeyword.js98 var i, iz, ch;
102 ch = id.charCodeAt(0);
103 if (!code.isIdentifierStartES5(ch)) {
108 ch = id.charCodeAt(i);
109 if (!code.isIdentifierPartES5(ch)) {
121 var i, iz, ch, lowCh, check;
127 ch = id.charCodeAt(i);
128 if (0xD800 <= ch && ch <= 0xDBFF) {
135 ch = decodeUtf16(ch, lowCh);
137 if (!check(ch)) {
/plugin/authssocas/vendor/apereo/phpcas/source/CAS/Request/
DCurlRequest.php70 $ch = $this->initAndConfigure();
75 $buf = curl_exec($ch);
79 'CURL error #'.curl_errno($ch).': '.curl_error($ch)
89 curl_close($ch);
107 $ch = curl_init($this->url);
109 curl_setopt_array($ch, $this->_curlOptions);
116 curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
118 curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
120 curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 1);
121 curl_setopt($ch, CURLOPT_CAINFO, $this->caCertPath);
[all …]
/plugin/evesso/phpoauthlib/src/OAuth/Common/Http/Client/
DCurlClient.php86 $ch = curl_init();
88 curl_setopt($ch, CURLOPT_URL, $endpoint->getAbsoluteUri());
96 curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'PUT');
98 curl_setopt($ch, CURLOPT_POST, true);
101 curl_setopt($ch, CURLOPT_POSTFIELDS, $requestBody);
103 curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);
107 curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
108 curl_setopt($ch, CURLOPT_MAXREDIRS, $this->maxRedirects);
111 curl_setopt($ch, CURLOPT_TIMEOUT, $this->timeout);
112 curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
[all …]
/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/Common/Http/Client/
DCurlClient.php86 $ch = curl_init();
88 curl_setopt($ch, CURLOPT_URL, $endpoint->getAbsoluteUri());
96 curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'PUT');
98 curl_setopt($ch, CURLOPT_POST, true);
101 curl_setopt($ch, CURLOPT_POSTFIELDS, $requestBody);
103 curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);
107 curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
108 curl_setopt($ch, CURLOPT_MAXREDIRS, $this->maxRedirects);
111 curl_setopt($ch, CURLOPT_TIMEOUT, $this->timeout);
112 curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
[all …]
/plugin/code3/src/
Dtz.js163 this.ch = '\0';
176 var ch = s.charAt(i);
177 if ('&' === ch) {
198 ch = decoded;
202 ch = '\0';
207 this.ch = ch;
208 return this.ch;
213 function PR_isWordChar(ch) { argument
214 return (ch >= 'a' && ch <= 'z') || (ch >= 'A' && ch <= 'Z');
217 function PR_isIdentifierStart(ch) { argument
[all …]
/plugin/wysiwyg/fckeditor/editor/filemanager/connectors/perl/
Dutil.pl50 local($ch) = @_;
52 $ch =~ s/&/&amp;/g; # &
53 $ch =~ s/\"/&quot;/g; #"
54 $ch =~ s/\'/&#39;/g; # '
55 $ch =~ s/</&lt;/g; # <
56 $ch =~ s/>/&gt;/g; # >
57 return($ch);
62 local($ch) = @_;
64 $ch =~ s/\"/\\\"/g; #"
65 return($ch);
/plugin/dw2pdf/vendor/mpdf/mpdf/src/
DRemoteContentFetcher.php32 $ch = curl_init($url);
34 curl_setopt($ch, CURLOPT_USERAGENT, $this->mpdf->curlUserAgent);
35 curl_setopt($ch, CURLOPT_HEADER, 0);
36 curl_setopt($ch, CURLOPT_NOBODY, 0);
37 curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
38 curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $this->mpdf->curlTimeout);
41 curl_setopt($ch, CURLOPT_TIMEOUT, $this->mpdf->curlExecutionTimeout);
45 curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
49 curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
50 curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
[all …]
/plugin/abc2/abc-libraries/abc2svg/
Dchord-1.js9 function chcr(b,ch){var i,v,r=[] argument
11 i=ch.length
12 while(--i>0){if(ch[i][0]==b)
14 ch=ch[i]
15 for(i=0;i<ch.length;i+=2){v=abc2svg.letmid[ch[i]]
16 switch(ch[i+1]){case'+':v+=12;break
20 function gench(sb,gch){var r,ch,b,m,n,not,a=gch.otext.match(/([A-G])([#♯b♭]?)([^/]*)\/?(.*)/),s={v:…
24 ch=[0]
27 if(!a[3]){ch=chnm[""]}else{ch=abc2svg.ch_alias[a[3]]
28 if(ch==undefined)
[all …]
/plugin/twofactorgoogleauth/
DQRCode.php269 $ch = $c1 * 45 + $c2;
270 $code[] = $ch & 0x400;
271 $code[] = $ch & 0x200;
272 $code[] = $ch & 0x100;
273 $code[] = $ch & 0x080;
274 $code[] = $ch & 0x040;
275 $code[] = $ch & 0x020;
276 $code[] = $ch & 0x010;
277 $code[] = $ch & 0x008;
278 $code[] = $ch & 0x004;
[all …]
/plugin/bugzillaxmlrpc/
Dsyntax.php71 $ch = curl_init();
72 curl_setopt_array($ch, $this->curl_opt);
74 curl_setopt($ch, CURLOPT_URL, $this->getConf('xmlrpc.cgi'));
75 curl_setopt($ch, CURLOPT_POSTFIELDS, $request);
76 curl_setopt($ch, CURLOPT_COOKIEJAR, $this->cookie_file );
77 $server_output = curl_exec($ch);
78 curl_close($ch);
97 $ch = curl_init();
98 curl_setopt_array($ch, $this->curl_opt);
101 curl_setopt($ch, CURLOPT_URL, $this->getConf('xmlrpc.cgi'));
[all …]
/plugin/authgoogle/google/io/
DGoogle_CurlIO.php89 $ch = curl_init();
90 curl_setopt_array($ch, $this->curlParams);
91 curl_setopt($ch, CURLOPT_URL, $request->getUrl());
93 curl_setopt($ch, CURLOPT_POSTFIELDS, $request->getPostBody());
102 curl_setopt($ch, CURLOPT_HTTPHEADER, $parsed);
105 curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $request->getRequestMethod());
106 curl_setopt($ch, CURLOPT_USERAGENT, $request->getUserAgent());
107 $respData = curl_exec($ch);
110 if (curl_errno($ch) == CURLE_SSL_CACERT) {
113 curl_setopt($ch, CURLOPT_CAINFO, dirname(__FILE__) . '/cacerts.pem');
[all …]
/plugin/matrixnotifier/
Dhelper.php177 $ch = curl_init($endpoint);
178 if ($ch)
190 curl_setopt($ch, CURLOPT_PROXY, $proxyAddress);
191 curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
192 curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
198 curl_setopt($ch, CURLOPT_PROXYUSERPWD, $proxyAuth );
204 curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "PUT");
205 curl_setopt($ch, CURLOPT_HTTPHEADER, array(
212 curl_setopt($ch, CURLOPT_POSTFIELDS, $json_payload);
213 curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
[all …]
/plugin/webexteamsnotifier/
Daction.php74 $ch = curl_init($webhook);
83 curl_setopt($ch, CURLOPT_PROXY, $proxyAddress);
84 curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
86 curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
91 curl_setopt($ch, CURLOPT_PROXYUSERPWD, $proxyAuth);
97 curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/json'));
100 curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
101 curl_setopt($ch, CURLOPT_POSTFIELDS, "{$json}");
102 curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
103 $result = curl_exec($ch);
[all …]
/plugin/asciidocjs/node_modules/acorn/src/
Dtokenize.js121 let ch = this.input.charCodeAt(this.pos+=startSkip)
122 while (this.pos < this.input.length && ch !== 10 && ch !== 13 && ch !== 8232 && ch !== 8233) {
124 ch = this.input.charCodeAt(this.pos)
136 let ch = this.input.charCodeAt(this.pos)
137 switch (ch) {
165 if (ch > 8 && ch < 14 || ch >= 5760 && nonASCIIwhitespace.test(String.fromCharCode(ch))) {
392 let ch = this.input.charAt(this.pos)
393 if (lineBreak.test(ch)) this.raise(start, "Unterminated regular expression")
395 if (ch === "[") inClass = true
396 else if (ch === "]" && inClass) inClass = false
[all …]
/plugin/grensladawritezor/fckeditor/editor/filemanager/browser/default/connectors/perl/
Dutil.pl50 local($ch) = @_;
52 $ch =~ s/&/&amp;/g; # &
53 $ch =~ s/\"/&quot;/g; #"
54 $ch =~ s/\'/&#39;/g; # '
55 $ch =~ s/</&lt;/g; # <
56 $ch =~ s/>/&gt;/g; # >
57 return($ch);
/plugin/linkcheck/
Dhelperfunctions.php31 $ch = curl_init($url);
32 if($o['cacertfile']) curl_setopt($ch, CURLOPT_CAINFO, $o['cacertfile']);
33 curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, $o['verifypeer']?1:0);
34 curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, ($o['verifypeername']??$o['verifypeer'])?2:0);
35 curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
36 curl_setopt($ch,CURLOPT_FOLLOWLOCATION,1);
37 curl_setopt($ch,CURLOPT_MAXREDIRS, 5);
38 curl_setopt($ch,CURLOPT_TIMEOUT,10);
39 curl_setopt($ch,CURLOPT_NOBODY, $o['nobody']?1:0);
40 …curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'GET'); #without this kaggle and amazon return 404 (maybe …
[all …]
/plugin/zotero/
DWebZoteroFeedReader.php22 $ch = curl_init();
23 curl_setopt($ch, CURLOPT_URL, $this->config->getUrlForEntries());
24 curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
25 curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
26 curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
27 $feed = curl_exec($ch);
28 curl_close($ch);
/plugin/elasticsearch/vendor/patrickschur/language-detection/resources/co/
Dco.txt5 …unsidarendu ch’ellu ci voli à ricunnoscia a dignità propria di tutti i membri di a famiglia umana …
7 Cunsidarendu chì, ùn cunniscendu o sprizzendu i diritti di l’omu, si hè ghjuntu à atti barbari chì …
9 Cunsidarendu ch’ella hè una primura maiò ch’elli sianu prutetti i diritti di l’omu da un guvernu di…
11 Cunsidarendu ch’ella hè una primura maiò di fà ch’elli si sviloppinu i leii amichevuli trà i nazion…
13ch’elli anu dittu in lu so Statutu i populi di i Nazioni Uniti ch’elli credinu in li diritti funda…
15 Cunsidarendu ch’elli anu prumissu i Stati Membri di fà, cù l’aiutu di l’Urganisazioni di i Nazioni …
17 Cunsidarendu chì par rializà isssa prumessa, hè di primura d’avè una idea cumuna d’issi diritti è l…
21 cum’è fini cumunu da ricircà da tutti i populi è tutti i nazioni, par ch’elli provinu tutti l’indiv…
27 …i culori, di sessu, di lingua, di rilighjoni, d’upinioni, pulitica o altra ch’ella sia, d’urighjin…
29 …dicu o internaziunali di u paesi o u tarritoriu duva ella campa a parsona, ch’ellu sia indipindent…
[all …]
/plugin/xtern/scripts/
Dchk_links.php40 $ch = curl_init($url);
44 curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
45 curl_setopt($ch,CURLOPT_FOLLOWLOCATION,1);
46 curl_setopt($ch, CURLOPT_MAXREDIRS, 5);
47 curl_setopt($ch,CURLOPT_TIMEOUT,10);
48 $output = curl_exec($ch);
49 $httpcode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
50 if(curl_errno($ch)){
51 return "500: " . curl_error($ch);
54 curl_close($ch);
/plugin/rocketchatnotifier/
Daction.php81 $ch = curl_init($webhook);
90 curl_setopt($ch, CURLOPT_PROXY, $proxyAddress);
91 curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
93 curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
98 curl_setopt($ch, CURLOPT_PROXYUSERPWD, $proxyAuth);
105 curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
106 curl_setopt($ch, CURLOPT_POSTFIELDS, "payload={$pay}");
107 curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
108 $result = curl_exec($ch);
112 echo 'cURL error when posting Wiki save notification to Rocket.Chat+: ' . curl_error($ch);
[all …]
/plugin/asciidocjs/node_modules/acorn/src/loose/
Dtokenize.js6 function isSpace(ch) { argument
7 return (ch < 14 && ch > 8) || ch === 32 || ch === 160 || isNewLine(ch)
61 let ch = this.input.charCodeAt(pos++)
62 if (ch === 34 || ch === 39 || isNewLine(ch)) break
88 let ch = this.input.charAt(pos - 1)
89 this.toks.exprAllowed = !ch || /[\[\{\(,;:?\/*=+\-~!|&%^<>]/.test(ch) ||
/plugin/asciidocjs/node_modules/with/node_modules/acorn/src/loose/
Dtokenize.js6 function isSpace(ch) { argument
7 return (ch < 14 && ch > 8) || ch === 32 || ch === 160 || isNewLine(ch)
61 let ch = this.input.charCodeAt(pos++)
62 if (ch === 34 || ch === 39 || isNewLine(ch)) break
88 let ch = this.input.charAt(pos - 1)
89 this.toks.exprAllowed = !ch || /[\[\{\(,;:?\/*=+\-~!|&%^<>]/.test(ch) ||
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/Curl/
DUtil.php37 * @param resource|CurlHandle $ch curl handler
42 public static function execute($ch, int $retries = 5, bool $closeAfterDone = true) argument
45 $curlResponse = curl_exec($ch);
47 $curlErrno = curl_errno($ch);
50 $curlError = curl_error($ch);
53 curl_close($ch);
63 curl_close($ch);
/plugin/asciidocjs/node_modules/with/node_modules/acorn/src/
Dtokenize.js134 let ch = this.input.charCodeAt(this.pos+=startSkip)
135 while (this.pos < this.input.length && ch !== 10 && ch !== 13 && ch !== 8232 && ch !== 8233) {
137 ch = this.input.charCodeAt(this.pos)
149 let ch = this.input.charCodeAt(this.pos)
150 switch (ch) {
178 if (ch > 8 && ch < 14 || ch >= 5760 && nonASCIIwhitespace.test(String.fromCharCode(ch))) {
405 let ch = this.input.charAt(this.pos)
406 if (lineBreak.test(ch)) this.raise(start, "Unterminated regular expression")
408 if (ch === "[") inClass = true
409 else if (ch === "]" && inClass) inClass = false
[all …]

12345678910>>...18