HomeSort by relevance Sort by last modified time
    Searched refs:context (Results 101 - 125 of 3096) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium/third_party/icu/source/test/intltest/
ucdtest.h 11 U_CFUNC void U_CALLCONV unicodeDataLineFn(void *context,
16 derivedCorePropsLineFn(void *context,
35 friend void U_CALLCONV unicodeDataLineFn(void *context,
40 derivedCorePropsLineFn(void *context,
  /external/dbus/bus/
dir-watch-default.c 38 bus_watch_directory (const char *dir, BusContext *context)
  /external/icu4c/test/intltest/
ucdtest.h 11 U_CFUNC void U_CALLCONV unicodeDataLineFn(void *context,
16 derivedPropsLineFn(void *context,
41 friend void U_CALLCONV unicodeDataLineFn(void *context,
46 derivedPropsLineFn(void *context,
  /external/webkit/WebCore/bindings/js/
JSSVGLengthCustom.cpp 32 SVGElement* context = JSSVGContextCache::svgContextForDOMObject(const_cast<JSSVGLength*>(this)); local
35 return jsNumber(exec, podImp.value(context));
41 SVGElement* context = JSSVGContextCache::svgContextForDOMObject(this); local
44 podImp.convertToSpecifiedUnits(args.at(0).toInt32(exec), context);
  /external/webkit/WebCore/platform/graphics/chromium/
IconChromiumWin.cpp 62 void Icon::paint(GraphicsContext* context, const IntRect& rect)
64 if (context->paintingDisabled())
67 HDC hdc = context->platformContext()->canvas()->beginPlatformPaint();
69 context->platformContext()->canvas()->endPlatformPaint();
  /external/webkit/WebKitTools/DumpRenderTree/gtk/
EventSender.h 36 JSObjectRef makeEventSender(JSContextRef context);
  /frameworks/base/services/java/com/android/server/am/
FactoryErrorDialog.java 19 import android.content.Context;
24 public FactoryErrorDialog(Context context, CharSequence msg) {
25 super(context);
27 setTitle(context.getText(com.android.internal.R.string.factorytest_failed));
29 setButton(context.getText(com.android.internal.R.string.factorytest_reboot),
  /frameworks/base/test-runner/src/android/test/
TestCase.java 19 import android.content.Context;
40 public void setUp(Context context);
  /packages/apps/DeskClock/src/com/android/deskclock/
AlarmInitReceiver.java 19 import android.content.Context;
30 public void onReceive(Context context, Intent intent) {
36 Alarms.saveSnoozeAlert(context, -1, -1);
39 Alarms.disableExpiredAlarms(context);
40 Alarms.setNextAlert(context);
  /packages/apps/Email/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, SyncManager.class));
38 SyncManager.alert(context, mailboxId);
  /packages/apps/Mms/src/com/android/mms/util/
Recycler.java 26 import android.content.Context;
65 public static boolean checkForThreadsOverLimit(Context context) {
69 return smsRecycler.anyThreadOverLimit(context) || mmsRecycler.anyThreadOverLimit(context);
72 public void deleteOldMessages(Context context) {
76 if (!isAutoDeleteEnabled(context)) {
80 Cursor cursor = getAllThreads(context);
82 int limit = getMessageLimit(context);
    [all...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
KeyboardListPreferenceJAJP.java 20 import android.content.Context;
32 public KeyboardListPreferenceJAJP(Context context, AttributeSet attrs) {
33 super(context, attrs);
36 public KeyboardListPreferenceJAJP(Context context) {
37 this(context, null);
  /external/webkit/JavaScriptCore/wtf/
Threading.cpp 50 NewThreadContext* context = reinterpret_cast<NewThreadContext*>(contextData); local
55 MutexLocker locker(context->creationMutex);
58 initializeCurrentThreadInternal(context->name);
60 // Grab the info that we need out of the context, then deallocate it.
61 ThreadFunction entryPoint = context->entryPoint;
62 void* data = context->data;
63 delete context;
77 NewThreadContext* context = new NewThreadContext(entryPoint, data, name); local
80 MutexLocker locker(context->creationMutex);
82 return createThreadInternal(threadEntryPoint, context, name)
    [all...]
  /external/webkit/WebCore/svg/graphics/
SVGPaintServerSolid.cpp 63 bool SVGPaintServerSolid::setup(GraphicsContext*& context, const RenderObject* object, const RenderStyle* style, SVGPaintTargetType type, bool isPaintingText) const
69 context->setAlpha(style ? svgStyle->fillOpacity() : 1);
70 context->setFillColor(color().rgb(), colorSpace);
71 context->setFillRule(style ? svgStyle->fillRule() : RULE_NONZERO);
74 context->setTextDrawingMode(cTextFill);
78 context->setAlpha(style ? svgStyle->strokeOpacity() : 1);
79 context->setStrokeColor(color().rgb(), colorSpace);
82 applyStrokeStyleToContext(context, style, object);
85 context->setTextDrawingMode(cTextStroke);
  /frameworks/base/core/java/android/widget/
ResourceCursorTreeAdapter.java 19 import android.content.Context;
39 * @param context The context where the ListView associated with this
51 public ResourceCursorTreeAdapter(Context context, Cursor cursor, int collapsedGroupLayout,
53 super(cursor, context);
60 mInflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
66 * @param context The context where the ListView associated with thi
    [all...]
  /packages/apps/Mms/src/com/android/mms/transaction/
SimFullReceiver.java 27 import android.content.Context;
38 public void onReceive(Context context, Intent intent) {
39 if (Settings.Secure.getInt(context.getContentResolver(),
44 context.getSystemService(Context.NOTIFICATION_SERVICE);
46 Intent viewSimIntent = new Intent(context, ManageSimMessages.class);
50 context, 0, viewSimIntent, 0);
54 notification.tickerText = context.getString(R.string.sim_full_title);
58 context, context.getString(R.string.sim_full_title)
    [all...]
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/
SearchActivityView.java 20 import android.content.Context;
31 public SearchActivityView(Context context) {
32 super(context);
35 public SearchActivityView(Context context, AttributeSet attrs) {
36 super(context, attrs);
39 public SearchActivityView(Context context, AttributeSet attrs, int defStyle) {
40 super(context, attrs, defStyle)
44 Context context = getContext(); local
    [all...]
  /packages/apps/Stk/src/com/android/stk/
StkCmdReceiver.java 22 import android.content.Context;
33 public void onReceive(Context context, Intent intent) {
37 handleCommandMessage(context, intent);
39 handleSessionEnd(context, intent);
43 private void handleCommandMessage(Context context, Intent intent) {
48 context.startService(new Intent(context, StkAppService.class)
52 private void handleSessionEnd(Context context, Intent intent)
    [all...]
  /packages/apps/Settings/src/com/android/settings/widget/
SettingsAppWidgetProvider.java 25 import android.content.Context;
131 public final void toggleState(Context context) {
132 int currentState = getTriState(context);
156 requestStateChange(context, newState);
185 public final void setImageViewResources(Context context, RemoteViews views) {
189 switch (getTriState(context)) {
222 public abstract void onActualStateChange(Context context, Intent intent)
    [all...]
  /external/webkit/WebKitTools/DumpRenderTree/
LayoutTestController.cpp 84 static JSValueRef dumpAsPDFCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
88 return JSValueMakeUndefined(context);
91 static JSValueRef dumpAsTextCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
95 return JSValueMakeUndefined(context);
98 static JSValueRef dumpBackForwardListCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
102 return JSValueMakeUndefined(context);
105 static JSValueRef dumpChildFramesAsTextCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
109 return JSValueMakeUndefined(context);
112 static JSValueRef dumpChildFrameScrollPositionsCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
116 return JSValueMakeUndefined(context);
    [all...]
  /external/webkit/WebCore/platform/win/
WebCoreTextRenderer.cpp 48 static void doDrawTextAtPoint(GraphicsContext& context, const String& text, const IntPoint& point, const Font& font, const Color& color, int underlinedIndex)
52 context.setFillColor(color, DeviceColorSpace);
54 font.drawText(&context, run, point);
56 context.drawBidiText(font, run, point);
74 context.setStrokeColor(color, DeviceColorSpace);
75 context.drawLineForText(underlinePoint, underlinedWidth, false);
79 void WebCoreDrawTextAtPoint(GraphicsContext& context, const String& text, const IntPoint& point, const Font& font, const Color& color, int underlinedIndex)
81 context.save();
83 doDrawTextAtPoint(context, text, point, font, color, underlinedIndex);
85 context.restore()
    [all...]
  /frameworks/base/core/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...]
  /external/webkit/WebCore/rendering/
RenderMediaControlsChromium.cpp 63 static bool paintMediaButton(GraphicsContext* context, const IntRect& rect, Image* image)
66 context->drawImage(image, DeviceColorSpace, rect);
81 return paintMediaButton(paintInfo.context, rect, soundDisabled);
83 return paintMediaButton(paintInfo.context, rect, mediaElement->muted() ? soundNone: soundFull);
97 return paintMediaButton(paintInfo.context, rect, mediaPlayDisabled);
99 return paintMediaButton(paintInfo.context, rect, mediaElement->paused() ? mediaPlay : mediaPause);
109 GraphicsContext* context = paintInfo.context; local
114 context->save();
115 context->setShouldAntialias(true)
201 GraphicsContext* context = paintInfo.context; local
    [all...]
  /packages/apps/Browser/src/com/android/browser/search/
SearchEngines.java 22 import android.content.Context;
36 public static SearchEngine getDefaultSearchEngine(Context context) {
37 return DefaultSearchEngine.create(context);
40 public static List<SearchEngineInfo> getSearchEngineInfos(Context context) {
42 Resources res = context.getResources();
46 SearchEngineInfo info = new SearchEngineInfo(context, name);
52 public static SearchEngine get(Context context, String name)
    [all...]
  /external/icu4c/samples/layout/
gnomelayout.cpp 33 struct Context
88 Context *context = (Context *) gtk_object_get_data(GTK_OBJECT(app), "context"); local
100 if (context->paragraph != NULL) {
101 delete context->paragraph;
104 context->paragraph = newPara;
108 context->paragraph->breakLines(context->width, context->height)
232 Context *context = new Context(); local
241 gtk_object_set_data(GTK_OBJECT(app), "context", context); local
266 context); local
271 context); local
282 Context *context = (Context *) gtk_object_get_data(GTK_OBJECT(app), "context"); local
    [all...]

Completed in 1323 milliseconds

1 2 3 45 6 7 8 91011>>