Home
last modified time | relevance | path

Searched refs:appendText (Results 1 – 23 of 23) sorted by relevance

/third_party/typescript/tests/baselines/reference/
DuncaughtCompilerError1.types9 >f : () => { appendText: string; advanceCount: number; }
51 return { appendText: '\"\"', advanceCount: 1 };
52 >{ appendText: '\"\"', advanceCount: 1 } : { appendText: string; advanceCount: number; }
53 >appendText : string
79 return { appendText: '\"\"', advanceCount: 1 };
80 >{ appendText: '\"\"', advanceCount: 1 } : { appendText: string; advanceCount: number; }
81 >appendText : string
DuncaughtCompilerError1.symbols23 return { appendText: '\"\"', advanceCount: 1 };
24 >appendText : Symbol(appendText, Decl(uncaughtCompilerError1.ts, 5, 20))
33 return { appendText: '\"\"', advanceCount: 1 };
34 >appendText : Symbol(appendText, Decl(uncaughtCompilerError1.ts, 8, 20))
DuncaughtCompilerError1.js7 return { appendText: '\"\"', advanceCount: 1 };
10 return { appendText: '\"\"', advanceCount: 1 };
21 return { appendText: '\"\"', advanceCount: 1 };
24 return { appendText: '\"\"', advanceCount: 1 };
/third_party/typescript/src/testRunner/unittests/tsc/
Dincremental.ts53 … modifyFs: fs => appendText(fs, "/src/project/src/main.d.ts", "export const xy = 100;")
300 modifyFs: fs => appendText(fs, `/src/project/src/main.ts`, `something();`),
304 modifyFs: fs => appendText(fs, `/src/project/src/main.ts`, `something();`),
312 appendText(fs, `/src/project/src/main.ts`, `foo();`);
321 modifyFs: fs => appendText(fs, `/src/project/src/main.ts`, `something();`),
565 modifyFs: fs => appendText(fs, "/lib/lib.d.ts", Utils.dedent`
/third_party/typescript/tests/cases/compiler/
DuncaughtCompilerError1.ts6 return { appendText: '\"\"', advanceCount: 1 };
9 return { appendText: '\"\"', advanceCount: 1 };
/third_party/typescript/src/testRunner/unittests/tsbuild/
DamdModulesWithOut.ts32 modifyFs: fs => appendText(fs, "/src/lib/file1.ts", "console.log(x);")
109 appendText(fs, "/src/lib/file1.ts", `
DoutFile.ts42 modifyFs: fs => appendText(fs, "/src/first/first_PART1.ts", "console.log(s);"),
163 modifyFs: fs => appendText(fs, "/src/first/first_PART1.ts", "console.log(s);"),
168 modifyFs: fs => appendText(fs, "/src/first/first_PART1.ts", "console.log(s);"),
391 appendText(fs, "/src/second/second_part1.ts", `
DlateBoundSymbol.ts15 modifyFs: fs => appendText(fs, "/src/src/main.ts", "const x = 10;"),
DconfigFileErrors.ts45 modifyFs: fs => appendText(fs, "/src/a.ts", "export function fooBar() { }"),
DinferredTypeFromTransitiveModule.ts53 appendText(fs, "/src/lazyIndex.ts", `
Dsample.ts394 modifyFs: fs => appendText(fs, "/src/core/index.ts", `
399 modifyFs: fs => appendText(fs, "/src/core/index.ts", `
Dhelpers.ts42 export function appendText(fs: vfs.FileSystem, path: string, additionalContent: string) { function
687 appendText(fs, `src/${project}/${file}.ts`, restContent(project, file));
695 appendText(fs, `src/${project}/${file}.ts`, nonrestContent(project, file));
/third_party/skia/src/xml/
DSkXMLParser.cpp80 void appendText(const char* txt, size_t len) { in appendText() function
114 ctx->appendText(txt, SkTo<size_t>(len)); in text_handler()
/third_party/icu/icu4c/source/tools/toolutil/
Dxmlparser.h132 void appendText(UnicodeString &text, UBool recurse) const;
Dxmlparser.cpp710 appendText(text, recurse); in getText()
715 UXMLElement::appendText(UnicodeString &text, UBool recurse) const { in appendText() function in UXMLElement
724 ((const UXMLElement *)node)->appendText(text, recurse); in appendText()
/third_party/skia/third_party/externals/icu/source/tools/toolutil/
Dxmlparser.h132 void appendText(UnicodeString &text, UBool recurse) const;
Dxmlparser.cpp710 appendText(text, recurse); in getText()
715 UXMLElement::appendText(UnicodeString &text, UBool recurse) const { in appendText() function in UXMLElement
724 ((const UXMLElement *)node)->appendText(text, recurse); in appendText()
/third_party/node/deps/icu-small/source/tools/toolutil/
Dxmlparser.h132 void appendText(UnicodeString &text, UBool recurse) const;
Dxmlparser.cpp710 appendText(text, recurse); in getText()
715 UXMLElement::appendText(UnicodeString &text, UBool recurse) const { in appendText() function in UXMLElement
724 ((const UXMLElement *)node)->appendText(text, recurse); in appendText()
/third_party/sqlite/src/
Dshell.c851 static void appendText(ShellText *p, const char *zAppend, char quote){ in appendText() function
929 appendText(&s, zSchema, cQuote); in shellFakeSchema()
930 appendText(&s, ".", 0); in shellFakeSchema()
933 appendText(&s, zName, cQuote); in shellFakeSchema()
937 appendText(&s, zDiv, 0); in shellFakeSchema()
941 appendText(&s, zCol, cQuote); in shellFakeSchema()
943 appendText(&s, ")", 0); in shellFakeSchema()
16954 if( p->n ) appendText(p, "|", 0); in captureOutputCallback()
16956 if( i ) appendText(p, ",", 0); in captureOutputCallback()
16957 if( azArg[i] ) appendText(p, azArg[i], 0); in captureOutputCallback()
[all …]
/third_party/icu/icu4c/source/samples/ustring/
Dustring.cpp162 static const UChar appendText[]={ 0x61, 0x62, 0x63, 0 }; /* "abc" */ in demo_C_Unicode_strings() local
171 u_strcat(buffer, appendText); /* buffer=="Aabc" */ in demo_C_Unicode_strings()
/third_party/skia/third_party/externals/icu/source/samples/ustring/
Dustring.cpp162 static const UChar appendText[]={ 0x61, 0x62, 0x63, 0 }; /* "abc" */ in demo_C_Unicode_strings() local
171 u_strcat(buffer, appendText); /* buffer=="Aabc" */ in demo_C_Unicode_strings()
/third_party/chromium/patch/
D0003-ohos-1115.patch84993 -static void appendText(ShellText *p, char const *zAppend, char quote){
84994 +static void appendText(ShellText *p, const char *zAppend, char quote){
84998 @@ -877,7 +843,7 @@ static void appendText(ShellText *p, char const *zAppend, char quote){
85017 appendText(&s, zDiv, 0);
85021 appendText(&s, zCol, cQuote);
95882 appendText(&sSelect, ") WHERE ", 0);
95892 appendText(&sSelect, "lower(printf('%s.%s',sname,tbl_name))", 0);
95945 appendText(&sQuery,"SELECT * FROM ", 0);
123408 -static void appendText(ShellText *p, char const *zAppend, char quote){
123409 +static void appendText(ShellText *p, const char *zAppend, char quote){
[all …]