Searched refs:newContext (Results 1 - 24 of 24) sorted by relevance

/external/webkit/Source/WebCore/platform/mac/
H A DLocalCurrentGraphicsContext.mm39 NSGraphicsContext* newContext = [NSGraphicsContext graphicsContextWithGraphicsPort:graphicsContext->platformContext() flipped:YES];
40 [NSGraphicsContext setCurrentContext:newContext];
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowLayoutInflater.java77 @Override public LayoutInflater cloneInContext(Context newContext) { argument
78 return bind(new MyLayoutInflater(newContext), newContext);
/external/webkit/Source/WebCore/rendering/
H A DPaintInfo.h52 PaintInfo(GraphicsContext* newContext, const IntRect& newRect, PaintPhase newPhase, bool newForceBlackText, argument
55 : context(newContext)
/external/jmonkeyengine/engine/src/core/com/jme3/system/
H A DJmeSystem.java116 public static JmeContext newContext(AppSettings settings, JmeContext.Type contextType) { method in class:JmeSystem
118 return systemDelegate.newContext(settings, contextType);
H A DJmeSystemDelegate.java144 public abstract JmeContext newContext(AppSettings settings, JmeContext.Type contextType); method in class:JmeSystemDelegate
/external/smack/src/org/apache/harmony/javax/security/auth/
H A DSubject.java184 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);
/external/icu4c/test/cintltst/
H A Dtracetst.c224 const void *newContext = (const char *)originalTContext + 1; local
230 utrace_setFunctions(newContext, testTraceEntry, testTraceExit, testTraceData);
235 TEST_ASSERT(context == newContext);
/external/jmonkeyengine/engine/src/android/com/jme3/system/android/
H A DJmeAndroidSystem.java45 public JmeContext newContext(AppSettings settings, Type contextType) { method in class:JmeAndroidSystem
/external/replicaisland/src/com/replica/replicaisland/
H A DGameRenderer.java324 public void setContext(Context newContext) { argument
325 mContext = newContext;
/external/jmonkeyengine/engine/src/desktop/com/jme3/system/awt/
H A DAwtPanelsContext.java177 actualContext = JmeSystem.newContext(settings, Type.OffscreenSurface);
/external/icu4c/common/unicode/
H A Ducnv.h1032 * @param newContext the new toUnicode callback context pointer. This can be NULL.
1042 const void* newContext,
1055 * @param newContext the new fromUnicode callback context pointer. This can be NULL.
1065 const void *newContext,
H A Dubidi.h2027 * @param newContext is the new callback context pointer. This can be NULL.
2042 const void *newContext, UBiDiClassCallback **oldFn,
/external/jmonkeyengine/engine/src/core/com/jme3/app/
H A DApplication.java387 context = JmeSystem.newContext(settings, contextType);
418 context = JmeSystem.newContext(settings, JmeContext.Type.Canvas);
/external/webkit/Source/JavaScriptCore/icu/unicode/
H A Ducnv.h874 * @param newContext the new toUnicode callback context pointer. This can be NULL.
884 const void* newContext,
897 * @param newContext the new fromUnicode callback context pointer. This can be NULL.
907 const void *newContext,
/external/webkit/Source/JavaScriptGlue/icu/unicode/
H A Ducnv.h874 * @param newContext the new toUnicode callback context pointer. This can be NULL.
884 const void* newContext,
897 * @param newContext the new fromUnicode callback context pointer. This can be NULL.
907 const void *newContext,
/external/webkit/Source/WebCore/icu/unicode/
H A Ducnv.h874 * @param newContext the new toUnicode callback context pointer. This can be NULL.
884 const void* newContext,
897 * @param newContext the new fromUnicode callback context pointer. This can be NULL.
907 const void *newContext,
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
H A DNFAToDFAConverter.java677 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);
/external/jmonkeyengine/engine/src/desktop/com/jme3/system/
H A DJmeDesktopSystem.java193 public JmeContext newContext(AppSettings settings, Type contextType) { method in class:JmeDesktopSystem
/external/webkit/Source/WebKit/chromium/src/
H A DWebViewImpl.cpp2432 RefPtr<GraphicsContext3D> newContext = m_temporaryOnscreenGraphicsContext3D.get(); local
2433 WebGraphicsContext3D* webContext = GraphicsContext3DInternal::extractWebGraphicsContext3D(newContext.get());
2434 if (!newContext || !webContext || webContext->isContextLost())
2435 newContext = GraphicsContext3D::create(
2438 RefPtr<LayerRendererChromium> layerRenderer = LayerRendererChromium::create(newContext, WebViewImplContentPainter::create(this));
2444 // FIXME: In MacOS newContext->reshape method needs to be called to
2449 newContext->reshape(std::max(1, m_size.width), std::max(1, m_size.height));
/external/webkit/Source/WebCore/platform/graphics/mac/
H A DMediaPlayerPrivateQTKit.mm1331 NSGraphicsContext* newContext = [NSGraphicsContext graphicsContextWithGraphicsPort:context->platformContext() flipped:NO];
1336 [NSGraphicsContext setCurrentContext:newContext];
1361 [view displayRectIgnoringOpacity:paintRect inContext:newContext];
/external/icu4c/common/
H A Ducnv.c727 const void* newContext,
737 converter->toUContext = newContext;
743 const void* newContext,
753 converter->fromUContext = newContext;
725 ucnv_setToUCallBack(UConverter * converter, UConverterToUCallback newAction, const void* newContext, UConverterToUCallback *oldAction, const void** oldContext, UErrorCode * err) argument
741 ucnv_setFromUCallBack(UConverter * converter, UConverterFromUCallback newAction, const void* newContext, UConverterFromUCallback *oldAction, const void** oldContext, UErrorCode * err) argument
H A Dubidi.c2323 const void *newContext, UBiDiClassCallback **oldFn,
2340 pBiDi->coClassCallback = newContext;
2322 ubidi_setClassCallback(UBiDi *pBiDi, UBiDiClassCallback *newFn, const void *newContext, UBiDiClassCallback **oldFn, const void **oldContext, UErrorCode *pErrorCode) argument
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.help_3.5.0.v20100524.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...

Completed in 1807 milliseconds