Lines Matching refs:code

404     function create(range, message, severity, code, source, relatedInformation) {
409 if (Is.defined(code)) {
410 result.code = code;
430 … && (Is.number(candidate.code) || Is.string(candidate.code) || Is.undefined(candidate.code))
26107 var code;
26109 code = raw.charCodeAt(i);
26110 if (!(_0 <= code && code <= _9 || code === _dot)) {
30977 …if (marker.code !== _services_lintRules_js__WEBPACK_IMPORTED_MODULE_2__["Rules"].UnknownProperty.i…
33071 code: marker.getRule().id,
36340 function isLowerAsciiHex(code) { argument
36341 return code >= 97 /* a */ && code <= 102 /* f */;
36343 function isLowerAsciiLetter(code) { argument
36344 return code >= 97 /* a */ && code <= 122 /* z */;
36346 function isUpperAsciiLetter(code) { argument
36347 return code >= 65 /* A */ && code <= 90 /* Z */;
36349 function isAsciiLetter(code) { argument
36350 return isLowerAsciiLetter(code) || isUpperAsciiLetter(code);
36762 var code = uriComponent.charCodeAt(pos);
36764 if ((code >= 97 /* a */ && code <= 122 /* z */)
36765 || (code >= 65 /* A */ && code <= 90 /* Z */)
36766 || (code >= 48 /* Digit0 */ && code <= 57 /* Digit9 */)
36767 || code === 45 /* Dash */
36768 || code === 46 /* Period */
36769 || code === 95 /* Underline */
36770 || code === 126 /* Tilde */
36771 || (allowSlash && code === 47 /* Slash */)) {
36788 var escaped = encodeTable[code];
36812 var code = path.charCodeAt(pos);
36813 if (code === 35 /* Hash */ || code === 63 /* QuestionMark */) {
36817 res += encodeTable[code];
36905 var code = path.charCodeAt(1);
36906 if (code >= 65 /* A */ && code <= 90 /* Z */) {
36907 … path = "/" + String.fromCharCode(code + 32) + ":" + path.substr(3); // "/c:".length === 3
36911 var code = path.charCodeAt(0);
36912 if (code >= 65 /* A */ && code <= 90 /* Z */) {
36913 path = String.fromCharCode(code + 32) + ":" + path.substr(2); // "/c:".length === 3
37203 var code = typeof diag.code === 'number' ? String(diag.code) : diag.code;
37211 code: code,