HomeSort by relevance Sort by last modified time
    Searched full:newinstance (Results 276 - 300 of 2106) sorted by null

<<11121314151617181920>>

  /packages/apps/Launcher2/src/com/android/launcher2/
WallpaperChooser.java 43 DialogFragment fragment = WallpaperChooserDialogFragment.newInstance();
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/
BaseSettingsActivity.java 76 mContentFragment = ContentFragment.newInstance(title, breadcrumb, description, iconResId,
78 mActionFragment = ActionFragment.newInstance(mActions);
88 mContentFragment = ContentFragment.newInstance(title, breadcrumb, null, uri,
90 mActionFragment = ActionFragment.newInstance(mActions);
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/connectivity/
WpsConnectionActivity.java 152 return WpsScanningFragment.newInstance();
156 return WpsPinFragment.newInstance(pin);
166 return SelectFromListWizardFragment.newInstance(errorMessage, null, listItems,
171 return TimedMessageWizardFragment.newInstance(
WpsScanningFragment.java 33 public static WpsScanningFragment newInstance() {
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/expected/
ExpectedKeyOutput.java 32 static ExpectedKeyOutput newInstance(final int code) {
36 static ExpectedKeyOutput newInstance(final String outputText) {
66 return newInstance(codeString.toUpperCase(locale));
124 return newInstance(mText.toUpperCase(locale));
  /external/chromium_org/third_party/protobuf/java/src/test/java/com/google/protobuf/
ParserTest.java 84 CodedInputStream.newInstance(data), registry));
101 CodedInputStream.newInstance(data)));
140 CodedInputStream.newInstance(data)));
168 parser.parseFrom(CodedInputStream.newInstance(
229 ExtensionRegistry registry = ExtensionRegistry.newInstance();
293 ExtensionRegistry registry = ExtensionRegistry.newInstance();
356 ExtensionRegistry registry = ExtensionRegistry.newInstance();
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/xml/parsers/
SAXParserFactoryTest.java 54 spf = SAXParserFactory.newInstance();
82 SchemaFactory.newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI);
121 SAXParserFactory dtf = SAXParserFactory.newInstance();
127 SAXParserFactory spf1 = SAXParserFactory.newInstance();
135 SAXParserFactory spf2 = SAXParserFactory.newInstance();
140 SAXParserFactory.newInstance();
249 SchemaFactory.newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI);
  /cts/tests/tests/graphics/src/android/graphics/cts/
BitmapRegionDecoderTest.java 113 BitmapRegionDecoder.newInstance(is, false);
132 .newInstance(imageData, 0, imageData.length, false);
149 BitmapRegionDecoder.newInstance(filepath, false);
154 BitmapRegionDecoder.newInstance(fd, false);
173 BitmapRegionDecoder decoder = BitmapRegionDecoder.newInstance(is1, false);
199 BitmapRegionDecoder decoder = BitmapRegionDecoder.newInstance(is1, false);
229 .newInstance(imageData, 0, imageData.length, false);
255 BitmapRegionDecoder.newInstance(filepath, false);
266 decoder = BitmapRegionDecoder.newInstance(fd1, false);
283 BitmapRegionDecoder decoder = BitmapRegionDecoder.newInstance(is, false)
    [all...]
  /libcore/xml/src/main/java/org/xmlpull/v1/
XmlPullParserFactory.java 151 return (XmlPullParser) parserClass.newInstance();
175 return (XmlSerializer) serializerClass.newInstance();
223 public static XmlPullParserFactory newInstance () throws XmlPullParserException {
233 public static XmlPullParserFactory newInstance (String unused, Class unused2)
235 return newInstance();
  /packages/apps/Email/src/com/android/email/mail/
Store.java 65 static Store newInstance(Account account) throws MessagingException {
66 throw new MessagingException("Store#newInstance: Unknown scheme in "
118 // invoke "newInstance" class method
119 Method m = klass.getMethod("newInstance", Account.class, Context.class);
123 "exception %s invoking method %s#newInstance(Account, Context) for %s",
  /prebuilts/tools/common/m2/repository/org/objenesis/objenesis/1.0/
objenesis-1.0.jar 
  /cts/tests/tests/hardware/src/android/hardware/camera2/cts/rs/
AllocationInfo.java 62 public static AllocationInfo newInstance(Allocation allocation) {
89 public static AllocationInfo newInstance(Size size, int format, int usage) {
127 public static AllocationInfo newInstance(Size size, int format) {
128 return newInstance(size, format, Allocation.USAGE_SCRIPT);
145 public static AllocationInfo newInstance(Element element, Size size) {
164 public static AllocationInfo newInstance(Element element, Size size, int usage) {
193 return newInstance(getSize(), format, usage);
208 return newInstance(element, getSize());
223 return newInstance(getSize(), format, Allocation.USAGE_SCRIPT);
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountSetupFinal.java 470 f = AccountSetupBasicsFragment.newInstance();
473 f = AccountSetupTypeFragment.newInstance();
476 f = AccountSetupABFragment.newInstance(mSetupData.getEmail(),
480 f = AccountSetupCredentialsFragment.newInstance(mSetupData.getEmail(),
486 f = AccountSetupIncomingFragment.newInstance(false);
489 f = AccountSetupOutgoingFragment.newInstance(false);
492 f = AccountSetupOptionsFragment.newInstance();
495 f = AccountSetupNamesFragment.newInstance();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8ScriptRunner.cpp 168 TRACE_EVENT0("v8", "v8.newInstance");
172 v8::Local<v8::Object> result = objectTemplate->NewInstance();
179 TRACE_EVENT0("v8", "v8.newInstance");
183 v8::Local<v8::Object> result = function->NewInstance(argc, argv);
190 TRACE_EVENT0("v8", "v8.newInstance");
193 v8::Local<v8::Object> result = function->NewInstance(argc, argv);
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/beans/
BeanMap.java 69 public Object newInstance(Class type, int require);
123 return (BeanMap)super.create(KEY_FACTORY.newInstance(beanClass, require));
131 return ((BeanMap)ReflectUtils.newInstance(type)).newInstance(bean);
135 return ((BeanMap)instance).newInstance(bean);
145 abstract public BeanMap newInstance(Object bean);
  /frameworks/base/graphics/java/android/graphics/
BitmapRegionDecoder.java 30 * <p>To create a BitmapRegionDecoder, call newInstance(...).
60 public static BitmapRegionDecoder newInstance(byte[] data,
85 public static BitmapRegionDecoder newInstance(
113 public static BitmapRegionDecoder newInstance(InputStream is,
143 public static BitmapRegionDecoder newInstance(String pathName,
150 decoder = newInstance(stream, isShareable);
  /libcore/luni/src/main/java/javax/xml/datatype/
FactoryFinder.java 128 static Object newInstance(
145 return spiClass.newInstance();
175 return newInstance(systemProp, classLoader);
199 return newInstance(factoryClassName, classLoader);
219 return newInstance(fallbackClassName, classLoader);
273 return newInstance(factoryClassName, cl);
  /art/test/071-dexfile/src/
Main.java 70 Object another = Another.newInstance();
88 return (ClassLoader) DexClassLoader_init.newInstance(CLASS_PATH, getOdexDir(), LIB_DIR, classLoader);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/testcase/
ServReqMultiClientTestCase01.java 44 WifiP2pUpnpServiceRequest upnpReq = WifiP2pUpnpServiceRequest.newInstance();
46 WifiP2pDnsSdServiceRequest.newInstance();
ServReqMultiClientTestCase02.java 44 WifiP2pDnsSdServiceRequest.newInstance("_ipp._tcp");
46 WifiP2pDnsSdServiceRequest.newInstance("Example", "_afpovertcp._tcp");
  /cts/tools/signature-tools/src/signature/converter/doclet/
DocletFactory.java 103 // c.newInstance(context, "SigTest");
111 c.newInstance(context, "SigTest", err, warn, notice);
  /developers/build/prebuilts/gradle/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/ui/
ImageDetailFragment.java 47 public static ImageDetailFragment newInstance(String imageUrl) {
64 * {@link ImageDetailFragment#newInstance(String)} to create this fragment.
  /developers/samples/android/ui/graphics/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/ui/
ImageDetailFragment.java 47 public static ImageDetailFragment newInstance(String imageUrl) {
64 * {@link ImageDetailFragment#newInstance(String)} to create this fragment.
  /developers/samples/android/wearable/wear/SkeletonWearableApp/Wearable/src/main/java/com/example/android/skeletonwearableapp/
GridExampleActivity.java 73 return MainFragment.newInstance(rowNum, colNum);
99 private static MainFragment newInstance(int rowNum, int colNum) {
  /development/samples/ApiDemos/src/com/example/android/apis/app/
FragmentArguments.java 45 Fragment newFragment = MyFragment.newInstance("From Arguments");
60 static MyFragment newInstance(CharSequence label) {

Completed in 1844 milliseconds

<<11121314151617181920>>