Home
last modified time | relevance | path

Searched refs:scriptIndex (Results 1 – 16 of 16) sorted by relevance

/third_party/skia/third_party/externals/icu/source/i18n/
Dscriptset.cpp180 for (int32_t scriptIndex = fromIndex; scriptIndex < SCRIPT_LIMIT; scriptIndex++) { in nextSetBit() local
181 if (test((UScriptCode)scriptIndex, status)) { in nextSetBit()
182 return scriptIndex; in nextSetBit()
Dalphaindex.cpp465 int32_t scriptIndex = -1; in createBucketList() local
474 scriptUpperBoundary = getString(*firstCharsInScripts_, ++scriptIndex); in createBucketList()
/third_party/icu/icu4c/source/i18n/
Dscriptset.cpp180 for (int32_t scriptIndex = fromIndex; scriptIndex < SCRIPT_LIMIT; scriptIndex++) { in nextSetBit() local
181 if (test((UScriptCode)scriptIndex, status)) { in nextSetBit()
182 return scriptIndex; in nextSetBit()
Dalphaindex.cpp465 int32_t scriptIndex = -1; in createBucketList() local
474 scriptUpperBoundary = getString(*firstCharsInScripts_, ++scriptIndex); in createBucketList()
/third_party/node/deps/icu-small/source/i18n/
Dscriptset.cpp180 for (int32_t scriptIndex = fromIndex; scriptIndex < SCRIPT_LIMIT; scriptIndex++) { in nextSetBit() local
181 if (test((UScriptCode)scriptIndex, status)) { in nextSetBit()
182 return scriptIndex; in nextSetBit()
Dalphaindex.cpp466 int32_t scriptIndex = -1; in createBucketList() local
475 scriptUpperBoundary = getString(*firstCharsInScripts_, ++scriptIndex); in createBucketList()
/third_party/flutter/skia/third_party/externals/icu/source/i18n/
Dscriptset.cpp188 for (int32_t scriptIndex = fromIndex; scriptIndex < (int32_t)sizeof(bits)*8; scriptIndex++) { in nextSetBit() local
189 if (test((UScriptCode)scriptIndex, status)) { in nextSetBit()
190 return scriptIndex; in nextSetBit()
Dalphaindex.cpp466 int32_t scriptIndex = -1; in createBucketList() local
475 scriptUpperBoundary = getString(*firstCharsInScripts_, ++scriptIndex); in createBucketList()
/third_party/typescript/tests/cases/conformance/parser/ecmascript5/RealWorld/
Dparserharness.ts1647 public getScriptContent(scriptIndex: number): string {
1648 return this.scripts[scriptIndex].content;
1677 public getScriptSourceText(scriptIndex: number, start: number, end: number): string {
1678 return this.scripts[scriptIndex].content.substring(start, end);
1681 public getScriptSourceLength(scriptIndex: number): number {
1682 return this.scripts[scriptIndex].content.length;
1685 public getScriptId(scriptIndex: number): string {
1686 return this.scripts[scriptIndex].name;
1689 public getScriptIsResident(scriptIndex: number): boolean {
1690 return this.scripts[scriptIndex].isResident;
[all …]
/third_party/typescript/tests/baselines/reference/
Dparserharness.js1647 public getScriptContent(scriptIndex: number): string {
1648 return this.scripts[scriptIndex].content;
1677 public getScriptSourceText(scriptIndex: number, start: number, end: number): string {
1678 return this.scripts[scriptIndex].content.substring(start, end);
1681 public getScriptSourceLength(scriptIndex: number): number {
1682 return this.scripts[scriptIndex].content.length;
1685 public getScriptId(scriptIndex: number): string {
1686 return this.scripts[scriptIndex].name;
1689 public getScriptIsResident(scriptIndex: number): boolean {
1690 return this.scripts[scriptIndex].isResident;
[all …]
Dparserharness.types6771 public getScriptContent(scriptIndex: number): string {
6772 >getScriptContent : (scriptIndex: number) => string
6773 >scriptIndex : number
6775 return this.scripts[scriptIndex].content;
6776 >this.scripts[scriptIndex].content : string
6777 >this.scripts[scriptIndex] : ScriptInfo
6781 >scriptIndex : number
6838 public getScriptSourceText(scriptIndex: number, start: number, end: number): string {
6839 >getScriptSourceText : (scriptIndex: number, start: number, end: number) => string
6840 >scriptIndex : number
[all …]
Dparserharness.symbols4925 public getScriptContent(scriptIndex: number): string {
4927 >scriptIndex : Symbol(scriptIndex, Decl(parserharness.ts, 1645, 32))
4929 return this.scripts[scriptIndex].content;
4930 >this.scripts[scriptIndex].content : Symbol(ScriptInfo.content, Decl(parserharness.ts, 1549, 40))
4934 >scriptIndex : Symbol(scriptIndex, Decl(parserharness.ts, 1645, 32))
4985 public getScriptSourceText(scriptIndex: number, start: number, end: number): string {
4987 >scriptIndex : Symbol(scriptIndex, Decl(parserharness.ts, 1675, 35))
4991 return this.scripts[scriptIndex].content.substring(start, end);
4992 >this.scripts[scriptIndex].content.substring : Symbol(String.substring, Decl(lib.es5.d.ts, --, --))
4993 >this.scripts[scriptIndex].content : Symbol(ScriptInfo.content, Decl(parserharness.ts, 1549, 40))
[all …]
Dparserharness.errors.txt1945 public getScriptContent(scriptIndex: number): string {
1946 return this.scripts[scriptIndex].content;
1975 public getScriptSourceText(scriptIndex: number, start: number, end: number): string {
1976 return this.scripts[scriptIndex].content.substring(start, end);
1979 public getScriptSourceLength(scriptIndex: number): number {
1980 return this.scripts[scriptIndex].content.length;
1983 public getScriptId(scriptIndex: number): string {
1984 return this.scripts[scriptIndex].name;
1987 public getScriptIsResident(scriptIndex: number): boolean {
1988 return this.scripts[scriptIndex].isResident;
[all …]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
DAlphabeticIndex.java986 int scriptIndex = -1; in createBucketList() local
994 scriptUpperBoundary = firstCharsInScripts.get(++scriptIndex); in createBucketList()
/third_party/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
DAlphabeticIndex.java1032 int scriptIndex = -1; in createBucketList() local
1040 scriptUpperBoundary = firstCharsInScripts.get(++scriptIndex); in createBucketList()
/third_party/flutter/flutter/packages/flutter_tools/lib/src/test/
Dcoverage_collector.dart250 final Map<String, dynamic> scriptRef = sourceReport['scripts'][range['scriptIndex']];