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

/external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
H A DExecutionContextSelector.js53 var newContext = /** @type {?WebInspector.ExecutionContext} */ (event.data);
54 if (newContext)
55 WebInspector.context.setFlavor(WebInspector.Target, newContext.target());
73 var newContext = executionContexts[0];
76 newContext = executionContexts[i];
78 WebInspector.context.setFlavor(WebInspector.ExecutionContext, newContext);
104 var newContext = null;
108 newContext = executionContexts[0];
112 WebInspector.context.setFlavor(WebInspector.ExecutionContext, newContext);
/external/chromium_org/third_party/WebKit/Source/platform/mac/
H A DLocalCurrentGraphicsContext.mm46 NSGraphicsContext* newContext = [NSGraphicsContext graphicsContextWithGraphicsPort:cgContext flipped:YES];
47 [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/chromium_org/third_party/WebKit/Source/core/rendering/
H A DPaintInfo.h53 PaintInfo(GraphicsContext* newContext, const IntRect& newRect, PaintPhase newPhase, PaintBehavior newPaintBehavior, argument
56 : context(newContext)
/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/chromium_org/third_party/icu/source/test/cintltst/
H A Dtracetst.c225 const void *newContext = (const char *)originalTContext + 1; local
231 utrace_setFunctions(newContext, testTraceEntry, testTraceExit, testTraceData);
236 TEST_ASSERT(context == newContext);
/external/icu/icu4c/source/test/cintltst/
H A Dtracetst.c225 const void *newContext = (const char *)originalTContext + 1; local
231 utrace_setFunctions(newContext, testTraceEntry, testTraceExit, testTraceData);
236 TEST_ASSERT(context == newContext);
/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DTextBreakIteratorICU.cpp300 TextContext newContext = textGetContext(text, nativeIndex, forward); local
301 ASSERT(newContext != NoContext);
302 if (newContext == currentContext) {
308 } else if (newContext == PrimaryContext) {
311 ASSERT(newContext == PriorContext);
423 TextContext newContext = textGetContext(text, nativeIndex, forward); local
424 ASSERT(newContext != NoContext);
425 if (newContext == currentContext) {
431 } else if (newContext == PrimaryContext) {
434 ASSERT(newContext
[all...]
/external/replicaisland/src/com/replica/replicaisland/
H A DGameRenderer.java324 public void setContext(Context newContext) { argument
325 mContext = newContext;
/external/chromium_org/third_party/icu/source/common/unicode/
H A Ducnv.h1038 * @param newContext the new toUnicode callback context pointer. This can be NULL.
1048 const void* newContext,
1061 * @param newContext the new fromUnicode callback context pointer. This can be NULL.
1071 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/icu/icu4c/source/common/unicode/
H A Ducnv.h1038 * @param newContext the new toUnicode callback context pointer. This can be NULL.
1048 const void* newContext,
1061 * @param newContext the new fromUnicode callback context pointer. This can be NULL.
1071 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/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/chromium_org/third_party/icu/source/common/
H A Ducnv.c735 const void* newContext,
745 converter->toUContext = newContext;
751 const void* newContext,
761 converter->fromUContext = newContext;
733 ucnv_setToUCallBack(UConverter * converter, UConverterToUCallback newAction, const void* newContext, UConverterToUCallback *oldAction, const void** oldContext, UErrorCode * err) argument
749 ucnv_setFromUCallBack(UConverter * converter, UConverterFromUCallback newAction, const void* newContext, UConverterFromUCallback *oldAction, const void** oldContext, UErrorCode * err) argument
H A Dubidi.c2867 const void *newContext, UBiDiClassCallback **oldFn,
2884 pBiDi->coClassCallback = newContext;
2866 ubidi_setClassCallback(UBiDi *pBiDi, UBiDiClassCallback *newFn, const void *newContext, UBiDiClassCallback **oldFn, const void **oldContext, UErrorCode *pErrorCode) argument
/external/icu/icu4c/source/common/
H A Ducnv.c735 const void* newContext,
745 converter->toUContext = newContext;
751 const void* newContext,
761 converter->fromUContext = newContext;
733 ucnv_setToUCallBack(UConverter * converter, UConverterToUCallback newAction, const void* newContext, UConverterToUCallback *oldAction, const void** oldContext, UErrorCode * err) argument
749 ucnv_setFromUCallBack(UConverter * converter, UConverterFromUCallback newAction, const void* newContext, UConverterFromUCallback *oldAction, const void** oldContext, UErrorCode * err) argument
H A Dubidi.c2965 const void *newContext, UBiDiClassCallback **oldFn,
2982 pBiDi->coClassCallback = newContext;
2964 ubidi_setClassCallback(UBiDi *pBiDi, UBiDiClassCallback *newFn, const void *newContext, UBiDiClassCallback **oldFn, const void **oldContext, UErrorCode *pErrorCode) argument
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/console/
H A DConsoleView.js382 var newContext = this._currentExecutionContext();
383 WebInspector.context.setFlavor(WebInspector.ExecutionContext, newContext);
/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/ ...
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...
/external/chromium_org/third_party/libaddressinput/src/java/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF AndroidManifest.xml android/ android/Manifest$permission.class ...
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...

Completed in 554 milliseconds