Home
last modified time | relevance | path

Searched defs:string (Results 1 – 25 of 2296) sorted by relevance

12345678910>>...92

/third_party/skia/infra/bots/gen_tasks_logic/
Dschema.go24 func (p parts) equal(part string, eq ...string) bool {
38 func (p parts) role(eq ...string) bool {
43 func (p parts) os(eq ...string) bool {
49 func (p parts) compiler(eq ...string) bool {
54 func (p parts) model(eq ...string) bool {
60 func (p parts) frequency(eq ...string) bool {
67 func (p parts) cpu(eq ...string) bool {
80 func (p parts) gpu(eq ...string) bool {
92 func (p parts) arch(eq ...string) bool {
99 func (p parts) extraConfig(eq ...string) bool {
[all …]
/third_party/typescript/tests/baselines/reference/
DstringMappingOverPatternLiterals.js43 function f2(x1: string, x2: Uppercase<string>, x3: Lowercase<string>) {
64 x1: Uppercase<string>,
65 x2: Uppercase<Uppercase<string>>,
66 x3: Uppercase<Lowercase<string>>) {
107 cap_tem: `A${string}`,
108 cap_str: Capitalize<string>,
109 cap_tem_map: Capitalize<`A${string}`>,
110 cap_tem_map2: Capitalize<`a${string}`>,
111 uncap_tem: `a${string}`,
112 uncap_str: Uncapitalize<string>,
[all …]
DconsistentAliasVsNonAliasRecordBehavior.js10 function defaultRecord(x: Record<'a', string>, y: Record<string, string>) { argument
14 function customRecord(x: Record2<'a', string>, y: Record2<string, string>) { argument
18 function mixed1(x: Record2<'a', string>, y: Record<string, string>) { argument
22 function mixed2(x: Record<'a', string>, y: Record2<string, string>) { argument
DdeclarationEmitWorkWithInlineComments.js5 public isInternal1: string,
6 /** @internal */ public isInternal2: string, /** @internal */
7 public isInternal3: string,
9 public isInternal4: string,
12 public isInternal5: string,
13 /* @internal */ public isInternal6: string /* trailing */,
14 /* @internal */ public isInternal7: string, /** @internal */
16 public notInternal1: string,
19 public notInternal2: string,
23 public notInternal3: string,
[all …]
DunionTypeCallSignatures3.js2 function f1(s: string) { }
3 function f2(s?: string) { }
4 function f3(...s: string[]) { }
5 function f4(s: string, s2?: string) { }
6 function f5(s?: string, n?: number) { }
7 function f6(s?: string, ...n: number[]) { }
8 function f7(s: string, ...sRest: string[]) { }
DreadonlyArraysAndTuples.js15 function f1(ma: string[], ra: readonly string[], mt: [string, string], rt: readonly [string, string… argument
DreadonlyRestParameters.js2 function f0(a: string, b: string) {
8 function f1(...args: readonly string[]) {
15 function f2(...args: readonly [string, string]) { argument
25 function f4(...args: readonly string[]) {
DcommentsFunction.js7 function fooWithParameters(/** this is comment about a*/a: string,
16 var fooFunc = function FooFunctionValue(/** fooFunctionValue param */ b: string) {
26 function blah(a: string /* multiline trailing comment
30 function blah2(a: string /* single line multiple trailing comments */ /* second */) {
33 function blah3(a: string // trailing commen single line
42 function blah4(/*1*/a: string/*2*/,/*3*/b: string/*4*/) {
DrestParameters.js2 function f18(a?:string, ...b:number[]){}
4 function f19(a?:string, b?:number, ...c:number[]){}
6 function f20(a:string, b?:string, ...c:number[]){}
8 function f21(a:string, b?:string, c?:number, ...d:number[]){}
DtypeGuardsInConditionalExpression.js9 function foo(x: number | string) {
14 function foo2(x: number | string) {
19 function foo3(x: number | string) {
24 function foo4(x: number | string) {
29 function foo5(x: number | string) {
34 function foo6(x: number | string) {
56 function foo9(x: number | string) {
DtypeGuardsInIfStatement.js6 function foo(x: number | string) {
14 function foo2(x: number | string) {
23 function foo3(x: number | string) {
32 function foo4(x: number | string) {
41 function foo5(x: number | string) {
50 function foo6(x: number | string) {
85 function foo9(x: number | string) {
DparameterPropertyInConstructorWithPrologues.js7 constructor(private A: string) {
13 constructor(private A: string, private B: string) {
20 constructor(private A: string, private B: string, private C: string) {
27 constructor(private A: string) {
34 constructor(private A: string, private B: string) {
42 constructor(private A: string, private B: string, private C: string) {
/third_party/flatbuffers/tests/
Dgo_test.go103 func CheckNoNamespaceImport(fail func(string, ...interface{})) {
232 func CheckReadBuffer(buf []byte, offset flatbuffers.UOffsetT, sizePrefix bool, fail func(string, ..…
406 func CheckFileIdentifier(buf []byte, offset flatbuffers.UOffsetT, sizePrefix bool, fail func(string
432 func CheckMutateBuffer(org []byte, offset flatbuffers.UOffsetT, sizePrefix bool, fail func(string, …
580 func CheckObjectAPI(buf []byte, offset flatbuffers.UOffsetT, sizePrefix bool, fail func(string, ...…
616 func checkFuzz(fuzzFields, fuzzObjects int, fail func(string, ...interface{})) {
760 func FailString(name string, want, got interface{}) string {
765 func CheckByteLayout(fail func(string, ...interface{})) {
1304 func CheckManualBuild(fail func(string, ...interface{})) ([]byte, flatbuffers.UOffsetT) {
1371 func CheckGetRootAsForNonRootTable(fail func(string, ...interface{})) {
[all …]
/third_party/typescript/tests/cases/conformance/types/tuple/
DcontextualTypeWithTuple.ts2 var numStrTuple: [number, string] = [5, "hello"]; variable
3 var numStrTuple2: [number, string] = [5, "foo", true]; variable
4 var numStrBoolTuple: [number, string, boolean] = [5, "foo", true]; variable
9 var unionTuple: [C, string | number] = [new C(), "foo"]; variable
10 var unionTuple1: [C, string | number] = [new C(), "foo"]; variable
11 var unionTuple2: [C, string | number, D] = [new C(), "foo", new D()]; variable
12 var unionTuple3: [number, string| number] = [10, "foo"]; variable
20 var strStrTuple: [string, string] = ["foo", "bar", 5]; variable
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/utils/vscode/src/lsp/protocol/
Denums.go133 func formatEnum(f fmt.State, c rune, i int, names []string, unknown string) {
145 func parseEnum(s string, names []string) int {
158 func ParseTextDocumentSyncKind(s string) TextDocumentSyncKind {
166 func ParseInitializeError(s string) InitializeError {
174 func ParseMessageType(s string) MessageType {
182 func ParseFileChangeType(s string) FileChangeType {
190 func ParseWatchKind(s string) WatchKind {
198 func ParseCompletionTriggerKind(s string) CompletionTriggerKind {
206 func ParseDiagnosticSeverity(s string) DiagnosticSeverity {
214 func ParseDiagnosticTag(s string) DiagnosticTag {
[all …]
/third_party/skia/third_party/externals/spirv-tools/utils/vscode/src/lsp/protocol/
Denums.go133 func formatEnum(f fmt.State, c rune, i int, names []string, unknown string) {
145 func parseEnum(s string, names []string) int {
158 func ParseTextDocumentSyncKind(s string) TextDocumentSyncKind {
166 func ParseInitializeError(s string) InitializeError {
174 func ParseMessageType(s string) MessageType {
182 func ParseFileChangeType(s string) FileChangeType {
190 func ParseWatchKind(s string) WatchKind {
198 func ParseCompletionTriggerKind(s string) CompletionTriggerKind {
206 func ParseDiagnosticSeverity(s string) DiagnosticSeverity {
214 func ParseDiagnosticTag(s string) DiagnosticTag {
[all …]
/third_party/spirv-tools/utils/vscode/src/lsp/protocol/
Denums.go133 func formatEnum(f fmt.State, c rune, i int, names []string, unknown string) {
145 func parseEnum(s string, names []string) int {
158 func ParseTextDocumentSyncKind(s string) TextDocumentSyncKind {
166 func ParseInitializeError(s string) InitializeError {
174 func ParseMessageType(s string) MessageType {
182 func ParseFileChangeType(s string) FileChangeType {
190 func ParseWatchKind(s string) WatchKind {
198 func ParseCompletionTriggerKind(s string) CompletionTriggerKind {
206 func ParseDiagnosticSeverity(s string) DiagnosticSeverity {
214 func ParseDiagnosticTag(s string) DiagnosticTag {
[all …]
/third_party/skia/third_party/externals/swiftshader/tests/regres/git/
Dgit.go52 func ParseHash(s string) Hash {
60 func Add(wd, file string) error {
74 func Commit(wd, msg string, flags CommitFlags) error {
93 func Push(wd, remote, localBranch, remoteBranch string, flags PushFlags) error {
115 func CheckoutRemoteBranch(path, url string, branch string) error {
136 func CheckoutRemoteCommit(path, url string, commit Hash) error {
157 func CheckoutCommit(path string, commit Hash) error {
162 func Apply(dir, patch string) error {
167 func FetchRefHash(ref, url string) (Hash, error) {
184 func Log(path string, count int) ([]ChangeList, error) {
[all …]
/third_party/mindspore/mindspore-src/source/mindspore/lite/src/extendrt/delegate/graph_executor/litert/
Dfunc_graph_reuse_manager.cc30 std::map<std::string, std::map<std::string, std::string>> config_info) { in GetSharedFuncGraph()
50std::map<std::string, std::map<std::string, std::string>> config_info) { in StoreFuncGraph()
64 …size_t *data_size, bool *is_shared_fb_buf, std::map<std::string, std::map<std::string, std::string… in GetFbModelBuf()
89std::map<std::string, std::map<std::string, std::string>> config_info) { in StoreFbModelBuf()
105 Status FuncGraphReuseManager::GetInOut(std::map<std::string, std::map<std::string, std::string>> co… in GetInOut()
133 Status FuncGraphReuseManager::StoreInOut(std::map<std::string, std::map<std::string, std::string>> … in StoreInOut()
153 std::map<std::string, std::map<std::string, std::string>> config_info) { in ReleaseSharedFuncGraph()
/third_party/typescript/tests/cases/conformance/expressions/functionCalls/
DcallWithSpread3.ts1 declare const s2: [string, string]; constant
2 declare const s3: [string, string, string]; constant
3 declare const s2_: [string, string, ...string[]]; constant
6 declare const s2n_: [string, string, ...number[]]; constant
/third_party/mindspore/mindspore-src/source/mindspore/lite/tools/converter/parser/tf/
Dtf_arithmetic_parser.cc34 const std::map<string, const tensorflow::NodeDef *> &tf_node_map, in Parse()
48 const std::map<string, const tensorflow::NodeDef *> &tf_node_map, in Parse()
62 const std::map<string, const tensorflow::NodeDef *> &tf_node_map, in Parse()
76 const std::map<string, const tensorflow::NodeDef *> &tf_node_map, in Parse()
93const std::map<string, const tensorflow::NodeDef *> &tf_node_map, in Parse()
107const std::map<string, const tensorflow::NodeDef *> &tf_node_map, in Parse()
121const std::map<string, const tensorflow::NodeDef *> &tf_node_map, in Parse()
135const std::map<string, const tensorflow::NodeDef *> &tf_node_map, in Parse()
149 const std::map<string, const tensorflow::NodeDef *> &tf_node_map, in Parse()
163const std::map<string, const tensorflow::NodeDef *> &tf_node_map, in Parse()
[all …]
/third_party/mindspore/mindspore-src/source/mindspore/core/mindrt/include/actor/
Dactor.h122 …void Receive(const std::string &msgName, void (T::*method)(mindspore::AID, std::string &&, std::st… in Receive()
129 …void Receive(const std::string &msgName, void (T::*method)(const mindspore::AID &, std::string &&,… in Receive()
138 void (T::*method)(const mindspore::AID &, std::string &&, std::string &&)) { in ReceiveUdp()
165 … void BehaviorBase(T *t, void (T::*method)(const mindspore::AID &, std::string &&, std::string &&), in BehaviorBase()
178 static void BehaviorBase1(T *t, void (T::*method)(mindspore::AID, std::string &&, std::string &&), in BehaviorBase1()
191 …BehaviorBaseForUdp(T *t, void (T::*method)(const mindspore::AID &, std::string &&, std::string &&), in BehaviorBaseForUdp()
/third_party/typescript/tests/cases/compiler/
DspliceTuples.ts3 let k1: [number, string, boolean]; variable
6 let k2: [number, string, boolean, number]; variable
11 let k3: [number, string, ...boolean[]]; variable
16 let k4: [number, string, ...boolean[]]; variable
19 let k5: [number, string, boolean, ...boolean[]]; variable
22 let k6: [number, string, boolean, boolean, ...boolean[]]; variable
/third_party/mindspore/mindspore-src/source/mindspore/lite/tools/converter/config_parser/
Dconfig_file_parser.cc159 std::string FindInAscendMap(const std::string &key, const std::map<std::string, std::string> &ascen… in FindInAscendMap()
168 const std::map<std::string, std::string> &ascend_map) { in SetDynParams()
288 const std::map<std::string, std::string> &ascend_map) { in SetVariableParams()
390 const std::map<std::string, std::string> &ascend_map) { in SetParamByConfigfile()
499 … std::map<int, std::map<std::string, std::string>> *model_param_infos) { in ParseConfigFile()
514 int ConfigFileParser::ParseConfigParam(std::map<std::string, std::map<std::string, std::string>> *m… in ParseConfigParam()
605 int ConfigFileParser::SetMapData(const std::map<std::string, std::string> &input_map, in SetMapData()
623 int ConfigFileParser::ParseDataPreProcessString(const std::map<std::string, std::map<std::string, s… in ParseDataPreProcessString()
644 int ConfigFileParser::ParseCommonQuantString(const std::map<std::string, std::map<std::string, std:… in ParseCommonQuantString()
662 int ConfigFileParser::ParseMixedBitQuantString(const std::map<std::string, std::map<std::string, st… in ParseMixedBitQuantString()
[all …]
/third_party/skia/infra/bots/task_drivers/run_wasm_gm_tests/
Drun_wasm_gm_tests.go129 …gitCommit, gerritCLID, tryjobID, goldctlPath, workPath, serviceAccountPath string, keys []string, …
167 func downloadKnownHashes(ctx context.Context, workPath, knownHashesURL string) error {
184 func setupTests(ctx context.Context, nodeBinPath string, testHarnessPath string) error {
194 …text.Context, builtPath, nodeBinPath, resourcePath, testHarnessPath, workPath string, webglVersion…
227 func processTestData(ctx context.Context, testOutputPath, goldctlPath, goldctlWorkPath string) erro…
283 func finalizeGoldctl(ctx context.Context, goldctlPath, workPath string) error {

12345678910>>...92