OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:newinstance
(Results
176 - 200
of
2106
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
HttpClientFactory.java
59
Method
newInstance
= clazz.getMethod("
newInstance
", String.class);
60
Object instance =
newInstance
.invoke(null, userAgent);
/packages/apps/Launcher3/WallpaperPicker/src/com/android/photos/
BitmapRegionTileSource.java
57
public static SimpleBitmapRegionDecoderWrapper
newInstance
(
60
BitmapRegionDecoder d = BitmapRegionDecoder.
newInstance
(pathName, isShareable);
70
public static SimpleBitmapRegionDecoderWrapper
newInstance
(
73
BitmapRegionDecoder d = BitmapRegionDecoder.
newInstance
(is, isShareable);
101
public static DumbBitmapRegionDecoder
newInstance
(String pathName) {
108
public static DumbBitmapRegionDecoder
newInstance
(InputStream is) {
233
d = SimpleBitmapRegionDecoderWrapper.
newInstance
(mPath, true);
235
d = DumbBitmapRegionDecoder.
newInstance
(mPath);
275
SimpleBitmapRegionDecoderWrapper.
newInstance
(is, false);
279
regionDecoder = DumbBitmapRegionDecoder.
newInstance
(is)
[
all
...]
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/picker/
TimePicker.java
42
public static TimePicker
newInstance
() {
43
return
newInstance
(true, true);
46
public static TimePicker
newInstance
(boolean is24hFormat, boolean defaultToCurrentTime) {
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/apps/
AppManagementActivity.java
81
mActionFragment = ActionFragment.
newInstance
(getActions());
85
setContentAndActionFragments(ContentFragment.
newInstance
(mAppInfo.getName(),
200
PermissionsFragment.
newInstance
(mPackageName));
204
action), ActionFragment.
newInstance
(actionType.toSelectableActions(
211
ActionFragment.
newInstance
(actionType.toActions(getResources())));
229
return ContentFragment.
newInstance
(action.getTitle(), mAppInfo.getName(), descriptionToUse,
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/display/daydream/
DaydreamActivity.java
72
mActionFragment = ActionFragment.
newInstance
(getMainActions());
131
ActionFragment.
newInstance
(mDreamBackend.getDreamInfoActions()));
138
ActionFragment.
newInstance
(getListActions(ActionType.SET_DREAM_TIMEOUT.name(),
147
ActionFragment.
newInstance
(getListActions(ActionType.SET_SYSTEM_SLEEP_TIMEOUT.name(),
206
return ContentFragment.
newInstance
(title, getString(R.string.device_daydream), description,
211
return ContentFragment.
newInstance
(
/art/runtime/native/
java_lang_reflect_Constructor.cc
30
* We get here through Constructor.
newInstance
(). The Constructor object
78
NATIVE_METHOD(Constructor,
newInstance
, "!([Ljava/lang/Object;Z)Ljava/lang/Object;"),
/developers/build/prebuilts/gradle/FragmentTransition/Application/src/main/java/com/example/android/fragmenttransition/
FragmentTransitionFragment.java
37
public static FragmentTransitionFragment
newInstance
() {
67
DetailFragment.
newInstance
(meat.resourceId, meat.title,
/developers/samples/android/ui/transition/FragmentTransition/Application/src/main/java/com/example/android/fragmenttransition/
FragmentTransitionFragment.java
37
public static FragmentTransitionFragment
newInstance
() {
67
DetailFragment.
newInstance
(meat.resourceId, meat.title,
/development/samples/ApiDemos/src/com/example/android/apis/app/
FragmentAlertDialog.java
57
DialogFragment newFragment = MyAlertDialogFragment.
newInstance
(
76
public static MyAlertDialogFragment
newInstance
(int title) {
FragmentStackFragment.java
39
Fragment newFragment = FragmentStack.CountingFragment.
newInstance
(mStackLevel);
79
Fragment newFragment = FragmentStack.CountingFragment.
newInstance
(mStackLevel);
/development/samples/Support4Demos/src/com/example/android/supportv4/app/
FragmentAlertDialogSupport.java
58
DialogFragment newFragment = MyAlertDialogFragment.
newInstance
(
77
public static MyAlertDialogFragment
newInstance
(int title) {
/development/samples/browseable/FragmentTransition/src/com.example.android.fragmenttransition/
FragmentTransitionFragment.java
37
public static FragmentTransitionFragment
newInstance
() {
67
DetailFragment.
newInstance
(meat.resourceId, meat.title,
/external/chromium_org/extensions/renderer/
object_backed_native_handler.h
31
virtual v8::Handle<v8::Object>
NewInstance
() OVERRIDE;
40
//
NewInstance
()s of this ObjectBackedNativeHandler will have a property
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8ObjectConstructor.h
78
static v8::Local<v8::Object>
newInstance
(v8::Isolate*, v8::Handle<v8::Function>);
79
static v8::Local<v8::Object>
newInstance
(v8::Isolate*, v8::Handle<v8::Function>, int, v8::Handle<v8::Value> argv[]);
/external/objenesis/main/src/org/objenesis/instantiator/jrockit/
JRockit131Instantiator.java
81
public Object
newInstance
() {
83
return mungedConstructor.
newInstance
((Object[]) null);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowAndroidHttpClient.java
31
public static AndroidHttpClient
newInstance
(String userAgent) {
36
public static AndroidHttpClient
newInstance
(String userAgent, Context context) {
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
ConnectivityManagerTest.java
48
NetworkInfo networkInfo = ShadowNetworkInfo.
newInstance
(NetworkInfo.DetailedState.CONNECTING);
83
shadowConnectivityManager.setActiveNetworkInfo(ShadowNetworkInfo.
newInstance
(null,
/external/smack/src/org/jivesoftware/smack/compression/
JzlibInputOutputStream.java
58
Object in = constructor.
newInstance
(inputStream);
69
Object out = constructor.
newInstance
(outputStream, 9);
/external/tagsoup/src/org/ccil/cowan/tagsoup/jaxp/
JAXPTest.java
44
SAXParserFactory spf = SAXParserFactory.
newInstance
();
50
Document doc = DocumentBuilderFactory.
newInstance
().newDocumentBuilder().parse(f);
/frameworks/base/core/java/android/hardware/camera2/utils/
Decorator.java
9
* @see android.hardware.camera2.utils.Decorator#
newInstance
61
public static<T> T
newInstance
(T obj, DecoratorListener listener) {
/frameworks/opt/net/voip/src/java/android/net/sip/
package.html
12
calling {@link android.net.sip.SipManager#
newInstance
newInstance
()}.</p>
/libcore/benchmarks/src/benchmarks/regression/
XmlEntitiesBenchmark.java
41
xmlPullParserFactory = XmlPullParserFactory.
newInstance
();
42
documentBuilderFactory = DocumentBuilderFactory.
newInstance
();
/libcore/luni/src/test/java/libcore/xml/
DomSerializationTest.java
36
DocumentBuilderFactory builderFactory = DocumentBuilderFactory.
newInstance
();
38
transformer = TransformerFactory.
newInstance
().newTransformer();
NodeTest.java
42
Document document = DocumentBuilderFactory.
newInstance
().newDocumentBuilder().parse(bis);
48
DocumentBuilder builder = DocumentBuilderFactory.
newInstance
().newDocumentBuilder();
/libcore/support/src/test/java/tests/support/
Support_ClassLoader.java
39
"tests.support.Support_ClassLoader$Dalvik").
newInstance
();
42
"tests.support.Support_ClassLoader$RefImpl").
newInstance
();
Completed in 1274 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>