HomeSort by relevance Sort by last modified time
    Searched refs:context (Results 51 - 75 of 6481) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/platform/graphics/chromium/cc/
CCPluginLayerImpl.cpp 54 GraphicsContext3D* context = layerRenderer()->context(); local
55 GLC(context, context->activeTexture(GraphicsContext3D::TEXTURE0));
56 GLC(context, context->bindTexture(GraphicsContext3D::TEXTURE_2D, m_textureId));
60 GLC(context, context->texParameteri(GraphicsContext3D::TEXTURE_2D, GraphicsContext3D::TEXTURE_MIN_FILTER, GraphicsContext3D::LINEAR));
61 GLC(context, context->texParameteri(GraphicsContext3D::TEXTURE_2D, GraphicsContext3D::TEXTURE_MAG_FILTER, GraphicsConte (…)
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/util/
PhoneCapabilityTester.java 19 import android.content.Context;
46 public static boolean isIntentRegistered(Context context, Intent intent) {
47 final PackageManager packageManager = context.getPackageManager();
56 public static boolean isPhone(Context context) {
57 if (!sIsInitialized) initialize(context);
62 private static void initialize(Context context) {
63 final TelephonyManager telephonyManager = new TelephonyManager(context);
    [all...]
  /external/webkit/Source/WebCore/page/
PositionCallback.h 38 PositionCallback(ScriptExecutionContext* context) : ActiveDOMObject(context, this) { }
PositionErrorCallback.h 38 PositionErrorCallback(ScriptExecutionContext* context) : ActiveDOMObject(context, this) { }
  /external/webkit/Source/WebCore/webaudio/
HighPass2FilterNode.cpp 33 HighPass2FilterNode::HighPass2FilterNode(AudioContext* context, double sampleRate)
34 : AudioBasicProcessorNode(context, sampleRate)
LowPass2FilterNode.cpp 33 LowPass2FilterNode::LowPass2FilterNode(AudioContext* context, double sampleRate)
34 : AudioBasicProcessorNode(context, sampleRate)
  /external/webkit/Source/WebKit/chromium/src/
ChromiumThreading.cpp 41 void ChromiumThreading::callOnMainThread(void (*func)(void*), void* context)
43 WebKit::webKitClient()->callOnMainThread(func, context);
  /frameworks/base/core/java/android/view/
OrientationListener.java 19 import android.content.Context;
43 * @param context for the OrientationListener.
45 public OrientationListener(Context context) {
46 mOrientationEventLis = new OrientationEventListenerInternal(context);
52 * @param context for the OrientationListener.
58 public OrientationListener(Context context, int rate) {
59 mOrientationEventLis = new OrientationEventListenerInternal(context, rate);
63 OrientationEventListenerInternal(Context context)
    [all...]
  /frameworks/base/core/java/android/webkit/
PluginStub.java 18 import android.content.Context;
33 * @param context The current application's Context.
36 public abstract View getEmbeddedView(int NPP, Context context);
43 * @param context The current application's Context.
46 public abstract View getFullScreenView(int NPP, Context context);
  /frameworks/support/v4/honeycomb/android/support/v4/content/
ContextCompatHoneycomb.java 19 import android.content.Context;
23 * Implementation of context compatibility that can call Honeycomb APIs.
27 static void startActivities(Context context, Intent[] intents) {
28 context.startActivities(intents);
  /packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
PrivilegedCellBroadcastReceiver.java 19 import android.content.Context;
29 public void onReceive(Context context, Intent intent) {
32 onReceiveWithPrivilege(context, intent, true);
  /external/v8/test/cctest/
test-decls.cc 44 // A DeclarationContext holds a reference to a v8::Context and keeps
93 Persistent<Context> context_;
120 context_ = Context::New(0, function->InstanceTemplate(), Local<Value>());
158 DeclarationContext* context = GetInstance(info); local
159 context->get_count_++;
160 return context->Get(key);
167 DeclarationContext* context = GetInstance(info); local
168 context->set_count_++;
169 return context->Set(key, value);
175 DeclarationContext* context = GetInstance(info) local
207 { DeclarationContext context; local
215 { DeclarationContext context; local
223 { DeclarationContext context; local
231 { DeclarationContext context; local
239 { DeclarationContext context; local
262 { PresentPropertyContext context; local
270 { PresentPropertyContext context; local
278 { PresentPropertyContext context; local
286 { PresentPropertyContext context; local
294 { PresentPropertyContext context; local
316 { AbsentPropertyContext context; local
324 { AbsentPropertyContext context; local
332 { AbsentPropertyContext context; local
340 { AbsentPropertyContext context; local
348 { AbsentPropertyContext context; local
356 { AbsentPropertyContext context; local
406 { AppearingPropertyContext context; local
414 { AppearingPropertyContext context; local
422 { AppearingPropertyContext context; local
430 { AppearingPropertyContext context; local
438 { AppearingPropertyContext context; local
498 { ReappearingPropertyContext context; local
528 { ExistsInPrototypeContext context; local
536 { ExistsInPrototypeContext context; local
544 { ExistsInPrototypeContext context; local
552 { ExistsInPrototypeContext context; local
560 { ExistsInPrototypeContext context; local
588 { AbsentInPrototypeContext context; local
    [all...]
  /cts/tests/tests/net/src/android/net/wifi/cts/
WifiFeature.java 19 import android.content.Context;
23 static boolean isWifiSupported(Context context) {
24 PackageManager packageManager = context.getPackageManager();
28 static boolean isP2pSupported(Context context) {
29 PackageManager packageManager = context.getPackageManager();
  /external/webkit/Source/WebKit/mac/Plugins/
WebNetscapeContainerCheckContextInfo.h 39 - (id)initWithCheckRequestID:(uint32_t)checkRequestID callbackFunc:(void (*)(NPP npp, uint32_t checkID, NPBool allowed, void* context))callbackFunc context:(void*)context;
42 - (void*)context;
  /frameworks/base/core/java/android/service/dreams/
Sandman.java 20 import android.content.Context;
54 public static boolean shouldStartDockApp(Context context, Intent intent) {
55 ComponentName name = intent.resolveActivity(context.getPackageManager());
62 public static void startDreamByUserRequest(Context context) {
63 startDream(context, false);
70 public static void startDreamWhenDockedIfAppropriate(Context context) {
71 if (!isScreenSaverEnabled(context)
    [all...]
  /packages/apps/Exchange/exchange2/src/com/android/exchange/
MailboxAlarmReceiver.java 21 import android.content.Context;
31 public void onReceive(Context context, Intent intent) {
35 context.startService(new Intent(context, ExchangeService.class));
37 ExchangeService.alert(context, mailboxId);
  /sdk/eclipse/plugins/com.android.ide.eclipse.traceview/src/com/android/ide/eclipse/traceview/
TraceviewPlugin.java 43 public void start(BundleContext context) throws Exception {
44 super.start(context);
53 public void stop(BundleContext context) throws Exception {
55 super.stop(context);
  /dalvik/dexgen/src/com/android/dexgen/util/
ExceptionWithContext.java 23 * Exception which carries around structured context.
27 /** {@code non-null;} human-oriented context of the exception */
28 private StringBuffer context; field in class:ExceptionWithContext
31 * Augments the given exception with the given context, and return the
37 * @param str {@code non-null;} context to add
83 String ctx = ((ExceptionWithContext) cause).context.toString();
84 context = new StringBuffer(ctx.length() + 200);
85 context.append(ctx);
87 context = new StringBuffer(200);
95 out.println(context);
    [all...]
  /dalvik/dx/src/com/android/dx/util/
ExceptionWithContext.java 23 * Exception which carries around structured context.
27 /** {@code non-null;} human-oriented context of the exception */
28 private StringBuffer context; field in class:ExceptionWithContext
31 * Augments the given exception with the given context, and return the
37 * @param str {@code non-null;} context to add
83 String ctx = ((ExceptionWithContext) cause).context.toString();
84 context = new StringBuffer(ctx.length() + 200);
85 context.append(ctx);
87 context = new StringBuffer(200);
95 out.println(context);
    [all...]
  /development/samples/BasicGLSurfaceView/src/com/example/android/basicglsurfaceview/
BasicGLSurfaceView.java 19 import android.content.Context;
25 public BasicGLSurfaceView(Context context) {
26 super(context);
28 setRenderer(new GLES20TriangleRenderer(context));
  /external/dexmaker/src/dx/java/com/android/dx/util/
ExceptionWithContext.java 23 * Exception which carries around structured context.
27 /** {@code non-null;} human-oriented context of the exception */
28 private StringBuffer context; field in class:ExceptionWithContext
31 * Augments the given exception with the given context, and return the
37 * @param str {@code non-null;} context to add
83 String ctx = ((ExceptionWithContext) cause).context.toString();
84 context = new StringBuffer(ctx.length() + 200);
85 context.append(ctx);
87 context = new StringBuffer(200);
95 out.println(context);
    [all...]
  /external/libselinux/src/
fsetfilecon.c 10 int fsetfilecon(int fd, const security_context_t context)
12 return fsetxattr(fd, XATTR_NAME_SELINUX, context, strlen(context) + 1,
lsetfilecon.c 10 int lsetfilecon(const char *path, const security_context_t context)
12 return lsetxattr(path, XATTR_NAME_SELINUX, context, strlen(context) + 1,
setfilecon.c 10 int setfilecon(const char *path, const security_context_t context)
12 return setxattr(path, XATTR_NAME_SELINUX, context, strlen(context) + 1,
  /external/libvpx/libvpx/
md5_utils.h 37 void MD5Init(struct MD5Context *context);
38 void MD5Update(struct MD5Context *context, md5byte const *buf, unsigned len);
39 void MD5Final(unsigned char digest[16], struct MD5Context *context);

Completed in 4329 milliseconds

1 23 4 5 6 7 8 91011>>