Home
last modified time | relevance | path

Searched refs:factory (Results 1 – 9 of 9) sorted by relevance

/development/testrunner/test_defs/
Dtest_walker.py175 factory = self._FindUpstreamTestFactory(path)
176 if factory:
177 return factory.CreateTests(sub_tests_path=path)
236 factory = self._GetTestFactoryForPath(path)
237 if factory:
238 return factory
258 factory = self._GetTestFactory(android_mk_parser, path,
260 if factory:
261 return factory.CreateTests(path)
/development/samples/IntentPlayground/src/com/example/android/intentplayground/
DAMControl.java53 ProcessBuilder factory = new ProcessBuilder(cmd.split(" ")); in execCmd() local
58 Process proc = factory.start(); in execCmd()
/development/tools/axl/
Daxl.py245 factory = ServerFactory()
246 factory.protocol = protocol
247 reactor.listenTCP(protocol.PORT, factory)
/development/vndk/tools/header-checker/src/dumper/
Dheader_checker.cpp155 std::unique_ptr<clang::tooling::FrontendActionFactory> factory( in main() local
157 return tool.run(factory.get()); in main()
/development/vndk/tools/definition-tool/assets/insight/
Dinsight.js1 (function (root, factory) { argument
3 define([], factory);
5 module.exports = factory();
7 root.insight = factory();
/development/samples/XmlAdapters/src/com/example/android/xmladapters/
DXmlDocumentProvider.java218 XmlPullParserFactory factory = XmlPullParserFactory.newInstance(); in getUriXmlPullParser() local
219 factory.setNamespaceAware(true); in getUriXmlPullParser()
220 parser = factory.newPullParser(); in getUriXmlPullParser()
/development/samples/SipDemo/src/com/example/android/sip/
DWalkieTalkieActivity.java311 LayoutInflater factory = LayoutInflater.from(this); in onCreateDialog() local
312 final View textBoxView = factory.inflate(R.layout.call_address_dialog, null); in onCreateDialog()
/development/samples/browseable/AsymmetricFingerprintDialog/src/com.example.android.asymmetricfingerprintdialog/
DFingerprintAuthenticationDialogFragment.java206 KeyFactory factory = KeyFactory.getInstance(publicKey.getAlgorithm()); in enroll() local
208 PublicKey verificationKey = factory.generatePublic(spec); in enroll()
/development/samples/ApiDemos/src/com/example/android/apis/app/
DAlertDialogSamples.java310 LayoutInflater factory = LayoutInflater.from(this); in onCreateDialog()
311 final View textEntryView = factory.inflate(R.layout.alert_dialog_text_entry, null); in onCreateDialog()