Home
last modified time | relevance | path

Searched refs:re (Results 1 – 25 of 44) sorted by relevance

12

/cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
DTestModule.java38 ReadElf re = ReadElf.read(mConfigExe); in getDynSymArr() local
39 re.getDynamicSymbol(""); in getDynSymArr()
40 mDynSymArr = re.getDynSymArr(); in getDynSymArr()
DNdkApiXmlReport.java150 ReadElf re = ReadElf.read(ndkSo); in main() local
151 re.getDynamicSymbol(""); in main()
152 ReadElf.Symbol[] symArr = re.getDynSymArr(); in main()
/cts/tests/tests/media/projection/sdk34/
DREADME2 changes detect when an app is re-using the user's consent, and either:
4 2. re-show the permission dialog
6 The test app re-uses the user's consent token through two possible mechanisms:
/cts/tests/tests/media/projection/sdk33/
DREADME2 changes detect when an app is re-using the user's consent, and either:
4 2. re-show the permission dialog
6 The test app re-uses the user's consent token through two possible mechanisms:
/cts/tests/tests/bionic_app/
DREADME.md3 These aren't the bionic tests. They're in cts/tests/tests/bionic/ (or, if
4 you're looking for the actual gtests rather than the CTS boilerplate, in
/cts/tests/signature/api-check/scripts/
Dtransform_expected_failures.py6 import re
25 return re.findall(
/cts/tests/tests/telecom/src/android/telecom/cts/
DThirdPartyInCallServiceAppOpsPermissionTest.java180 } catch (RemoteException re) { in assertBindStatus()
181 Log.e(TAG, "Remote exception when checking bind status: " + re); in assertBindStatus()
210 } catch (RemoteException re) { in assertCallCount()
211 Log.e(TAG, "Remote exception when getting local call count: " + re); in assertCallCount()
DCarModeInCallServiceTest.java674 } catch (RemoteException re) { in verifyCarModeBound()
701 } catch (RemoteException re) { in verifyCarModeUnbound()
719 } catch (RemoteException re) { in enableAndVerifyCarMode()
735 } catch (RemoteException re) { in requestAndVerifyAutomotiveProjection()
748 } catch (RemoteException re) { in releaseAutomotiveProjection()
/cts/tests/suspendapps/test-apps/SuspendTestApp/src/com/android/suspendapps/suspendtestapp/
DTestService.java117 } catch (RemoteException re) { in reportBroadcastIfNeeded()
118 Log.e(TAG, "Unable to report broadcast " + intent + " to instrumentation", re); in reportBroadcastIfNeeded()
/cts/apps/CameraITS/utils/
Dvideo_processing_utils.py23 import re
338 re.search(r'avg_frame_rate=*([0-9]+/[0-9]+)', output)
381 curr_time = float(re.search(r'time= *([0-9][0-9\.]*)', line)
427 metadata = re.search(r'"color_space": ("[a-z0-9]*")', line)
/cts/tools/utils/cts/
Dtools.py19 import re
173 exp = re.compile(pattern)
188 exp = re.compile(pattern)
/cts/tools/incremental-cts/
Dincremental_deqp.py41 import re
273 self._exclude_deqp_pattern = re.compile('(^/data/|^\[vdso\]|^/dmabuf)')
336 if re.search(' comm .*deqp-binary', line):
347 if not re.search(self._exclude_deqp_pattern, deps_file):
472 return not re.search(re.compile('^/apex/'), dependency_name)
/cts/hostsidetests/multidevices/tools/
Drun_all_tests.py20 import re
143 match = re.search(r'"(.*?)"', line) # Get file path
/cts/common/device-side/util-axt/src/com/android/compatibility/common/util/
DReadElf.java176 ReadElf re = new ReadElf(new File(arg)); in main() local
177 re.getSymbol("x"); in main()
178 re.getDynamicSymbol("x"); in main()
179 re.close(); in main()
/cts/tests/contextualsearch/src/android/contextualsearch/cts/
DCtsContextualSearchActivity.kt51 Log.d(TAG, "-----${if (value == null) "re" else ""}setWatcher-----")
/cts/tests/tests/wifi/mockWifi/src/android/wifi/mockwifi/nl80211/
DIWifiScannerImp.java116 } catch (RemoteException re) { in mockScanResultReadyEvent()
117 Log.e(TAG, "RemoteException when calling OnScanResultRead" + re); in mockScanResultReadyEvent()
/cts/tools/cts-media/
Dget_achievable_rates.py17 import argparse, json, math, re, sys, zipfile
33 for p in re.split('(\d+)', v.lower()):
71 for k, v in re.findall(r'([^ =]+)=([^ [=]+(?:|\[[^\]]+\]))(?:, |$)', value))
328 if re.search(r'/GenericDeviceInfo.deviceinfo.json$', info.filename):
330 elif re.search(r'/Cts(Media|Video)(Decoder)?TestCases\.reportlog\.json$', info.filename):
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/opc_throw/
DTest_opc_throw.java38 } catch (RuntimeException re) { in testN1()
/cts/tools/utils/
DbuildCts.py21 import re
61 pattern = re.compile(r'^\s*([^:#=\s]+)\s*:=\s*(.*?[^\\])$', re.MULTILINE + re.DOTALL)
/cts/tests/tests/media/
DREADME.md16 | CtsMediaProjectionSDK33TestCases | MediaProjection related tests, detecting consent re-use on SDK…
17 | CtsMediaProjectionSDK34TestCases | MediaProjection related tests, detecting consent re-use on SDK…
/cts/tests/tests/telecom-apps/Utils/src/android/telecom/cts/apps/
DAppControlWrapper.java117 } catch (RemoteException re) { in addCall()
118 handleRemoteException(re, "addCall"); in addCall()
/cts/suite/cts/utils/
Dget_csv_report.py18 import re
106 m = re.search(r'.*;/data\s+([\w\.]+)\s+([\w\.]+)\s+([\w\.]+)\s+([\w\.]+);', partitions)
/cts/hostsidetests/multidevices/bluetooth/
Dbluetooth_multi_devices_test.py8 import re
/cts/tests/tests/os/src/android/os/cts/
DBinderIntegrationTest.java363 } catch (RemoteException re) { in testBinderDiedWho()
364 fail("Couldn't get token and linkToDeath: " + re); in testBinderDiedWho()
/cts/tests/tests/text/src/android/text/cts/
DSpannableStringBuilderSpanTest.java85 for (int re = rs; re < replPositionSet.size(); re++) { in replace()
89 replPositionSet.getPosition(rs), replPositionSet.getPosition(re)); in replace()

12