Searched refs:mConstructorArgs (Results 1 - 5 of 5) sorted by relevance

/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DAppCompatViewInflater.java78 private final Object[] mConstructorArgs = new Object[2]; field in class:AppCompatViewInflater
163 mConstructorArgs[0] = context;
164 mConstructorArgs[1] = attrs;
183 mConstructorArgs[0] = null;
184 mConstructorArgs[1] = null;
226 return constructor.newInstance(mConstructorArgs);
/frameworks/support/v7/preference/src/android/support/v7/preference/
H A DPreferenceInflater.java49 private final Object[] mConstructorArgs = new Object[2]; field in class:PreferenceInflater
138 synchronized (mConstructorArgs) {
140 mConstructorArgs[0] = mContext;
249 Object[] args = mConstructorArgs;
/frameworks/base/core/java/android/view/
H A DLayoutInflater.java88 final Object[] mConstructorArgs = new Object[2]; field in class:LayoutInflater
452 synchronized (mConstructorArgs) {
457 Context lastContext = (Context) mConstructorArgs[0];
458 mConstructorArgs[0] = inflaterContext;
545 mConstructorArgs[0] = lastContext;
546 mConstructorArgs[1] = null;
639 Object lastContext = mConstructorArgs[0];
640 if (mConstructorArgs[0] == null) {
642 mConstructorArgs[0] = mContext;
644 Object[] args = mConstructorArgs;
[all...]
/frameworks/base/core/java/android/preference/
H A DGenericInflater.java54 private final Object[] mConstructorArgs = new Object[2]; field in class:GenericInflater
293 synchronized (mConstructorArgs) {
295 mConstructorArgs[0] = mContext;
383 Object[] args = mConstructorArgs;
/frameworks/layoutlib/bridge/src/android/view/
H A DBridgeInflater.java142 mConstructorArgs[0] = context;
244 final Object lastContext = mConstructorArgs[0];
245 mConstructorArgs[0] = context;
260 mConstructorArgs[0] = lastContext;
333 mConstructorArgs[1] = attrs;
336 mLayoutlibCallback.loadClass(name, mConstructorSignature, mConstructorArgs)
337 : mLayoutlibCallback.loadView(name, mConstructorSignature, mConstructorArgs);

Completed in 1943 milliseconds