(processName: string, packageName: string)
| 380 | } |
| 381 | |
| 382 | function matchesAndroidPackageProcess(processName: string, packageName: string): boolean { |
| 383 | return processName === packageName || processName.startsWith(`${packageName}:`); |
| 384 | } |
| 385 | |
| 386 | function matchLabeledNumber(text: string, label: string): number | undefined { |
| 387 | const escapedLabel = label.replace(/[.*+?^${}()|[\]\\]/g, '\\$&'); |
no test coverage detected
searching dependent graphs…