HomeSort by relevance Sort by last modified time
    Searched full:context (Results 126 - 150 of 12809) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/v8/src/
contexts.cc 37 Context* Context::declaration_context() {
38 Context* current = this;
47 JSBuiltinsObject* Context::builtins() {
58 Context* Context::global_context() {
59 // Fast case: the global object for this context has been set. In
61 // context.
67 // have to search the context chain to find the global context
256 Object* context = GetHeap()->global_contexts_list(); local
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/timer/
TimerReceiver.java 24 import android.content.Context;
48 public void onReceive(final Context context, final Intent intent) {
56 SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
67 showInUseNotification(context);
70 cancelInUseNotification(context);
94 stopRingtoneIfNoTimesup(context);
96 Intent activityIntent = new Intent(context, DeskClock.class);
99 context.startActivity(activityIntent);
116 si.setClass(context, TimerRingService.class)
    [all...]
  /external/skia/src/gpu/
GrRenderTarget.cpp 23 // go through context so that all necessary flushing occurs
24 GrContext* context = this->getContext(); local
25 if (NULL == context) {
28 return context->readRenderTargetPixels(this,
39 // go through context so that all necessary flushing occurs
40 GrContext* context = this->getContext(); local
41 if (NULL == context) {
44 context->writeRenderTargetPixels(this,
51 // go through context so that all necessary flushing occurs
52 GrContext* context = this->getContext() local
105 GrContext* context = this->getContext(); local
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
main.cpp 40 current->context = NULL;
76 void makeCurrent(Context *context, egl::Display *display, egl::Surface *surface)
80 current->context = context;
83 if (context && display && surface)
85 context->makeCurrent(display, surface);
89 Context *getContext()
93 return current->context;
114 gl::Context *context = glGetCurrentContext() local
    [all...]
main.h 19 #include "libGLESv2/Context.h"
25 Context *context; member in struct:gl::Current
29 void makeCurrent(Context *context, egl::Display *display, egl::Surface *surface);
31 Context *getContext();
  /frameworks/base/tools/layoutlib/bridge/src/com/google/android/maps/
MapView.java 21 import android.content.Context;
37 * Construct a new WebView with a Context object.
38 * @param context A Context object used to access application assets.
40 public MapView(Context context) {
41 this(context, null);
46 * @param context A Context object used to access application assets.
49 public MapView(Context context, AttributeSet attrs)
    [all...]
  /packages/apps/Browser/src/com/android/browser/
OpenDownloadReceiver.java 22 import android.content.Context;
42 public void onReceive(final Context context, Intent intent) {
45 openDownloadsPage(context);
51 openDownloadsPage(context);
59 onReceiveAsync(context, id);
66 private void onReceiveAsync(Context context, long id) {
67 DownloadManager manager = (DownloadManager) context.getSystemService(
68 Context.DOWNLOAD_SERVICE)
    [all...]
PageProgressView.java 19 import android.content.Context;
45 * @param context
49 public PageProgressView(Context context, AttributeSet attrs, int defStyle) {
50 super(context, attrs, defStyle);
51 init(context);
55 * @param context
58 public PageProgressView(Context context, AttributeSet attrs) {
59 super(context, attrs)
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/nls/
MockListener.java 20 import android.content.Context;
74 public void onReceive(Context context, Intent intent) {
100 context.getApplicationInfo().packageName,
164 public static void resetListenerData(Context context) {
165 sendCommand(context, SERVICE_RESET, null, 0);
168 public static void probeListenerStatus(Context context, IntegerResultCatcher catcher) {
169 requestIntegerResult(context, SERVICE_CHECK, catcher)
    [all...]
  /external/clang/include/clang/AST/
ASTImporter.h 11 // context into another context.
36 /// \brief Imports selected nodes from one AST context into another context,
52 /// \brief Whether the last diagnostic came from the "from" context.
55 /// \brief Mapping from the already-imported types in the "from" context
56 /// to the corresponding types in the "to" context.
60 /// context to the corresponding declarations in the "to" context.
64 /// context to the corresponding statements in the "to" context
    [all...]
  /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...]
  /frameworks/base/core/java/android/text/style/
ImageSpan.java 19 import android.content.Context;
33 private Context mContext;
37 * @deprecated Use {@link #ImageSpan(Context, Bitmap)} instead.
45 * @deprecated Use {@link #ImageSpan(Context, Bitmap, int) instead.
52 public ImageSpan(Context context, Bitmap b) {
53 this(context, b, ALIGN_BOTTOM);
60 public ImageSpan(Context context, Bitmap b, int verticalAlignment) {
62 mContext = context;
    [all...]
  /frameworks/base/media/mca/effect/java/android/media/effect/
EffectContext.java 30 * context.</p>
32 * <p>Every EffectContext is bound to one GL context. The application is responsible for creating
33 * this EGL context, and making it current before applying any effect. If your EGL context is
34 * destroyed, the EffectContext becomes invalid and any effects bound to this context can no longer
35 * be used. If you switch to another EGL context, you must create a new EffectContext. Each Effect
36 * is bound to a single EffectContext, and can only be executed in that context.</p>
52 * Creates a context within the current GL context.
54 * <p>Binds the EffectContext to the current OpenGL context. All subsequent calls to th
    [all...]
  /frameworks/ml/bordeaux/service/src/android/bordeaux/services/
BordeauxManagerService.java 20 import android.content.Context;
55 static private synchronized void bindServices(Context context) {
57 context.bindService(new Intent(IBordeauxService.class.getName()),
58 mConnection, Context.BIND_AUTO_CREATE);
62 // Call the release, before the Context gets destroyed.
63 static public synchronized void release(Context context) {
65 context.unbindService(mConnection);
71 static public synchronized IBordeauxService getService(Context context)
    [all...]
  /frameworks/opt/mms/src/java/com/google/android/mms/util/
SqliteWrapper.java 23 import android.content.Context;
41 private static boolean isLowMemory(Context context) {
42 if (null == context) {
47 context.getSystemService(Context.ACTIVITY_SERVICE);
59 public static void checkSQLiteException(Context context, SQLiteException e) {
61 Toast.makeText(context, com.android.internal.R.string.low_memory,
68 public static Cursor query(Context context, ContentResolver resolver, Uri uri
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
MetadataFileUriGetter.java 19 import android.content.Context;
29 public static String getMetadataUri(final Context context) {
30 return context.getString(R.string.dictionary_pack_metadata_uri);
33 public static String getMetadataAdditionalId(final Context context) {
  /external/webkit/Source/WebCore/platform/gtk/
RenderThemeGtk3.cpp 87 GRefPtr<GtkStyleContext> context = adoptGRef(gtk_style_context_new()); local
88 gtk_style_context_set_path(context.get(), path);
91 result.first->second = context;
92 return context.get();
126 static void adjustRectForFocus(GtkStyleContext* context, IntRect& rect)
129 gtk_style_context_get_style(context,
137 GtkStyleContext* context = 0; local
143 context = getStyleContext(part == CheckboxPart ? GTK_TYPE_CHECK_BUTTON : GTK_TYPE_RADIO_BUTTON);
146 gtk_style_context_get_style(context, "indicator-spacing", &indicatorSpacing, NULL);
152 context = getStyleContext(part == SliderThumbHorizontalPart ? GTK_TYPE_HSCALE : GTK_TYPE_VSCALE)
200 GtkStyleContext* context = getStyleContext(widgetType); local
326 GtkStyleContext* context = getStyleContext(GTK_TYPE_BUTTON); local
559 GtkStyleContext* context = getStyleContext(GTK_TYPE_ENTRY); local
601 GtkStyleContext* context = getStyleContext(part == SliderThumbHorizontalPart ? GTK_TYPE_HSCALE : GTK_TYPE_VSCALE); local
636 GtkStyleContext* context = getStyleContext(part == SliderThumbHorizontalPart ? GTK_TYPE_HSCALE : GTK_TYPE_VSCALE); local
737 GtkStyleContext* context = getStyleContext(GTK_TYPE_SPIN_BUTTON); local
815 GtkStyleContext* context = getStyleContext(GTK_TYPE_SPIN_BUTTON); local
839 GtkStyleContext* context = getStyleContext(widgetType); local
    [all...]
  /development/samples/CrossCompatibility/src/com/example/android/touchexample/
TouchExampleView.java 18 import android.content.Context;
33 public TouchExampleView(Context context) {
34 this(context, null, 0);
37 public TouchExampleView(Context context, AttributeSet attrs) {
38 this(context, attrs, 0);
41 public TouchExampleView(Context context, AttributeSet attrs, int defStyle) {
42 super(context, attrs, defStyle)
    [all...]
  /external/icu4c/samples/layout/
clayout.c 27 struct Context
34 typedef struct Context Context;
51 void InitParagraph(HWND hwnd, Context *context)
55 if (context->paragraph != NULL) {
58 if (context->width > 0 && context->height > 0) {
59 pf_breakLines(context->paragraph, context->width, context->height)
121 Context *context; local
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowDateFormat.java 3 import android.content.Context;
13 public final static java.text.DateFormat getDateFormat(Context context) {
  /external/wpa_supplicant_8/src/crypto/
md5_i.h 18 void MD5Init(struct MD5Context *context);
19 void MD5Update(struct MD5Context *context, unsigned char const *buf,
21 void MD5Final(unsigned char digest[16], struct MD5Context *context);
  /frameworks/compile/libbcc/lib/Support/
sha1.h 19 void SHA1Init(SHA1_CTX* context);
20 void SHA1Update(SHA1_CTX* context, const unsigned char* data,
22 void SHA1Final(unsigned char digest[HASHSIZE], SHA1_CTX* context);
  /frameworks/rs/
rsProgramVertex.h 30 ProgramVertex(Context *,const char * shaderText, size_t shaderLength,
35 virtual void setup(Context *rsc, ProgramVertexState *state);
37 void setProjectionMatrix(Context *, const rsc_Matrix *) const;
38 void getProjectionMatrix(Context *, rsc_Matrix *) const;
39 void setModelviewMatrix(Context *, const rsc_Matrix *) const;
40 void setTextureMatrix(Context *, const rsc_Matrix *) const;
42 void transformToScreen(Context *, float *v4out, const float *v3in) const;
44 virtual void serialize(Context *rsc, OStream *stream) const;
46 static ProgramVertex *createFromStream(Context *rsc, IStream *stream);
54 void init(Context *rsc)
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/m4/
selinux-context-h.m4 8 # Provide <selinux/context.h>, if necessary.
12 AC_CHECK_HEADERS([selinux/context.h],
14 [SELINUX_CONTEXT_H=selinux/context.h])
  /packages/apps/Contacts/src/com/android/contacts/
ContactsSearchManager.java 33 * An extra that provides context for search UI and defines the scope for
41 public static void startSearch(Activity context, String initialQuery) {
42 context.startActivity(buildIntent(context, initialQuery, null));
45 public static void startSearchForResult(Activity context, String initialQuery,
47 context.startActivityForResult(
48 buildIntent(context, initialQuery, originalRequest), requestCode);
51 public static void startSearch(Activity context, String initialQuery,
53 context.startActivity(buildIntent(context, initialQuery, originalRequest))
    [all...]

Completed in 428 milliseconds

1 2 3 4 56 7 8 91011>>