/frameworks/base/core/java/com/android/internal/policy/ |
PhoneLayoutInflater.java | 47 protected PhoneLayoutInflater(LayoutInflater original, Context newContext) { 48 super(original, newContext); 71 public LayoutInflater cloneInContext(Context newContext) { 72 return new PhoneLayoutInflater(this, newContext);
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowLayoutInflater.java | 77 @Override public LayoutInflater cloneInContext(Context newContext) { 78 return bind(new MyLayoutInflater(newContext), newContext);
|
/prebuilts/go/darwin-x86/doc/progs/ |
error4.go | 26 c := appengine.NewContext(r) 35 c := appengine.NewContext(r) 55 func (ap) NewContext(*http.Request) *ctx { return nil }
|
error2.go | 19 c := appengine.NewContext(r) 35 func (ap) NewContext(*http.Request) *ctx { return nil }
|
error3.go | 21 c := appengine.NewContext(r) 44 func (ap) NewContext(*http.Request) *ctx { return nil }
|
/prebuilts/go/linux-x86/doc/progs/ |
error4.go | 26 c := appengine.NewContext(r) 35 c := appengine.NewContext(r) 55 func (ap) NewContext(*http.Request) *ctx { return nil }
|
error2.go | 19 c := appengine.NewContext(r) 35 func (ap) NewContext(*http.Request) *ctx { return nil }
|
error3.go | 21 c := appengine.NewContext(r) 44 func (ap) NewContext(*http.Request) *ctx { return nil }
|
/frameworks/base/core/java/android/preference/ |
PreferenceInflater.java | 50 PreferenceInflater(GenericInflater<Preference, PreferenceGroup> original, PreferenceManager preferenceManager, Context newContext) { 51 super(original, newContext); 56 public GenericInflater<Preference, PreferenceGroup> cloneInContext(Context newContext) { 57 return new PreferenceInflater(this, mPreferenceManager, newContext);
|
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/items/ |
ItemInflater.java | 43 public ItemInflater cloneInContext(Context newContext) { 44 return new ItemInflater(newContext);
|
/build/soong/ |
register.go | 57 func NewContext() *blueprint.Context { 58 ctx := blueprint.NewContext()
|
/frameworks/base/tools/layoutlib/bridge/src/android/view/ |
BridgeInflater.java | 77 protected BridgeInflater(LayoutInflater original, Context newContext) { 78 super(original, newContext); 79 newContext = getBaseContext(newContext); 80 if (newContext instanceof BridgeContext) { 81 mLayoutlibCallback = ((BridgeContext) newContext).getLayoutlibCallback(); 316 public LayoutInflater cloneInContext(Context newContext) { 317 return new BridgeInflater(this, newContext);
|
/build/blueprint/bootstrap/minibp/ |
main.go | 47 ctx := blueprint.NewContext()
|
/build/soong/cmd/soong_build/ |
main.go | 36 ctx := soong.NewContext()
|
/prebuilts/go/darwin-x86/src/cmd/go/ |
context.go | 24 func newContext(c *build.Context) *Context {
|
/prebuilts/go/linux-x86/src/cmd/go/ |
context.go | 24 func newContext(c *build.Context) *Context {
|
/build/blueprint/ |
context_test.go | 71 ctx := NewContext() 111 ctx := NewContext()
|
/external/llvm/bindings/go/llvm/ |
string_test.go | 21 ctx := NewContext()
|
/external/mesa3d/src/glx/apple/ |
apple_glx_pbuffer.c | 203 CGLContextObj newcontext; local 220 err = apple_cgl.create_context(pfobj, NULL, &newcontext); 233 err = apple_cgl.set_current_context(newcontext); 245 apple_cgl.destroy_context(newcontext);
|
/external/pdfium/fpdfsdk/src/javascript/ |
JS_Runtime.h | 39 IJS_Context* NewContext() override;
|
/external/selinux/libsepol/src/ |
mls.h | 62 uint32_t specified, context_struct_t * newcontext);
|
/packages/services/Car/car-lib/src/android/car/ |
CarAppContextManager.java | 214 int newContext; 220 newContext = activeContexts & mContextFilter; 222 listener.onAppContextChange(newContext);
|
/external/pdfium/fpdfsdk/src/ |
fsdk_actionhandler.cpp | 152 IJS_Context* pContext = pRuntime->NewContext(); 280 IJS_Context* pContext = pRuntime->NewContext(); 322 IJS_Context* pContext = pRuntime->NewContext(); 481 IJS_Context* pContext = pRuntime->NewContext(); 534 IJS_Context* pContext = pRuntime->NewContext(); 553 IJS_Context* pContext = pRuntime->NewContext();
|
/external/v8/test/cctest/ |
test-log-stack-tracer.cc | 156 v8::Local<v8::Context> context = CcTest::NewContext(TRACE_EXTENSION); 205 v8::Local<v8::Context> context = CcTest::NewContext(TRACE_EXTENSION); 275 v8::Local<v8::Context> context = CcTest::NewContext(TRACE_EXTENSION); 284 v8::Local<v8::Context> context = CcTest::NewContext(TRACE_EXTENSION);
|
/frameworks/support/v4/java/android/support/v4/view/ |
AsyncLayoutInflater.java | 133 public LayoutInflater cloneInContext(Context newContext) { 134 return new BasicInflater(newContext);
|