HomeSort by relevance Sort by last modified time
    Searched refs:newContext (Results 1 - 25 of 39) sorted by null

1 2

  /frameworks/base/policy/src/com/android/internal/policy/impl/
PhoneLayoutInflater.java 45 protected PhoneLayoutInflater(LayoutInflater original, Context newContext) {
46 super(original, newContext);
69 public LayoutInflater cloneInContext(Context newContext) {
70 return new PhoneLayoutInflater(this, newContext);
  /external/webkit/Source/WebCore/platform/mac/
LocalCurrentGraphicsContext.mm 39 NSGraphicsContext* newContext = [NSGraphicsContext graphicsContextWithGraphicsPort:graphicsContext->platformContext() flipped:YES];
40 [NSGraphicsContext setCurrentContext:newContext];
  /frameworks/base/core/java/android/preference/
PreferenceInflater.java 53 PreferenceInflater(GenericInflater<Preference, PreferenceGroup> original, PreferenceManager preferenceManager, Context newContext) {
54 super(original, newContext);
59 public GenericInflater<Preference, PreferenceGroup> cloneInContext(Context newContext) {
60 return new PreferenceInflater(this, mPreferenceManager, newContext);
GenericInflater.java 118 * @param newContext The new Context to use.
120 protected GenericInflater(GenericInflater<T,P> original, Context newContext) {
121 mContext = newContext;
131 * @param newContext The new Context to associate with the new inflater.
137 public abstract GenericInflater cloneInContext(Context newContext);
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowLayoutInflater.java 77 @Override public LayoutInflater cloneInContext(Context newContext) {
78 return bind(new MyLayoutInflater(newContext), newContext);
  /external/webkit/Source/WebCore/rendering/
PaintInfo.h 52 PaintInfo(GraphicsContext* newContext, const IntRect& newRect, PaintPhase newPhase, bool newForceBlackText,
55 : context(newContext)
  /external/jmonkeyengine/engine/src/core/com/jme3/system/
JmeSystem.java 116 public static JmeContext newContext(AppSettings settings, JmeContext.Type contextType) {
118 return systemDelegate.newContext(settings, contextType);
JmeSystemDelegate.java 144 public abstract JmeContext newContext(AppSettings settings, JmeContext.Type contextType);
  /frameworks/base/tools/layoutlib/bridge/src/android/view/
BridgeInflater.java 61 protected BridgeInflater(LayoutInflater original, Context newContext) {
62 super(original, newContext);
269 public LayoutInflater cloneInContext(Context newContext) {
270 return new BridgeInflater(this, newContext);
  /libcore/luni/src/test/java/libcore/javax/net/ssl/
SSLContextTest.java 53 SSLContext newContext = SSLContext.getInstance(protocol);
54 assertNotNull(newContext);
55 assertNotSame(oldContext, newContext);
56 SSLContext.setDefault(newContext);
57 assertSame(newContext, SSLContext.getDefault());
  /external/smack/src/org/apache/harmony/javax/security/auth/
Subject.java 184 AccessControlContext newContext;
202 newContext = (AccessControlContext) AccessController.doPrivileged(dccAction);
204 return AccessController.doPrivileged(action, newContext);
265 AccessControlContext newContext;
282 newContext = AccessController.doPrivileged(dccAction);
284 return AccessController.doPrivileged(action, newContext);
  /libcore/luni/src/main/java/javax/security/auth/
Subject.java 179 AccessControlContext newContext;
196 newContext = (AccessControlContext) AccessController.doPrivileged(dccAction);
198 return AccessController.doPrivileged(action, newContext);
253 AccessControlContext newContext;
270 newContext = AccessController.doPrivileged(dccAction);
272 return AccessController.doPrivileged(action, newContext);
  /external/icu4c/test/cintltst/
tracetst.c 224 const void *newContext = (const char *)originalTContext + 1;
230 utrace_setFunctions(newContext, testTraceEntry, testTraceExit, testTraceData);
235 TEST_ASSERT(context == newContext);
  /external/jmonkeyengine/engine/src/android/com/jme3/system/android/
JmeAndroidSystem.java 45 public JmeContext newContext(AppSettings settings, Type contextType) {
  /external/replicaisland/src/com/replica/replicaisland/
GameRenderer.java 324 public void setContext(Context newContext) {
325 mContext = newContext;
  /libcore/luni/src/test/java/libcore/xml/
JaxenXPathTestSuite.java 175 Node newContext = (Node) xpath.evaluate(
178 xpath.evaluate(valueOfSelect, newContext, XPathConstants.STRING));
  /cts/tests/tests/view/src/android/view/cts/
LayoutInflaterTest.java 371 public MockLayoutInflater(LayoutInflater original, Context newContext) {
372 super(original, newContext);
382 public LayoutInflater cloneInContext(Context newContext) {
  /external/jmonkeyengine/engine/src/desktop/com/jme3/system/awt/
AwtPanelsContext.java 177 actualContext = JmeSystem.newContext(settings, Type.OffscreenSurface);
  /external/icu4c/common/unicode/
ucnv.h     [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/app/
Application.java 387 context = JmeSystem.newContext(settings, contextType);
418 context = JmeSystem.newContext(settings, JmeContext.Type.Canvas);
  /external/webkit/Source/JavaScriptCore/icu/unicode/
ucnv.h 874 * @param newContext the new toUnicode callback context pointer. This can be NULL.
    [all...]
  /external/webkit/Source/JavaScriptGlue/icu/unicode/
ucnv.h 874 * @param newContext the new toUnicode callback context pointer. This can be NULL.
    [all...]
  /external/webkit/Source/WebCore/icu/unicode/
ucnv.h 874 * @param newContext the new toUnicode callback context pointer. This can be NULL.
    [all...]
  /frameworks/base/core/java/android/view/
LayoutInflater.java 197 * @param newContext The new Context to use.
199 protected LayoutInflater(LayoutInflater original, Context newContext) {
200 mContext = newContext;
225 * @param newContext The new Context to associate with the new LayoutInflater.
231 public abstract LayoutInflater cloneInContext(Context newContext);
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
NFAToDFAConverter.java 677 NFAContext newContext = new NFAContext(context, p);
682 closure(ruleTarget, alt, newContext, semanticContext, d, collectPredicates);
690 NFAContext newContext = context.parent; // "pop" invoking state
691 closure(continueState, alt, newContext, semanticContext, d, collectPredicates);
    [all...]

Completed in 1918 milliseconds

1 2