Home
last modified time | relevance | path

Searched refs:quote (Results 1 – 15 of 15) sorted by relevance

/cts/hostsidetests/compilation/src/android/compilation/cts/
DCompilationTest.java155 checkDexoptStatus(dump, Pattern.quote(filename), ".*?"); in testCompileSecondaryDex()
160 checkDexoptStatus(dump, Pattern.quote(filename), "speed"); in testCompileSecondaryDex()
165 checkDexoptStatus(dump, Pattern.quote(filename), "verify"); in testCompileSecondaryDex()
169 checkDexoptStatus(dump, Pattern.quote(filename), "run-from-apk"); in testCompileSecondaryDex()
185 checkDexoptStatus(dump, Pattern.quote(filename), "verify"); in testCompileSecondaryDexUnsupportedClassLoader()
267 checkDexoptStatus(dump, Pattern.quote("base.apk"), "speed-profile"); in testEmbeddedProfileOk()
284 checkDexoptStatus(dump, Pattern.quote("base.apk"), "speed-profile"); in testEmbeddedProfileEmptyConfig()
293 checkDexoptStatus(dump, Pattern.quote("base.apk"), "verify"); in testEmbeddedProfileConfigDisabledByConfig()
319 checkDexoptStatus(dump, Pattern.quote("base.apk"), "verify"); in testIgnoreDexoptProfile()
328 checkDexoptStatus(dump, Pattern.quote("base.apk"), "verify"); in testIgnoreDexoptProfileNoValidation()
[all …]
DUtils.java189 return Pattern.compile(String.format("[\\s/](%s)\\s?", Pattern.quote(dexFile))); in dexFileToPattern()
/cts/hostsidetests/appbinding/hostside/src/com/android/cts/appbinding/
DAppBindingHostTest.java257 Pattern.quote("[" + packageName + "]") + " .* " in checkBound()
258 + Pattern.quote("[" + serviceClass + "]")); in checkBound()
268 "^" + Pattern.quote("conn,[Default SMS app]," + userId + "," + packageName + "," in checkBound()
290 "^" + Pattern.quote("finder,[Default SMS app]," + userId + "," in checkNotBoundWithError()
292 + Pattern.quote(expectedErrorPattern) + ".*$"); in checkNotBoundWithError()
301 "^" + Pattern.quote("finder,[Default SMS app]," + userId + ",") in checkPackageNotBound()
303 + Pattern.quote(packageName + ",") in checkPackageNotBound()
311 "\\sProcessRecord\\{.*\\:" + Pattern.quote(processName) + "\\/", false, in assertOomAdjustment()
/cts/libs/json/src/com/android/json/stream/
DJsonReader.java620 int quote = nextNonWhitespace(); in nextInObject() local
621 switch (quote) { in nextInObject()
625 name = nextString((char) quote); in nextInObject()
807 private String nextString(char quote) throws IOException { in nextString() argument
815 if (c == quote) { in nextString()
/cts/tests/suspendapps/tests/src/android/suspendapps/cts/
DDialogTests.java133 final Pattern buttonTextIgnoreCase = Pattern.compile(Pattern.quote(expectedButtonText), in verifyDialogAndPressUnsuspend()
175 final Pattern buttonTextIgnoreCase = Pattern.compile(Pattern.quote(expectedButtonText), in testInterceptorActivity_moreDetails()
218 final Pattern buttonTextIgnoreCase = Pattern.compile(Pattern.quote(expectedButtonText), in testInterceptorActivity_strings()
/cts/tests/tests/webkit/src/android/webkit/cts/
DWebSettingsTest.java196 expectedRelease = Pattern.quote(Build.VERSION.RELEASE); in checkUserAgentStringHelper()
207 Pattern.quote("Mozilla/5.0 (Linux; Android ") + expectedRelease + ";" + in checkUserAgentStringHelper()
209 "( " + Pattern.quote(Build.MODEL) + ")?" + in checkUserAgentStringHelper()
211 "( Build/" + Pattern.quote(Build.ID) + ")?" + in checkUserAgentStringHelper()
218 Pattern.quote(" wv) ") + in checkUserAgentStringHelper()
221 Pattern.quote("(KHTML, like Gecko) Version/4.0 ") + in checkUserAgentStringHelper()
/cts/hostsidetests/securitybulletin/test-apps/CVE-2021-39701/src/android/security/cts/CVE_2021_39701/
DDeviceTest.java121 Pattern idPattern = Pattern.compile(Pattern.quote(id), Pattern.CASE_INSENSITIVE); in clickButton()
/cts/tests/media/jni/
DNativeMediaFormatUnitTest.cpp114 auto* quote = new Buffer{new char[sz], sz}; in NativeMediaFormatUnitTest() local
115 memcpy(quote->buffer, story, sz); in NativeMediaFormatUnitTest()
116 mBufferKeyValuePairs.insert({quote, "one line story"}); in NativeMediaFormatUnitTest()
/cts/libs/vogar-expect/src/vogar/expect/
DExpectationStore.java217 … pattern = Pattern.compile(".*" + Pattern.quote(reader.nextString()) + ".*", PATTERN_FLAGS); in readExpectation()
/cts/tests/tests/security/src/android/security/cts/
DBasePermissionUiTest.kt259 Pattern.quote(textWithoutHtml), in <lambda>()
/cts/hostsidetests/appsecurity/test-apps/ListeningPortsApp/src/android/appsecurity/cts/listeningports/
DListeningPortsTest.java242 pattern = Pattern.quote(pattern); in isPatternMatch()
/cts/tests/tests/voiceRecognition/src/android/voicerecognition/cts/
DRecognitionServiceMicIndicatorTest.java369 return Pattern.quote(String.format("%s:id/%s", resourcePackage, resourceId)); in resourceNameLiteral()
/cts/tests/tests/sharesheet/src/android/sharesheet/cts/
DCtsNfcResolverDeviceTest.java370 return Pattern.compile(String.format("^.*%s.*$", Pattern.quote(text)), flags); in textContainsPattern()
DCtsSharesheetDeviceTest.java1293 return Pattern.compile(String.format("^.*%s.*$", Pattern.quote(text)), flags); in textContainsPattern()
/cts/hostsidetests/statsdatom/src/android/cts/statsdatom/telephony/
DTelephonyStatsTests.java310 Pattern classNamePattern = Pattern.compile("^(\\s*)" + Pattern.quote(className) + ":.*$"); in getTelephonyDumpEntries()