Home
last modified time | relevance | path

Searched defs:template (Results 1 – 25 of 1686) sorted by relevance

12345678910>>...68

/aosp_15_r20/external/sdk-platform-java/api-common-java/src/test/java/com/google/api/pathtemplate/
H A DPathTemplateTest.java57 PathTemplate template = PathTemplate.create("buckets/*/*/objects/*"); in matchAtomicResourceName() local
63 PathTemplate template = PathTemplate.create("buckets/*/objects/**"); in matchTemplateWithUnboundedWildcard() local
69 PathTemplate template = PathTemplate.create("buckets/*/objects/*"); in matchWithForcedHostName() local
79 PathTemplate template = PathTemplate.create("buckets/*/objects/*"); in matchWithHostName() local
89 PathTemplate template = PathTemplate.create("projects/{project}/zones/{zone}"); in matchWithHostNameAndProtocol() local
101 PathTemplate template = PathTemplate.create("{project}/zones/{zone}"); in matchWithHostNameAndProtocolWithTemplateStartWithBinding() local
140 PathTemplate template = PathTemplate.create("{glob=**}"); in pathWildcard_canMatchTheEmptyString() local
149 PathTemplate template = PathTemplate.create("buckets/*/objects/*:custom"); in matchWithCustomMethod() local
158 PathTemplate template = PathTemplate.create("buckets/*/*/objects/*"); in matchFailWhenPathMismatch() local
164 PathTemplate template = PathTemplate.create("buckets/*/*/objects/*"); in matchFailWhenPathTooShort() local
[all …]
/aosp_15_r20/external/escapevelocity/src/test/java/com/google/escapevelocity/
H A DTemplateTest.java84 private void compare(String template) { in compare()
88 private void compare(String template, Map<String, ?> vars) { in compare() argument
99 private void compare(String template, Supplier<? extends Map<String, ?>> varsSupplier) { in compare() argument
117 private String velocityRender(String template, Map<String, ?> vars) { in velocityRender() argument
134 String template, in expectParseException()
364 String template = in substituteInString() local
575 String template = in nestedForEach() local
589 String template = in forEachScope() local
602 String template = in forEachIndex() local
636 String template = in simpleMacro() local
[all …]
/aosp_15_r20/external/tink/java_src/src/test/java/com/google/crypto/tink/signature/
H A DSignatureKeyTemplatesTest.java52 KeyTemplate template = SignatureKeyTemplates.ECDSA_P256; in ecdsaP256() local
66 KeyTemplate template = SignatureKeyTemplates.ECDSA_P256_IEEE_P1363; in ecdsaP256Ieee() local
80 KeyTemplate template = SignatureKeyTemplates.ECDSA_P256_IEEE_P1363_WITHOUT_PREFIX; in ecdsaP256IeeeWithoutPrefix() local
94 KeyTemplate template = SignatureKeyTemplates.ECDSA_P384; in ecdsaP384() local
108 KeyTemplate template = SignatureKeyTemplates.ECDSA_P384_IEEE_P1363; in ecdsaP384Ieee() local
122 KeyTemplate template = SignatureKeyTemplates.ECDSA_P521_IEEE_P1363; in ecdsaP521Ieee() local
142 KeyTemplate template = in createEcdsaKeyTemplate() local
156 KeyTemplate template = SignatureKeyTemplates.ED25519; in ed25519() local
164 KeyTemplate template = SignatureKeyTemplates.ED25519WithRawOutput; in ed25519WithRawOutput() local
172 KeyTemplate template = SignatureKeyTemplates.RSA_SSA_PKCS1_3072_SHA256_F4; in rsaSsaPkcs1_3072() local
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/tinytemplate/src/
Dtemplate.rs413 let template = compile("Hello!"); in test_literal() localVariable
430 let template = compile("{ number }"); in test_value() localVariable
447 let template = compile("The number of the day is { nested.value }."); in test_path() localVariable
464 let template = compile("{{ if boolean }}Hello!{{ endif }}"); in test_if_taken() localVariable
481 let template = compile("{{ if null }}Hello!{{ endif }}"); in test_if_untaken() localVariable
498 let template = compile("{{ if boolean }}Hello!{{ else }}Goodbye!{{ endif }}"); in test_if_else_taken() localVariable
515 let template = compile("{{ if null }}Hello!{{ else }}Goodbye!{{ endif }}"); in test_if_else_untaken() localVariable
532 let template = compile("{{ if not boolean }}Hello!{{ endif }}"); in test_ifnot_taken() localVariable
549 let template = compile("{{ if not null }}Hello!{{ endif }}"); in test_ifnot_untaken() localVariable
566 let template = compile("{{ if not boolean }}Hello!{{ else }}Goodbye!{{ endif }}"); in test_ifnot_else_taken() localVariable
[all …]
/aosp_15_r20/external/tink/java_src/src/test/java/com/google/crypto/tink/aead/
H A DAeadKeyTemplatesTest.java51 KeyTemplate template = AeadKeyTemplates.AES128_GCM; in aes128Gcm() local
61 KeyTemplate template = AeadKeyTemplates.AES256_GCM; in aes256Gcm() local
74 KeyTemplate template = AeadKeyTemplates.createAesGcmKeyTemplate(keySize); in testCreateAesGcmKeyTemplate() local
85 KeyTemplate template = AeadKeyTemplates.AES128_EAX; in aes128Eax() local
97 KeyTemplate template = AeadKeyTemplates.AES256_EAX; in aes256Eax() local
113 KeyTemplate template = AeadKeyTemplates.createAesEaxKeyTemplate(keySize, ivSize); in testCreateAesEaxKeyTemplate() local
126 KeyTemplate template = AeadKeyTemplates.AES128_CTR_HMAC_SHA256; in aes128CtrHmacSha256() local
147 KeyTemplate template = AeadKeyTemplates.AES256_CTR_HMAC_SHA256; in aes256CtrHmacSha256() local
175 KeyTemplate template = in testCreateAesCtrHmacAeadKeyTemplate() local
198 KeyTemplate template = AeadKeyTemplates.CHACHA20_POLY1305; in chacha20Poly1305() local
[all …]
/aosp_15_r20/external/apache-velocity-engine/velocity-engine-core/src/test/java/org/apache/velocity/test/
H A DScopeTestCase.java115 String template = "#foreach( $i in [0..2] )"+ in testForeachScope() local
125 String template = "#foreach( $i in [1..5] )"+ in testNestedForeachScope() local
137 String template = "#macro( foo $i )"+ in testMacroScope() local
147 String template = "#macro( foo )$macro.info.depth"+ in testRecursiveMacroScope() local
156 String template = "#macro( a )$macro.info.depth#set($macro.c = 'a')$macro.c#end"+ in testNestedMacroScope() local
165 String template = "#macro( foo $bar )$bodyContent$macro.bar#end"+ in testBodyMacroScope() local
176 String template = "#macro( foo )$bodyContent$macro.i#end"+ in testRecursiveBodyMacroScope() local
186 …String template = "#define( $foo )#set( $define.bar = 'bar'+$define.info.depth )$define.bar#end$fo… in testDefineScope() local
193 String template = "#define($a)$b c#end"+ in testNestedDefineScope() local
203 String template = "#define($a)$define.info.depth"+ in testRecursiveDefineScope() local
[all …]
H A DBlockMacroTestCase.java36 …String template = "#macro(foo $txt) Yeah, $txt! $bodyContent $bodyContent#end #@foo(\"woohoo\")jee… in testMultipleBodyContentIncludes() local
44 …String template = "#macro(foo $txt) Yeah, $txt! $bodyContent#end #@foo(\"woohoo\")#foreach($i in [… in testNestedVelocityLogic() local
52 String template = "#macro(foo $txt) Yeah, $txt! $bodyContent#end #@foo(\"woohoo\")#end"; in testEmptyBody() local
60 String template = "#macro(foo) Yeah! $bodyContent#end #@foo()#end"; in testNoArgumentsEmptyBodyCall() local
69 String template = "#macro(foo) Yeah! $myBody#end #@foo()#end"; in testCustomBodyReference() local
78 String template = "#macro(echo)$bodyContent#end #@echo()Yeah!#end"; in testVelocity671() local
111 String template = "#macro(foo)#set( $x = $bodyContent )#end"+ in testVelocity686() local
118 String template = "#macro(foo)foo:$bodyContent#end"+ in testNestedBlockMacro() local
127 String template = "#macro(foo)start:$bodyContent#end"+ in testRecursiveBlockMacro() local
/aosp_15_r20/external/tink/java_src/src/test/java/com/google/crypto/tink/streamingaead/
H A DStreamingAeadKeyTemplatesTest.java47 KeyTemplate template = StreamingAeadKeyTemplates.AES128_CTR_HMAC_SHA256_4KB; in testAes128CtrHmacSha256_4KB() local
64 KeyTemplate template = StreamingAeadKeyTemplates.AES128_CTR_HMAC_SHA256_1MB; in testAes128CtrHmacSha256_1MB() local
81 KeyTemplate template = StreamingAeadKeyTemplates.AES256_CTR_HMAC_SHA256_4KB; in testAes256CtrHmacSha256_4KB() local
98 KeyTemplate template = StreamingAeadKeyTemplates.AES256_CTR_HMAC_SHA256_1MB; in testAes256CtrHmacSha256_1MB() local
115 KeyTemplate template = StreamingAeadKeyTemplates.AES128_GCM_HKDF_4KB; in testAes128GcmHkdf_4KB() local
130 KeyTemplate template = StreamingAeadKeyTemplates.AES128_GCM_HKDF_1MB; in testAes128GcmHkdf_1MB() local
145 KeyTemplate template = StreamingAeadKeyTemplates.AES256_GCM_HKDF_4KB; in testAes256GcmHkdf_4KB() local
160 KeyTemplate template = StreamingAeadKeyTemplates.AES256_GCM_HKDF_1MB; in testAes256GcmHkdf_1MB() local
183 KeyTemplate template = StreamingAeadKeyTemplates.createAesCtrHmacStreamingKeyTemplate( in testCreateAesCtrHmacStreamingKeyTemplate() local
208 KeyTemplate template = StreamingAeadKeyTemplates.createAesGcmHkdfStreamingKeyTemplate( in testCreateAesGcmHkdfStreamingKeyTemplate() local
[all …]
/aosp_15_r20/frameworks/base/packages/SettingsLib/src/com/android/settingslib/
H A DNetworkPolicyEditor.java97 public boolean hasLimitedPolicy(NetworkTemplate template) { in hasLimitedPolicy()
102 public NetworkPolicy getOrCreatePolicy(NetworkTemplate template) { in getOrCreatePolicy()
111 public NetworkPolicy getPolicy(NetworkTemplate template) { in getPolicy()
120 public NetworkPolicy getPolicyMaybeUnquoted(NetworkTemplate template) { in getPolicyMaybeUnquoted()
130 private static NetworkPolicy buildDefaultPolicy(NetworkTemplate template) { in buildDefaultPolicy()
149 public int getPolicyCycleDay(NetworkTemplate template) { in getPolicyCycleDay()
159 public void setPolicyCycleDay(NetworkTemplate template, int cycleDay, String cycleTimezone) { in setPolicyCycleDay()
167 public long getPolicyWarningBytes(NetworkTemplate template) { in getPolicyWarningBytes()
172 private void setPolicyWarningBytesInner(NetworkTemplate template, long warningBytes) { in setPolicyWarningBytesInner()
180 public void setPolicyWarningBytes(NetworkTemplate template, long warningBytes) { in setPolicyWarningBytes()
[all …]
/aosp_15_r20/external/tink/java_src/src/test/java/com/google/crypto/tink/jwt/
H A DJwtHmacKeyManagerTest.java200 KeyTemplate template = KeyTemplates.get("JWT_HS256"); in testHs256Template() local
212 KeyTemplate template = KeyTemplates.get("JWT_HS384"); in testHs384Template() local
224 KeyTemplate template = KeyTemplates.get("JWT_HS512"); in testHs512Template() local
236 KeyTemplate template = KeyTemplates.get("JWT_HS256_RAW"); in testHs256RawTemplate() local
248 KeyTemplate template = KeyTemplates.get("JWT_HS384_RAW"); in testHs384RawTemplate() local
260 KeyTemplate template = KeyTemplates.get("JWT_HS512_RAW"); in testHs512RawTemplate() local
308 KeyTemplate template = KeyTemplates.get(templateNames); in createSignVerifyDifferentKey_throw() local
393 KeyTemplate template = KeyTemplates.get("JWT_HS256"); in computeVerify_canGetData() local
429 KeyTemplate template = KeyTemplates.get("JWT_HS256"); in verify_expired_shouldThrow() local
450 KeyTemplate template = KeyTemplates.get("JWT_HS256"); in verify_notExpired_success() local
[all …]
/aosp_15_r20/packages/modules/Connectivity/framework-t/src/android/app/usage/
DNetworkStatsManager.java248 public Bucket querySummaryForDevice(@NonNull NetworkTemplate template, in querySummaryForDevice()
299 NetworkTemplate template; in querySummaryForDevice() local
344 NetworkTemplate template; in querySummaryForUser() local
393 NetworkTemplate template; in querySummary() local
424 public NetworkStats querySummary(@NonNull NetworkTemplate template, long startTime, in querySummary()
458 public NetworkStats queryTaggedSummary(@NonNull NetworkTemplate template, long startTime, in queryTaggedSummary()
494 public NetworkStats queryDetailsForDevice(@NonNull NetworkTemplate template, in queryDetailsForDevice()
546 public NetworkStats queryDetailsForUid(@NonNull NetworkTemplate template, in queryDetailsForUid()
645 NetworkTemplate template; in queryDetailsForUidTagState() local
682 public NetworkStats queryDetailsForUidTagState(@NonNull NetworkTemplate template, in queryDetailsForUidTagState()
[all …]
/aosp_15_r20/external/google-cloud-java/java-dataproc/google-cloud-dataproc/src/test/java/com/google/cloud/dataproc/v1/
H A DWorkflowTemplateServiceClientTest.java113 WorkflowTemplate template = WorkflowTemplate.newBuilder().build(); in createWorkflowTemplateTest() local
138 WorkflowTemplate template = WorkflowTemplate.newBuilder().build(); in createWorkflowTemplateExceptionTest() local
167 WorkflowTemplate template = WorkflowTemplate.newBuilder().build(); in createWorkflowTemplateTest2() local
192 WorkflowTemplate template = WorkflowTemplate.newBuilder().build(); in createWorkflowTemplateExceptionTest2() local
221 WorkflowTemplate template = WorkflowTemplate.newBuilder().build(); in createWorkflowTemplateTest3() local
246 WorkflowTemplate template = WorkflowTemplate.newBuilder().build(); in createWorkflowTemplateExceptionTest3() local
556 WorkflowTemplate template = WorkflowTemplate.newBuilder().build(); in instantiateInlineWorkflowTemplateTest() local
580 WorkflowTemplate template = WorkflowTemplate.newBuilder().build(); in instantiateInlineWorkflowTemplateExceptionTest() local
602 WorkflowTemplate template = WorkflowTemplate.newBuilder().build(); in instantiateInlineWorkflowTemplateTest2() local
626 WorkflowTemplate template = WorkflowTemplate.newBuilder().build(); in instantiateInlineWorkflowTemplateExceptionTest2() local
[all …]
H A DWorkflowTemplateServiceClientHttpJsonTest.java108 WorkflowTemplate template = WorkflowTemplate.newBuilder().build(); in createWorkflowTemplateTest() local
137 WorkflowTemplate template = WorkflowTemplate.newBuilder().build(); in createWorkflowTemplateExceptionTest() local
166 WorkflowTemplate template = WorkflowTemplate.newBuilder().build(); in createWorkflowTemplateTest2() local
195 WorkflowTemplate template = WorkflowTemplate.newBuilder().build(); in createWorkflowTemplateExceptionTest2() local
224 WorkflowTemplate template = WorkflowTemplate.newBuilder().build(); in createWorkflowTemplateTest3() local
253 WorkflowTemplate template = WorkflowTemplate.newBuilder().build(); in createWorkflowTemplateExceptionTest3() local
587 WorkflowTemplate template = WorkflowTemplate.newBuilder().build(); in instantiateInlineWorkflowTemplateTest() local
615 WorkflowTemplate template = WorkflowTemplate.newBuilder().build(); in instantiateInlineWorkflowTemplateExceptionTest() local
634 WorkflowTemplate template = WorkflowTemplate.newBuilder().build(); in instantiateInlineWorkflowTemplateTest2() local
662 WorkflowTemplate template = WorkflowTemplate.newBuilder().build(); in instantiateInlineWorkflowTemplateExceptionTest2() local
[all …]
/aosp_15_r20/packages/modules/Connectivity/framework-t/src/android/net/
DINetworkStatsSession.aidl27 NetworkStats getDeviceSummaryForNetwork(in NetworkTemplate template, long start, long end); in getDeviceSummaryForNetwork()
31 NetworkStats getSummaryForNetwork(in NetworkTemplate template, long start, long end); in getSummaryForNetwork()
34 NetworkStatsHistory getHistoryForNetwork(in NetworkTemplate template, int fields); in getHistoryForNetwork()
39 …NetworkStatsHistory getHistoryIntervalForNetwork(in NetworkTemplate template, int fields, long sta… in getHistoryIntervalForNetwork()
53 …NetworkStats getSummaryForAllUid(in NetworkTemplate template, long start, long end, boolean includ… in getSummaryForAllUid()
56 NetworkStats getTaggedSummaryForAllUid(in NetworkTemplate template, long start, long end); in getTaggedSummaryForAllUid()
60 …NetworkStatsHistory getHistoryForUid(in NetworkTemplate template, int uid, int set, int tag, int f… in getHistoryForUid()
62 …NetworkStatsHistory getHistoryIntervalForUid(in NetworkTemplate template, int uid, int set, int ta… in getHistoryIntervalForUid()
/aosp_15_r20/cts/tests/autofillservice/src/android/autofillservice/cts/unittests/
H A DImageTransformationTest.java82 RemoteViews template = mock(RemoteViews.class); in fieldCannotBeFound() local
101 RemoteViews template = mock(RemoteViews.class); in theOneOptionsMatches() local
118 RemoteViews template = mock(RemoteViews.class); in theOneOptionsMatchesWithContentDescription() local
137 RemoteViews template = mock(RemoteViews.class); in noOptionsMatches() local
156 RemoteViews template = mock(RemoteViews.class); in multipleOptionsOneMatches() local
174 RemoteViews template = mock(RemoteViews.class); in multipleOptionsOneMatchesWithContentDescription() local
194 RemoteViews template = mock(RemoteViews.class); in twoOptionsMatch() local
213 RemoteViews template = mock(RemoteViews.class); in twoOptionsMatchWithContentDescription() local
H A DCharSequenceTransformationTest.java91 RemoteViews template = mock(RemoteViews.class); in testBadSubst() local
121 RemoteViews template = mock(RemoteViews.class); in testUnknownField() local
141 RemoteViews template = mock(RemoteViews.class); in testCreditCardObfuscator() local
158 RemoteViews template = mock(RemoteViews.class); in testReplaceAllByOne() local
175 RemoteViews template = mock(RemoteViews.class); in testPartialMatchIsIgnored() local
194 RemoteViews template = mock(RemoteViews.class); in userNameObfuscator() local
214 RemoteViews template = mock(RemoteViews.class); in testMismatch() local
236 RemoteViews template = mock(RemoteViews.class); in testFieldsAreAppliedInOrder() local
/aosp_15_r20/cts/tests/controls/src/android/controls/cts/
H A DCtsControlsService.java90 ControlTemplate template = in buildLight() local
106 ControlTemplate template = new ToggleTemplate("toggle", button); in buildSwitch() local
122 ControlTemplate template = new ToggleTemplate("toggle", button); in buildMower() local
140 ControlTemplate template = new ToggleTemplate("toggle", button); in buildLock() local
154 ControlTemplate template = new ToggleTemplate("toggle", button); in buildGate() local
167 ControlTemplate template = new TemperatureControlTemplate("temperature", in buildThermostat() local
187 ControlTemplate template = new StatelessTemplate("stateless"); in buildRoutine() local
200 ControlTemplate template = new ThumbnailTemplate("thumbnail", active, mIcon, description); in buildCamera() local
324 ControlTemplate template = new TemperatureControlTemplate("temperature", in performControlAction() local
/aosp_15_r20/external/apache-velocity-engine/velocity-engine-core/src/test/java/org/apache/velocity/test/issues/
H A DVelocity615TestCase.java47 String template = "#set( $foo = 'old' )"+ in testIt() local
60 String template = "#macro( test $a )"+ in testForIrrationallyFearedRelatedPossibleProblem() local
71 String template = "#macro( test $a )"+ in testForIrrationallyFearedRelatedPossibleProblem2() local
83 String template = "#macro( test $a )"+ in testForIrrationallyFearedRelatedPossibleProblem3() local
94 String template = "#macro( test $a )"+ in testForIrrationallyFearedRelatedPossibleProblem4() local
105 String template = "#macro( test $a )"+ in testForIrrationallyFearedRelatedPossibleProblem5() local
116 String template = "#macro(myMacro $result)"+ in testVelocity681() local
/aosp_15_r20/out/soong/.intermediates/frameworks/base/packages/SettingsLib/SpaPrivileged/SpaPrivilegedLib/android_common/kotlin_headers/
DSpaPrivilegedLib.jar ... AppItem (com.android.settingslib.spaprivileged.template.app.AppListItemModel, androidx.compose.runtime ...
/aosp_15_r20/external/tink/java_src/src/test/java/com/google/crypto/tink/mac/
H A DMacKeyTemplatesTest.java46 KeyTemplate template = MacKeyTemplates.HMAC_SHA256_128BITTAG; in hmacSha256_128BitTag() local
59 KeyTemplate template = MacKeyTemplates.HMAC_SHA256_256BITTAG; in hmacSha256_256BitTag() local
72 KeyTemplate template = MacKeyTemplates.HMAC_SHA512_256BITTAG; in hmacSha512_256BitTag() local
85 KeyTemplate template = MacKeyTemplates.HMAC_SHA512_512BITTAG; in hmacSha512_512BitTag() local
103 KeyTemplate template = MacKeyTemplates.createHmacKeyTemplate(keySize, tagSize, hashType); in testCreateHmacKeyTemplate() local
115 public Pair(KeyTemplate template, MacParameters parameters) { in Pair()
120 KeyTemplate template; field in MacKeyTemplatesTest.Pair
/aosp_15_r20/external/python/jinja/src/jinja2/
Dloaders.py19 def split_template_path(template): argument
69 def get_source(self, environment, template): argument
174 def get_source(self, environment, template): argument
287 def get_source(self, environment, template): argument
365 def get_source(self, environment, template): argument
396 def get_source(self, environment, template): argument
424 def get_loader(self, template): argument
432 def get_source(self, environment, template): argument
476 def get_source(self, environment, template): argument
/aosp_15_r20/external/libchrome/third_party/jinja2/
H A Dloaders.py22 def split_template_path(template): argument
70 def get_source(self, environment, template): argument
167 def get_source(self, environment, template): argument
231 def get_source(self, environment, template): argument
282 def get_source(self, environment, template): argument
313 def get_source(self, environment, template): argument
341 def get_loader(self, template): argument
349 def get_source(self, environment, template): argument
393 def get_source(self, environment, template): argument
/aosp_15_r20/external/tink/java_src/src/test/java/com/google/crypto/tink/
H A DTinkProtoParametersFormatTest.java54 KeyTemplate template = in testParseAesCmacFormat() local
76 KeyTemplate template = in testParseInvalidAesCmacFormat_throws() local
98 KeyTemplate template = in testSerializeAesCmacFormat() local
115 KeyTemplate template = in testParseToLegacyFormat() local
132 KeyTemplate template = in testSerializeFromLegacyFormat() local
149 KeyTemplate template = in testParseWithSpaceTypeUrl_throws() local
/aosp_15_r20/external/tink/java_src/src/test/java/com/google/crypto/tink/hybrid/internal/
H A DHpkePrivateKeyManagerTest.java98 public void validateKeyFormat_succeeds(@FromDataPoints("templateNames") String template) in validateKeyFormat_succeeds()
138 public void keyFormats(@FromDataPoints("templateNames") String template) throws Exception { in keyFormats()
143 public void createKey_succeeds(@FromDataPoints("templateNames") String template) in createKey_succeeds()
163 public void validateKey_succeeds(@FromDataPoints("templateNames") String template) in validateKey_succeeds()
213 public void parseKey(@FromDataPoints("templateNames") String template) throws Exception { in parseKey()
220 public void parseKeyFormat(@FromDataPoints("templateNames") String template) throws Exception { in parseKeyFormat()
226 public void createPrimitive(@FromDataPoints("templateNames") String template) throws Exception { in createPrimitive()
/aosp_15_r20/out/soong/.intermediates/frameworks/base/packages/SettingsLib/SpaPrivileged/SpaPrivilegedLib/android_common/kotlin/
DSpaPrivilegedLib.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/frameworks__base__packages__SettingsLib__SpaPrivileged__android_common__SpaPrivilegedLib.kotlin_module com ...

12345678910>>...68