HomeSort by relevance Sort by last modified time
    Searched full:newcontext (Results 1 - 25 of 62) sorted by null

1 2 3

  /external/webkit/Source/WebCore/manual-tests/wml/
card-newcontext-attr.wml 5 <p>Test for newcontext attribute of card element</p>
6 <p>This is the first card, Click "Go" to enter card two.<br/>Because newcontext of card two is true, the history state will be clean, and the variable "$var1" won't be replaced</p>
14 <card id="secondcard" title="$var1" newcontext="true">
16 <p>Because newcontext of this card is true, the history state will be clean, and the variable "$var1" won't be replaced</p>
StartTests.wml 10 <a href="card-newcontext-attr.wml">card-newcontext-attr.wml</a><br/>
  /external/webkit/Source/WebCore/wml/
WMLAttributeNames.in 16 newcontext
WMLGoElement.cpp 119 // FIXME: 'newcontext' handling not implemented for external cards
  /system/core/toolbox/
restorecon.c 26 char *oldcontext, *newcontext; local
33 if (selabel_lookup(sehandle, &newcontext, pathname, sb->st_mode) < 0) {
38 if (strcmp(newcontext, "<<none>>") &&
39 strcmp(oldcontext, newcontext)) {
41 printf("Relabeling %s from %s to %s.\n", pathname, oldcontext, newcontext);
43 if (lsetfilecon(pathname, newcontext) < 0) {
45 pathname, newcontext, strerror(errno));
51 freecon(newcontext);
  /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);
  /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/platform/mac/
LocalCurrentGraphicsContext.mm 39 NSGraphicsContext* newContext = [NSGraphicsContext graphicsContextWithGraphicsPort:graphicsContext->platformContext() flipped:YES];
40 [NSGraphicsContext setCurrentContext:newContext];
  /external/webkit/Source/WebCore/rendering/
PaintInfo.h 52 PaintInfo(GraphicsContext* newContext, const IntRect& newRect, PaintPhase newPhase, bool newForceBlackText,
55 : context(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/libsepol/src/
services.c 577 newcontext)
587 context_to_string(NULL, policydb, newcontext, &n, &nlen);
603 context_struct_t *scontext = 0, *tcontext = 0, newcontext; local
623 context_init(&newcontext);
630 newcontext.user = scontext->user;
634 newcontext.user = tcontext->user;
642 newcontext.role = scontext->role;
643 newcontext.type = scontext->type;
647 newcontext.role = OBJECT_R_VAL;
649 newcontext.type = tcontext->type
    [all...]
mls.h 62 uint32_t specified, context_struct_t * newcontext);
mls.c 609 uint32_t specified, context_struct_t * newcontext)
623 return mls_range_set(newcontext,
631 return mls_copy_context(newcontext, scontext);
634 return mls_scopy_context(newcontext, scontext);
638 if (newcontext->type != tcontext->type) {
640 return mls_scopy_context(newcontext, scontext);
643 return mls_copy_context(newcontext, tcontext);
  /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);
  /external/libselinux/src/
android.c 521 char *oldcontext, *newcontext; local
526 if (selabel_lookup(sehandle, &newcontext, pathname, sb.st_mode) < 0)
529 if (strcmp(newcontext, "<<none>>") && strcmp(oldcontext, newcontext))
530 if (lsetfilecon(pathname, newcontext) < 0)
537 if (newcontext)
538 freecon(newcontext);
  /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/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/jmonkeyengine/engine/src/desktop/com/jme3/system/awt/
AwtPanelsContext.java 177 actualContext = JmeSystem.newContext(settings, Type.OffscreenSurface);
  /libcore/luni/src/test/java/libcore/xml/
JaxenXPathTestSuite.java 175 Node newContext = (Node) xpath.evaluate(
178 xpath.evaluate(valueOfSelect, newContext, XPathConstants.STRING));
  /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/replicaisland/src/com/replica/replicaisland/
GameRenderer.java 324 public void setContext(Context newContext) {
325 mContext = newContext;

Completed in 1479 milliseconds

1 2 3