Searched defs:newContext (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DPhoneLayoutInflater.java45 protected PhoneLayoutInflater(LayoutInflater original, Context newContext) { argument
46 super(original, newContext);
69 public LayoutInflater cloneInContext(Context newContext) { argument
70 return new PhoneLayoutInflater(this, newContext);
/frameworks/base/core/java/android/preference/
H A DPreferenceInflater.java53 PreferenceInflater(GenericInflater<Preference, PreferenceGroup> original, PreferenceManager preferenceManager, Context newContext) { argument
54 super(original, newContext);
59 public GenericInflater<Preference, PreferenceGroup> cloneInContext(Context newContext) { argument
60 return new PreferenceInflater(this, mPreferenceManager, newContext);
H A DGenericInflater.java118 * @param newContext The new Context to use.
120 protected GenericInflater(GenericInflater<T,P> original, Context newContext) { argument
121 mContext = newContext;
131 * @param newContext The new Context to associate with the new inflater.
137 public abstract GenericInflater cloneInContext(Context newContext); argument
/frameworks/base/tools/layoutlib/bridge/src/android/view/
H A DBridgeInflater.java61 protected BridgeInflater(LayoutInflater original, Context newContext) { argument
62 super(original, newContext);
269 public LayoutInflater cloneInContext(Context newContext) { argument
270 return new BridgeInflater(this, newContext);
/frameworks/base/core/java/android/view/
H A DLayoutInflater.java197 * @param newContext The new Context to use.
199 protected LayoutInflater(LayoutInflater original, Context newContext) { argument
200 mContext = newContext;
225 * @param newContext The new Context to associate with the new LayoutInflater.
231 public abstract LayoutInflater cloneInContext(Context newContext); argument

Completed in 111 milliseconds