Home
last modified time | relevance | path

Searched refs:tokens (Results 1 – 10 of 10) sorted by relevance

/development/tools/winscope/src/parsers/surface_flinger/operations/
Dadd_verbose_flags.ts30 const tokens: Array<string | LayerFlag> = []; constant
40 tokens.push(verboseFlags[index]);
45 if (tokens.length > 0) {
46 verboseFlagsStr = `${tokens.join(' | ')} (${formatAsHex(flags)})`;
/development/tools/winscope/src/common/
Dbuffer_utils.ts53 private readonly tokens: BufferToken[] = []; property in ArrayBufferBuilder
57 this.tokens.forEach((token) => {
64 for (const token of this.tokens) {
71 append(tokens: BufferToken[]): this {
72 this.tokens.push(...tokens);
Dstring_utils.ts52 const tokens = s.split('_').filter((token) => token.length > 0); constant
53 const tokensCapitalized = tokens.map((token) => {
59 result += tokens[0];
/development/tools/winscope/src/parsers/view_capture/perfetto/
Dparser_view_capture.ts94 const tokens = packageAndWindow.split(','); constant
95 assertTrue(tokens.length === 2);
96 names.push({package: tokens[0], window: tokens[1]});
/development/tools/winscope/src/parsers/transactions/operations/
Dtranslate_changes.ts117 private concatBitsetTokens(tokens: string[]): string {
118 if (tokens.length === 0) {
121 return tokens.join(' | ');
/development/samples/browseable/CommitContentSampleApp/src/com.example.android.commitcontent.app/
DMainActivity.java239 final ArrayList<String> tokens = new ArrayList<>(); in flagsToString() local
241 tokens.add("INPUT_CONTENT_GRANT_READ_URI_PERMISSION"); in flagsToString()
245 tokens.add("0x" + Integer.toHexString(flags)); in flagsToString()
247 return TextUtils.join(" | ", tokens); in flagsToString()
/development/tools/winscope/src/trace_collection/wdp/
Dsync_stream.ts50 private makeTokens(tokens: BufferToken[]): Uint8Array {
51 const buffer = new ArrayBufferBuilder().append(tokens).build();
Dwdp_device_connection_test.ts517 const tokens = new ArrayBufferBuilder() constant
521 .withArgs(new Uint8Array(tokens))
/development/tools/idegen/src/com/android/idegen/
DMakeFileParser.java170 String[] tokens = value.split(" ");
171 Collections.addAll(result, tokens);
/development/vndk/tools/sourcedr/blueprint/
Dblueprint.py155 def consume(self, *tokens): argument
158 for token in tokens: