Home
last modified time | relevance | path

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

12345678910>>...101

/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[]){}
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) {
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) {
/third_party/skia/m133/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/rust/rust/library/std/src/sys_common/wtf8/
Dtests.rs134 let mut string = Wtf8Buf::new(); in wtf8buf_push_str() localVariable
145 let mut string = Wtf8Buf::from_str("aé "); in wtf8buf_push_char() localVariable
156 let mut string = Wtf8Buf::from_str("aé "); in wtf8buf_push() localVariable
168 let mut string = Wtf8Buf::new(); in wtf8buf_push() localVariable
174 let mut string = Wtf8Buf::new(); in wtf8buf_push() localVariable
181 let mut string = Wtf8Buf::new(); in wtf8buf_push() localVariable
187 let mut string = Wtf8Buf::new(); in wtf8buf_push() localVariable
193 let mut string = Wtf8Buf::new(); in wtf8buf_push() localVariable
200 let mut string = Wtf8Buf::new(); in wtf8buf_push() localVariable
207 let mut string = Wtf8Buf::new(); in wtf8buf_push() localVariable
[all …]
/third_party/skia/m133/tools/testrunners/common/android/adb_test_runner/
Dadb_test_runner.go140 func parseTestRunnerExtraArgsFlag(rawTestRunnerExtraArgsFlag string) (testRunnerExtraArgs string, d…
152 …runTest(ctx context.Context, model string, isBenchmarkTest bool, archive, testRunner, testRunnerEx…
264 func scaleDevice(ctx context.Context, model string, isBenchmarkTest bool) error {
289 func scaleDeviceForPerformance(ctx context.Context, model string) error {
322 func scaleDeviceForBenchmark(ctx context.Context, model string) error {
349 func doesNotAllowADBRoot(model string) bool {
378 func getBiggestKindCPU(model string) int {
396 func getCPUsToDisableForBenchmarkTests(model string) []int {
408 func getCPUGovernorForPerformanceTests(model string) string {
438 func getCPUGovernorForBenchmarkTests(model string) string {
[all …]
/third_party/skia/m133/bazel/exporter/
Dbazel_util.go34 func isExternalRule(name string) bool {
40 func findRule(qr *analysis_v2.CqueryResult, name string) *build.Rule {
58 func parseRule(rule string) (repo string, path string, target string, err error) {
84 func parseLocation(location string) (path string, line int, pos int, err error) {
102 func getLocationDir(location string) (string, error) {
110 func makeCanonicalRuleName(bazelRuleName string) (string, error) {
123 func isFileTarget(target string) bool {
133 func getRuleSimpleName(bazelRuleName string) (string, error) {
149 func appendUnique(slice []string, elems ...string) []string {
163 func getRuleStringArrayAttribute(r *build.Rule, name string) ([]string, error) {
[all …]
/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/grpc/test/core/end2end/fuzzers/
Dfuzzer_input.proto35 optional string key = 1; field
36 optional string value = 2; field
44 optional string grpc_timeout = 2; field
45 optional string te = 3; field
46 optional string content_type = 4; field
47 optional string scheme = 5; field
48 optional string method = 6; field
49 optional string grpc_encoding = 7; field
50 optional string grpc_internal_encoding_request = 8; field
51 optional string grpc_accept_encoding = 9; field
[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/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/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/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/skia/m133/infra/bots/task_drivers/testutils/
Dtestutils.go23 func AssertStepNames(t *testing.T, report *td.StepReport, expectedStepNames ...string) {
38 func MakeZIP(t *testing.T, zipPath string, contents map[string]string) {
62 func PopulateDir(t *testing.T, dirPath string, contents map[string]string) {
72 func MakeTempDirMockFn(t *testing.T, dirs ...string) func(string, string) (string, error) {
/third_party/protobuf/upb/message/
Dutf8_test.proto17 optional string data = 1; field
26 optional string data = 1; field
30 optional string other_data = 2; field
34 optional string data = 1; field
42 optional string data = 1; field
46 optional string other_data = 2; field
/third_party/grpc/third_party/upb/upb/message/
Dutf8_test.proto17 optional string data = 1; field
26 optional string data = 1; field
30 optional string other_data = 2; field
34 optional string data = 1; field
42 optional string data = 1; field
46 optional string other_data = 2; field

12345678910>>...101