Searched refs:utf (Results 1 - 25 of 39) sorted by relevance

12

/external/libxml2/
H A Dxmlstring.c600 * @utf: pointer to the UTF8 character
607 xmlUTF8Size(const xmlChar *utf) { argument
611 if (utf == NULL)
613 if (*utf < 0x80)
616 if (!(*utf & 0x40))
621 if (!(*utf & mask))
650 * @utf: a sequence of UTF-8 encoded bytes
658 xmlUTF8Strlen(const xmlChar *utf) { argument
661 if (utf == NULL)
664 while (*utf !
702 xmlGetUTF8Char(const unsigned char *utf, int *len) argument
773 xmlCheckUTF8(const unsigned char *utf) argument
825 xmlUTF8Strsize(const xmlChar *utf, int len) argument
858 xmlUTF8Strndup(const xmlChar *utf, int len) argument
887 xmlUTF8Strpos(const xmlChar *utf, int pos) argument
919 xmlUTF8Strloc(const xmlChar *utf, const xmlChar *utfchar) argument
956 xmlUTF8Strsub(const xmlChar *utf, int start, int len) argument
[all...]
H A Dxmlschemastypes.c5006 const xmlChar *utf; local
5011 utf = value;
5012 while (IS_BLANK_CH(*utf)) utf++;
5013 while (*utf != 0) {
5014 if (utf[0] & 0x80) {
5015 if ((utf[1] & 0xc0) != 0x80)
5017 if ((utf[0] & 0xe0) == 0xe0) {
5018 if ((utf[2] & 0xc0) != 0x80)
5020 if ((utf[
[all...]
/external/pcre/dist/
H A Dpcre_newline.c70 utf TRUE if in utf mode
77 BOOL utf)
80 (void)utf;
82 if (utf)
117 case CHAR_NEL: *lenptr = utf? 2 : 1; return TRUE;
145 utf TRUE if in utf mode
152 BOOL utf)
155 (void)utf;
76 is_newline(PCRE_PUCHAR ptr, int type, PCRE_PUCHAR endptr, int *lenptr, BOOL utf) argument
151 was_newline(PCRE_PUCHAR ptr, int type, PCRE_PUCHAR startptr, int *lenptr, BOOL utf) argument
[all...]
H A Dpcre_xclass.c67 PRIV(xclass)(pcre_uint32 c, const pcre_uchar *data, BOOL utf) argument
72 (void)utf;
75 utf = TRUE;
106 if (utf)
118 if (utf)
H A Dpcre_study.c87 BOOL utf = (options & PCRE_UTF8) != 0; local
229 if (utf && HAS_EXTRALEN(cc[-1])) cc += GET_EXTRALEN(cc[-1]);
250 if (utf && HAS_EXTRALEN(cc[-1])) cc += GET_EXTRALEN(cc[-1]);
298 if (utf) return -1;
393 ce = cs = (pcre_uchar *)PRIV(find_bracket)(startcode, utf, GET2(slot, 0));
418 ce = cs = (pcre_uchar *)PRIV(find_bracket)(startcode, utf, GET2(cc, 1));
536 if (utf && HAS_EXTRALEN(cc[-1])) cc += GET_EXTRALEN(cc[-1]);
587 utf TRUE for UTF-8 / UTF-16 / UTF-32 mode
594 compile_data *cd, BOOL utf)
602 if (utf
593 set_table_bit(pcre_uint8 *start_bits, const pcre_uchar *p, BOOL caseless, compile_data *cd, BOOL utf) argument
760 set_start_bits(const pcre_uchar *code, pcre_uint8 *start_bits, BOOL utf, compile_data *cd) argument
[all...]
H A Dpcre_printint.c118 print_char(FILE *f, pcre_uchar *ptr, BOOL utf) argument
124 (void)utf; /* Avoid compiler warning */
134 if (!utf || (c & 0xc0) != 0xc0)
170 if (!utf || (c & 0xfc00) != 0xd800)
196 if (!utf || (c & 0xfffff800u) != 0xd800u)
218 * Print uchar string (regardless of utf) *
314 BOOL utf; local
334 utf = (options & PCRE_UTF8) != 0;
374 code += 1 + print_char(f, code, utf);
385 code += 1 + print_char(f, code, utf);
[all...]
H A DRunTest349 $sim ./pcretest -C utf >/dev/null
350 utf=$?
539 if [ $utf -eq 0 ] ; then
559 if [ $utf -eq 0 ] ; then
579 if [ $utf -eq 0 -o $ucp -eq 0 ] ; then
601 if [ $utf -eq 0 -o $ucp -eq 0 ] ; then
636 if [ $utf -eq 0 ] ; then
653 if [ $utf -eq 0 -o $ucp -eq 0 ] ; then
758 elif [ $utf -eq 0 ] ; then
828 elif [ $utf
[all...]
H A Dpcre_compile.c999 BOOL utf = (options & PCRE_UTF8) != 0; local
1070 if (c > (utf ? 0x10ffffU : 0xffU))
1072 if (c > (utf ? 0x10ffffU : 0xffffU))
1074 if (utf && c > 0x10ffffU)
1079 else if (utf && c >= 0xd800 && c <= 0xdfff) *errorcodeptr = ERR73;
1254 if (!utf && c > 0xff) *errorcodeptr = ERR51;
1277 if (c > (utf ? 0x10ffffU : 0xffU)) { overflow = TRUE; break; }
1279 if (c > (utf ? 0x10ffffU : 0xffffU)) { overflow = TRUE; break; }
1281 if (utf && c > 0x10ffffU) { overflow = TRUE; break; }
1291 if (utf
1716 find_fixedlength(pcre_uchar *code, BOOL utf, BOOL atend, compile_data *cd) argument
2050 find_bracket(const pcre_uchar *code, BOOL utf, int number) argument
2185 find_recurse(const pcre_uchar *code, BOOL utf) argument
2343 could_be_empty_branch(const pcre_uchar *code, const pcre_uchar *endcode, BOOL utf, compile_data *cd, recurse_check *recurses) argument
2718 could_be_empty(const pcre_uchar *code, const pcre_uchar *endcode, branch_chain *bcptr, BOOL utf, compile_data *cd) argument
2862 get_chr_property_list(const pcre_uchar *code, BOOL utf, const pcre_uint8 *fcc, pcre_uint32 *list) argument
3067 compare_opcodes(const pcre_uchar *code, BOOL utf, const compile_data *cd, const pcre_uint32 *base_list, const pcre_uchar *base_end) argument
3602 auto_possessify(pcre_uchar *code, BOOL utf, const compile_data *cd) argument
3956 adjust_recurse(pcre_uchar *group, int adjust, BOOL utf, compile_data *cd, pcre_uchar *save_hwm) argument
4336 BOOL utf = (options & PCRE_UTF8) != 0; local
4423 BOOL utf = (options & PCRE_UTF8) != 0; local
4428 BOOL utf = FALSE; local
8793 BOOL utf; local
[all...]
H A Dpcre_byte_order.c115 BOOL utf; local
167 utf = (re->options & PCRE_UTF16) != 0;
265 if (utf) utf16_char = TRUE;
H A Dpcre_dfa_exec.c428 BOOL utf = (md->poptions & PCRE_UTF8) != 0; local
430 BOOL utf = FALSE; local
490 if (utf)
715 if (utf) { GETCHARLEN(d, (code + coptable[codevalue]), dlen); } else
1019 if (utf) { BACKCHAR(temp); }
1441 if (!utf) d = *nptr; else { GETCHARLEN(d, nptr, dlen); }
1703 if (!utf) d = *nptr; else { GETCHARLEN(d, nptr, dlen); }
1974 if (!utf) d = *nptr; else { GETCHARLEN(d, nptr, dlen); }
2126 if (utf)
2171 if (!utf)
3194 BOOL utf, anchored, startline, firstline; local
[all...]
H A Dpcre_jit_test.c90 \xf4\x8f\xbf\xbf = 0x10ffff = 1114111 (highest allowed utf character)
1127 int utf = 0, ucp = 0; local
1160 utf or ucp may make tests fail, if the pcre_exec result is the SAME, it is
1175 pcre_config(PCRE_CONFIG_UTF8, &utf);
1178 pcre16_config(PCRE_CONFIG_UTF16, &utf);
1181 pcre32_config(PCRE_CONFIG_UTF32, &utf);
1185 if (!utf)
1190 printf(" in 8 bit mode with UTF-8 %s and ucp %s:\n", utf ? "enabled" : "disabled", ucp ? "enabled" : "disabled");
1193 printf(" in 16 bit mode with UTF-16 %s and ucp %s:\n", utf ? "enabled" : "disabled", ucp ? "enabled" : "disabled");
1196 printf(" in 32 bit mode with UTF-32 %s and ucp %s:\n", utf
[all...]
H A Dpcre_exec.c134 BOOL utf = md->utf; local
171 BOOL utf = md->utf; local
199 if (utf)
490 the md structure (e.g. utf, end_subject) into individual variables to improve
524 register BOOL utf; /* Local copy of UTF flag for speed */ local
716 utf = md->utf; /* Local copy of the flag */
718 utf
6356 BOOL utf; local
[all...]
H A DRunTest.bat15 @rem tests 4 5 9 15 and 18 require utf support
58 %pcretest% -C utf >NUL
59 set utf=%ERRORLEVEL% variable
328 if %utf% EQU 0 (
338 if %utf% EQU 0 (
373 if %utf% EQU 0 (
436 if %utf% EQU 0 (
474 if %utf% EQU 0 (
530 if %utf% EQU 0 (
562 if %utf
[all...]
H A Dpcre_internal.h316 &(NLBLOCK->nllen), utf)) \
330 &(NLBLOCK->nllen), utf)) \
722 if (utf && c >= 0xc0) GETUTF8(c, eptr);
736 if (utf && c >= 0xc0) GETUTF8INC(c, eptr);
788 if (utf && c >= 0xc0) GETUTF8LEN(c, eptr, len);
841 if (utf && (c & 0xfc00) == 0xd800) GETUTF16(c, eptr);
861 if (utf && (c & 0xfc00) == 0xd800) GETUTF16INC(c, eptr);
883 if (utf && (c & 0xfc00) == 0xd800) GETUTF16LEN(c, eptr, len);
1831 used for [^] in JavaScript compatibility mode, and for \C in non-utf mode. In
2516 BOOL utf; /* UT member in struct:match_data
[all...]
H A Dpcre_jit_compile.c423 BOOL utf; member in struct:compiler_common
739 if (common->utf && HAS_EXTRALEN(cc[-1])) cc += GET_EXTRALEN(cc[-1]);
761 if (common->utf) return NULL;
1218 if (common->utf && HAS_EXTRALEN(cc[-1])) cc += GET_EXTRALEN(cc[-1]);
1594 if (common->utf && HAS_EXTRALEN(cc[-1])) cc += GET_EXTRALEN(cc[-1]);
1603 if (common->utf && HAS_EXTRALEN(cc[-1])) cc += GET_EXTRALEN(cc[-1]);
1612 if (common->utf && HAS_EXTRALEN(cc[-1])) cc += GET_EXTRALEN(cc[-1]);
1786 if (common->utf && HAS_EXTRALEN(cc[-1])) cc += GET_EXTRALEN(cc[-1]);
1799 if (common->utf && HAS_EXTRALEN(cc[-1])) cc += GET_EXTRALEN(cc[-1]);
1812 if (common->utf
4742 BOOL utf = common->utf; local
[all...]
H A Dpcretest.c1679 utf true if UTF-8 (to be converted to UTF-16)
1689 to16(int data, pcre_uint8 *p, int utf, int len) argument
1707 if (!utf && !data)
1724 if (!utf) return -3;
1758 utf true if UTF-8 (to be converted to UTF-32)
1768 to32(int data, pcre_uint8 *p, int utf, int len) argument
1786 if (!utf && !data)
1798 if (utf)
2087 /* Must handle UTF-16 strings in utf mode. Yields number of characters printed.
2126 /* Must handle UTF-32 strings in utf mod
2129 pchars32(PCRE_SPTR32 p, int length, BOOL utf, FILE *f) argument
2499 BOOL utf = (re->options & PCRE_UTF16) != 0; local
[all...]
/external/libxml2/include/libxml/
H A Dxmlstring.h109 xmlGetUTF8Char (const unsigned char *utf,
112 xmlCheckUTF8 (const unsigned char *utf);
114 xmlUTF8Strsize (const xmlChar *utf,
117 xmlUTF8Strndup (const xmlChar *utf,
120 xmlUTF8Strpos (const xmlChar *utf,
123 xmlUTF8Strloc (const xmlChar *utf,
126 xmlUTF8Strsub (const xmlChar *utf,
130 xmlUTF8Strlen (const xmlChar *utf);
132 xmlUTF8Size (const xmlChar *utf);
/external/v8/test/mjsunit/
H A Dstring-slices.js182 var utf = '\u03B1\u03B2\u03B3\u03B4\u03B5\u03B6\u03B7\u03B8\u03B9\u03BA\u03BB'; variable
184 assertEquals("\u03B4\u03B7", utf.substring(3,4) + utf.substring(6,7));
186 assertEquals("\u03B1\u03B4\u03B5", utf.substring(0,1) + utf.substring(5,3));
187 assertEquals("", ascii.substring(16) + utf.substring(16));
189 ascii.substring(1,6) + utf.substring(3,9));
191 utf.substring(3,9) + ascii);
193 utf.substring(5,1) + utf
[all...]
/external/libutf/
H A DMakefile53 utf.h\
60 install -c -m 0644 utf.7 $(PREFIX)/man/man7/utf.7
64 install -c -m 0644 utf.h $(PREFIX)/include/utf.h
/external/mesa3d/src/mesa/drivers/dri/common/xmlpool/
H A DMakefile84 xgettext -L C --from-code utf-8 -o $(POT) t_options.h
/external/icu/icu4c/source/test/perf/collationperf/
H A DMakefile.in58 $(INVOKE) ./$(TARGET) -loop 200 -file $(top_srcdir)/extra/uconv/samples/utf8/utf-8-demo.txt -keygen -shifted
/external/chromium-trace/trace-viewer/tracing/third_party/components/webcomponentsjs/
H A DHTMLImports.min.js11 "undefined"==typeof WeakMap&&!function(){var e=Object.defineProperty,t=Date.now()%1e9,n=function(){this.name="__st"+(1e9*Math.random()>>>0)+(t++ +"__")};n.prototype={set:function(t,n){var r=t[this.name];return r&&r[0]===t?r[1]=n:e(t,this.name,{value:[t,n],writable:!0}),this},get:function(e){var t;return(t=e[this.name])&&t[0]===e?t[1]:void 0},"delete":function(e){var t=e[this.name];return t&&t[0]===e?(t[0]=t[1]=void 0,!0):!1},has:function(e){var t=e[this.name];return t?t[0]===e:!1}},window.WeakMap=n}(),window.HTMLImports=window.HTMLImports||{flags:{}},function(e){function t(e,t){t=t||h,r(function(){i(e,t)},t)}function n(e){return"complete"===e.readyState||e.readyState===g}function r(e,t){if(n(t))e&&e();else{var o=function(){("complete"===t.readyState||t.readyState===g)&&(t.removeEventListener(_,o),r(e,t))};t.addEventListener(_,o)}}function o(e){e.target.__loaded=!0}function i(e,t){function n(){s==c&&e&&e()}function r(e){o(e),s++,n()}var i=t.querySelectorAll("link[rel=import]"),s=0,c=i.length;if(c)for(var d,l=0;c>l&&(d=i[l]);l++)a(d)?r.call(d,{target:d}):(d.addEventListener("load",r),d.addEventListener("error",r));else n()}function a(e){return u?e.__loaded||e["import"]&&"loading"!==e["import"].readyState:e.__importParsed}function s(e){for(var t,n=0,r=e.length;r>n&&(t=e[n]);n++)c(t)&&d(t)}function c(e){return"link"===e.localName&&"import"===e.rel}function d(e){var t=e["import"];t?o({target:e}):(e.addEventListener("load",o),e.addEventListener("error",o))}var l="import",u=Boolean(l in document.createElement("link")),m=Boolean(window.ShadowDOMPolyfill),p=function(e){return m?ShadowDOMPolyfill.wrapIfNeeded(e):e},h=p(document),f={get:function(){var e=HTMLImports.currentScript||document.currentScript||("complete"!==document.readyState?document.scripts[document.scripts.length-1]:null);return p(e)},configurable:!0};Object.defineProperty(document,"_currentScript",f),Object.defineProperty(h,"_currentScript",f);var v=/Trident|Edge/.test(navigator.userAgent),g=v?"complete":"interactive",_="readystatechange";u&&(new MutationObserver(function(e){for(var t,n=0,r=e.length;r>n&&(t=e[n]);n++)t.addedNodes&&s(t.addedNodes)}).observe(document.head,{childList:!0}),function(){if("loading"===document.readyState)for(var e,t=document.querySelectorAll("link[rel=import]"),n=0,r=t.length;r>n&&(e=t[n]);n++)d(e)}()),t(function(){HTMLImports.ready=!0,HTMLImports.readyTime=(new Date).getTime();var e=h.createEvent("CustomEvent");e.initCustomEvent("HTMLImportsLoaded",!0,!0,{}),h.dispatchEvent(e)}),e.IMPORT_LINK_TYPE=l,e.useNative=u,e.rootDocument=h,e.whenReady=t,e.isIE=v}(HTMLImports),function(e){var t=[],n=function(e){t.push(e)},r=function(){t.forEach(function(t){t(e)})};e.addModule=n,e.initializeModules=r}(HTMLImports),HTMLImports.addModule(function(e){var t=/(url\()([^)]*)(\))/g,n=/(@import[\s]+(?!url\())([^;]*)(;)/g,r={resolveUrlsInStyle:function(e){var t=e.ownerDocument,n=t.createElement("a");return e.textContent=this.resolveUrlsInCssText(e.textContent,n),e},resolveUrlsInCssText:function(e,r){var o=this.replaceUrls(e,r,t);return o=this.replaceUrls(o,r,n)},replaceUrls:function(e,t,n){return e.replace(n,function(e,n,r,o){var i=r.replace(/["']/g,"");return t.href=i,i=t.href,n+"'"+i+"'"+o})}};e.path=r}),HTMLImports.addModule(function(e){var t={async:!0,ok:function(e){return e.status>=200&&e.status<300||304===e.status||0===e.status},load:function(n,r,o){var i=new XMLHttpRequest;return(e.flags.debug||e.flags.bust)&&(n+="?"+Math.random()),i.open("GET",n,t.async),i.addEventListener("readystatechange",function(){if(4===i.readyState){var e=i.getResponseHeader("Location"),n=null;if(e)var n="/"===e.substr(0,1)?location.origin+e:e;r.call(o,!t.ok(i)&&i,i.response||i.responseText,n)}}),i.send(),i},loadDocument:function(e,t,n){this.load(e,t,n).responseType="document"}};e.xhr=t}),HTMLImports.addModule(function(e){var t=e.xhr,n=e.flags,r=function(e,t){this.cache={},this.onload=e,this.oncomplete=t,this.inflight=0,this.pending={}};r.prototype={addNodes:function(e){this.inflight+=e.length;for(var t,n=0,r=e.length;r>n&&(t=e[n]);n++)this.require(t);this.checkDone()},addNode:function(e){this.inflight++,this.require(e),this.checkDone()},require:function(e){var t=e.src||e.href;e.__nodeUrl=t,this.dedupe(t,e)||this.fetch(t,e)},dedupe:function(e,t){if(this.pending[e])return this.pending[e].push(t),!0;return this.cache[e]?(this.onload(e,t,this.cache[e]),this.tail(),!0):(this.pending[e]=[t],!1)},fetch:function(e,r){if(n.load&&console.log("fetch",e,r),e)if(e.match(/^data:/)){var o=e.split(","),i=o[0],a=o[1];a=i.indexOf(";base64")>-1?atob(a):decodeURIComponent(a),setTimeout(function(){this.receive(e,r,null,a)}.bind(this),0)}else{var s=function(t,n,o){this.receive(e,r,t,n,o)}.bind(this);t.load(e,s)}else setTimeout(function(){this.receive(e,r,{error:"href must be specified"},null)}.bind(this),0)},receive:function(e,t,n,r,o){this.cache[e]=r;for(var i,a=this.pending[e],s=0,c=a.length;c>s&&(i=a[s]);s++)this.onload(e,i,r,n,o),this.tail();this.pending[e]=null},tail:function(){--this.inflight,this.checkDone()},checkDone:function(){this.inflight||this.oncomplete()}},e.Loader=r}),HTMLImports.addModule(function(e){var t=function(e){this.addCallback=e,this.mo=new MutationObserver(this.handler.bind(this))};t.prototype={handler:function(e){for(var t,n=0,r=e.length;r>n&&(t=e[n]);n++)"childList"===t.type&&t.addedNodes.length&&this.addedNodes(t.addedNodes)},addedNodes:function(e){this.addCallback&&this.addCallback(e);for(var t,n=0,r=e.length;r>n&&(t=e[n]);n++)t.children&&t.children.length&&this.addedNodes(t.children)},observe:function(e){this.mo.observe(e,{childList:!0,subtree:!0})}},e.Observer=t}),HTMLImports.addModule(function(e){function t(e){return"link"===e.localName&&e.rel===l}function n(e){var t=r(e);return"data:text/javascript;charset=utf-8,"+encodeURIComponent(t)}function r(e){return e.textContent+o(e)}function o(e){var t=e.ownerDocument;t.__importedScripts=t.__importedScripts||0;var n=e.ownerDocument.baseURI,r=t.__importedScripts?"-"+t.__importedScripts:"";return t.__importedScripts++,"\n//# sourceURL="+n+r+".js\n"}function i(e){var t=e.ownerDocument.createElement("style");return t.textContent=e.textContent,a.resolveUrlsInStyle(t),t}var a=e.path,s=e.rootDocument,c=e.flags,d=e.isIE,l=e.IMPORT_LINK_TYPE,u="link[rel="+l+"]",m={documentSelectors:u,importsSelectors:[u,"link[rel=stylesheet]","style","script:not([type])",'script[type="text/javascript"]'].join(","),map:{link:"parseLink",script:"parseScript",style:"parseStyle"},dynamicElements:[],parseNext:function(){var e=this.nextToParse();e&&this.parse(e)},parse:function(e){if(this.isParsed(e))return void(c.parse&&console.log("[%s] is already parsed",e.localName));var t=this[this.map[e.localName]];t&&(this.markParsing(e),t.call(this,e))},parseDynamic:function(e,t){this.dynamicElements.push(e),t||this.parseNext()},markParsing:function(e){c.parse&&console.log("parsing",e),this.parsingElement=e},markParsingComplete:function(e){e.__importParsed=!0,this.markDynamicParsingComplete(e),e.__importElement&&(e.__importElement.__importParsed=!0,this.markDynamicParsingComplete(e.__importElement)),this.parsingElement=null,c.parse&&console.log("completed",e)},markDynamicParsingComplete:function(e){var t=this.dynamicElements.indexOf(e);t>=0&&this.dynamicElements.splice(t,1)},parseImport:function(e){if(HTMLImports.__importsParsingHook&&HTMLImports.__importsParsingHook(e),e["import"]&&(e["import"].__importParsed=!0),this.markParsingComplete(e),e.dispatchEvent(e.__resource&&!e.__error?new CustomEvent("load",{bubbles:!1}):new CustomEvent("error",{bubbles:!1})),e.__pending)for(var t;e.__pending.length;)t=e.__pending.shift(),t&&t({target:e});this.parseNext()},parseLink:function(e){t(e)?this.parseImport(e):(e.href=e.href,this.parseGeneric(e))},parseStyle:function(e){var t=e;e=i(e),e.__importElement=t,this.parseGeneric(e)},parseGeneric:function(e){this.trackElement(e),this.addElementToDocument(e)},rootImportForElement:function(e){for(var t=e;t.ownerDocument.__importLink;)t=t.ownerDocument.__importLink;return t},addElementToDocument:function(e){var t=this.rootImportForElement(e.__importElement||e);t.parentNode.insertBefore(e,t)},trackElement:function(e,t){var n=this,r=function(r){t&&t(r),n.markParsingComplete(e),n.parseNext()};if(e.addEventListener("load",r),e.addEventListener("error",r),d&&"style"===e.localName){var o=!1;if(-1==e.textContent.indexOf("@import"))o=!0;else if(e.sheet){o=!0;for(var i,a=e.sheet.cssRules,s=a?a.length:0,c=0;s>c&&(i=a[c]);c++)i.type===CSSRule.IMPORT_RULE&&(o=o&&Boolean(i.styleSheet))}o&&e.dispatchEvent(new CustomEvent("load",{bubbles:!1}))}},parseScript:function(t){var r=document.createElement("script");r.__importElement=t,r.src=t.src?t.src:n(t),e.currentScript=t,this.trackElement(r,function(){r.parentNode.removeChild(r),e.currentScript=null}),this.addElementToDocument(r)},nextToParse:function(){return this._mayParse=[],!this.parsingElement&&(this.nextToParseInDoc(s)||this.nextToParseDynamic())},nextToParseInDoc:function(e,n){if(e&&this._mayParse.indexOf(e)<0){this._mayParse.push(e);for(var r,o=e.querySelectorAll(this.parseSelectorsForNode(e)),i=0,a=o.length;a>i&&(r=o[i]);i++)if(!this.isParsed(r))return this.hasResource(r)?t(r)?this.nextToParseInDoc(r["import"],r):r:void 0}return n},nextToParseDynamic:function(){return this.dynamicElements[0]},parseSelectorsForNode:function(e){var t=e.ownerDocument||e;return t===s?this.documentSelectors:this.importsSelectors},isParsed:function(e){return e.__importParsed},needsDynamicParsing:function(e){return this.dynamicElements.indexOf(e)>=0},hasResource:function(e){return t(e)&&void 0===e["import"]?!1:!0}};e.parser=m,e.IMPORT_SELECTOR=u}),HTMLImports.addModule(function(e){function t(e){return n(e,a)}function n(e,t){return"link"===e.localName&&e.getAttribute("rel")===t}function r(e){return!!Object.getOwnPropertyDescriptor(e,"baseURI")}function o(e,t){var n=document.implementation.createHTMLDocument(a);n._URL=t;var o=n.createElement("base");o.setAttribute("href",t),n.baseURI||r(n)||Object.defineProperty(n,"baseURI",{value:t});var i=n.createElement("meta");return i.setAttribute("charset","utf-8"),n.head.appendChild(i),n.head.appendChild(o),n.body.innerHTML=e,window.HTMLTemplateElement&&HTM (…)
H A DHTMLImports.js586 return "data:text/javascript;charset=utf-8," + encodeURIComponent(scriptContent);
684 meta.setAttribute("charset", "utf-8");
/external/llvm/lib/Support/Windows/
H A DPath.inc206 // Convert to utf-16.
250 // Convert to utf-16.
/external/svox/pico/lib/
H A Dpicotok.c217 utf8char0c utf; member in struct:tok_subobj
437 tok->utf[tok->utfpos] = ch;
446 tok->utf[tok->utfpos] = 0;
1324 id = picoktab_graphOffset(tok->graphTab, tok->utf);
1333 } else if (tok->utf[tok->utfpos-1] <= (picoos_uchar)' ') {
1340 if ((tok->utf[tok->utfpos-1] > (picoos_uchar)' ')) {
1342 } else if ((tok->utf[tok->utfpos-1] == EOL)) {
1346 tok_putToMarkup(this, tok, tok->utf);
1348 picoos_strlcpy(utf2, tok->utf, 5);
1359 } else if ((markupHandling && (tok->utf[to
[all...]

Completed in 3194 milliseconds

12