HomeSort by relevance Sort by last modified time
    Searched refs:newContext (Results 1 - 25 of 29) 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/webkit/Source/WebCore/rendering/
PaintInfo.h 52 PaintInfo(GraphicsContext* newContext, const IntRect& newRect, PaintPhase newPhase, bool newForceBlackText,
55 : context(newContext)
  /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());
  /libcore/luni/src/main/java/javax/security/auth/
Subject.java 175 AccessControlContext newContext;
192 newContext = (AccessControlContext) AccessController.doPrivileged(dccAction);
194 return AccessController.doPrivileged(action, newContext);
249 AccessControlContext newContext;
266 newContext = AccessController.doPrivileged(dccAction);
268 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/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));
  /external/icu4c/common/unicode/
ucnv.h     [all...]
ubidi.h     [all...]
  /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...]
  /cts/tests/tests/view/src/android/view/cts/
LayoutInflaterTest.java 496 public MockLayoutInflater(LayoutInflater original, Context newContext) {
497 super(original, newContext);
507 public LayoutInflater cloneInContext(Context newContext) {
  /frameworks/base/core/java/android/view/
LayoutInflater.java 196 * @param newContext The new Context to use.
198 protected LayoutInflater(LayoutInflater original, Context newContext) {
199 mContext = newContext;
224 * @param newContext The new Context to associate with the new LayoutInflater.
230 public abstract LayoutInflater cloneInContext(Context newContext);
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
WebViewImpl.cpp     [all...]
  /external/webkit/Source/WebCore/platform/graphics/mac/
MediaPlayerPrivateQTKit.mm     [all...]
  /external/icu4c/common/
ucnv.c 725 const void* newContext,
735 converter->toUContext = newContext;
741 const void* newContext,
751 converter->fromUContext = newContext;
    [all...]
ubidi.c     [all...]
  /development/tools/glesv2debugger/src/com/android/glesv2debugger/
SampleView.java 790 void changeContext(final DebugContext newContext) {
794 current = newContext;
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gldebugger/
GLFramesView.java 717 void changeContext(final DebugContext newContext) {
720 current = newContext;
  /prebuilt/common/groovy/
groovy-all-1.7.0.jar 

Completed in 308 milliseconds

1 2