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

<<11121314151617181920>>

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
FeedbackUtils.java 19 import android.content.Context;
27 public static void showFeedbackForm(Context context) {
34 public static Intent getAboutKeyboardIntent(Context context) {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/research/
BootBroadcastReceiver.java 20 import android.content.Context;
28 public void onReceive(final Context context, final Intent intent) {
30 UploaderService.cancelAndRescheduleUploadingService(context,
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
UserDictionaryToolsListFocus.java 20 import android.content.Context;
35 * @param context The context
37 public UserDictionaryToolsListFocus(Context context) {
38 super(context);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
DataRowHandlerForCustomMimetype.java 18 import android.content.Context;
24 public DataRowHandlerForCustomMimetype(Context context,
26 super(context, dbHelper, aggregator, mimetype);
  /sdk/testapps/customPropAnimTest/src/com/android/custompropertyanimation/
MyView.java 3 import android.content.Context;
10 public MyView(Context context) {
11 super(context);
  /system/core/debuggerd/
machine.h 28 void dump_memory_and_code(const ptrace_context_t* context, log_t* log, pid_t tid, bool at_fault);
29 void dump_registers(const ptrace_context_t* context, log_t* log, pid_t tid, bool at_fault);
  /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/JavaScriptCore/API/tests/
minidom.c 37 static JSValueRef print(JSContextRef context, JSObjectRef object, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception);
46 JSGlobalContextRef context = JSGlobalContextCreateInGroup(NULL, NULL); local
47 JSObjectRef globalObject = JSContextGetGlobalObject(context);
50 JSObjectSetProperty(context, globalObject, printIString, JSObjectMakeFunctionWithCallback(context, printIString, print), kJSPropertyAttributeNone, NULL);
54 JSObjectSetProperty(context, globalObject, node, JSObjectMakeConstructor(context, JSNode_class(context), JSNode_construct), kJSPropertyAttributeNone, NULL);
60 JSValueRef result = JSEvaluateScript(context, script, NULL, NULL, 1, &exception);
65 JSStringRef exceptionIString = JSValueToStringCopy(context, exception, NULL)
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/
MainThread.cpp 45 void* context; member in struct:WTF::FunctionWithContext
48 FunctionWithContext(MainThreadFunction* function = 0, void* context = 0, ThreadCondition* syncFlag = 0)
50 , context(context)
57 && context == o.context
155 invocation.function(invocation.context);
170 void callOnMainThread(MainThreadFunction* function, void* context)
177 functionQueue().append(FunctionWithContext(function, context));
183 void callOnMainThreadAndWait(MainThreadFunction* function, void* context)
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/
V8WorkerContextEventListener.cpp 45 static WorkerContextExecutionProxy* workerProxy(ScriptExecutionContext* context)
47 ASSERT(context->isWorkerContext());
48 WorkerContext* workerContext = static_cast<WorkerContext*>(context);
57 void V8WorkerContextEventListener::handleEvent(ScriptExecutionContext* context, Event* event)
59 if (!context)
68 WorkerContextExecutionProxy* proxy = workerProxy(context);
72 v8::Handle<v8::Context> v8Context = proxy->context();
76 // Enter the V8 context in which to perform the event handling.
77 v8::Context::Scope scope(v8Context)
    [all...]
  /external/webkit/Source/WebCore/page/
DOMTimer.cpp 65 DOMTimer::DOMTimer(ScriptExecutionContext* context, PassOwnPtr<ScheduledAction> action, int interval, bool singleShot)
66 : SuspendableTimer(context)
75 double intervalMilliseconds = intervalClampedToMinimum(interval, context->minimumTimerInterval());
88 int DOMTimer::install(ScriptExecutionContext* context, PassOwnPtr<ScheduledAction> action, int timeout, bool singleShot)
90 // DOMTimer constructor links the new timer into a list of ActiveDOMObjects held by the 'context'.
91 // The timer is deleted when context is deleted (DOMTimer::contextDestroyed) or explicitly via DOMTimer::removeById(),
93 DOMTimer* timer = new DOMTimer(context, action, timeout, singleShot);
95 InspectorInstrumentation::didInstallTimer(context, timer->m_timeoutId, timeout, singleShot);
100 void DOMTimer::removeById(ScriptExecutionContext* context, int timeoutId)
108 InspectorInstrumentation::didRemoveTimer(context, timeoutId)
115 ScriptExecutionContext* context = scriptExecutionContext(); local
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/cg/
GradientCG.cpp 106 void Gradient::fill(GraphicsContext* context, const FloatRect& rect)
108 context->clip(rect);
109 paint(context);
112 void Gradient::paint(GraphicsContext* context)
114 CGContextRef ctx = context->platformContext();
118 void Gradient::paint(CGContextRef context)
121 CGContextDrawShading(context, platformGradient());
127 CGContextSaveGState(context);
131 CGContextTranslateCTM(context, m_p0.x(), m_p0.y());
132 CGContextScaleCTM(context, 1, 1 / aspectRatio())
    [all...]
  /external/webkit/Source/WebCore/rendering/mathml/
RenderMathMLBlock.cpp 82 if (info.context->paintingDisabled() || info.phase != PaintPhaseForeground)
88 info.context->save();
90 info.context->setStrokeThickness(1.0f);
91 info.context->setStrokeStyle(SolidStroke);
92 info.context->setStrokeColor(Color(0, 0, 255), ColorSpaceSRGB);
94 info.context->drawLine(IntPoint(tx, ty), IntPoint(tx + offsetWidth(), ty));
95 info.context->drawLine(IntPoint(tx + offsetWidth(), ty), IntPoint(tx + offsetWidth(), ty + offsetHeight()));
96 info.context->drawLine(IntPoint(tx, ty + offsetHeight()), IntPoint(tx + offsetWidth(), ty + offsetHeight()));
97 info.context->drawLine(IntPoint(tx, ty), IntPoint(tx, ty + offsetHeight()));
101 info.context->setStrokeColor(Color(0, 255, 0), ColorSpaceSRGB)
    [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/services/java/com/android/server/
AttributeCache.java 20 import android.content.Context;
39 private final Context mContext;
45 public final Context context; field in class:AttributeCache.Package
49 public Package(Context c) {
50 context = c;
55 public final Context context; field in class:AttributeCache.Entry
58 public Entry(Context c, TypedArray ta) {
59 context = c
112 Context context; local
    [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...]
  /packages/experimental/LoaderApp/src/com/android/loaderapp/model/
GoogleSource.java 29 import android.content.Context;
52 protected void inflate(Context context, int inflateLevel) {
54 inflateStructuredName(context, inflateLevel);
55 inflateNickname(context, inflateLevel);
56 inflatePhone(context, inflateLevel);
57 inflateEmail(context, inflateLevel);
58 inflateStructuredPostal(context, inflateLevel);
59 inflateIm(context, inflateLevel);
60 inflateOrganization(context, inflateLevel)
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
FuncLocalPart.java 39 * @param xctxt The current execution context.
47 int context = getArg0AsNode(xctxt); local
48 if(DTM.NULL == context)
50 DTM dtm = xctxt.getDTM(context);
51 String s = (context != DTM.NULL) ? dtm.getLocalName(context) : "";
  /external/chromium/net/socket_stream/
socket_stream_job.h 37 const URLRequestContext& context);
47 URLRequestContext* context() const { function in class:net::SocketStreamJob
48 return socket_->context();
50 void set_context(URLRequestContext* context) {
51 socket_->set_context(context);
  /external/libsepol/src/
mls.h 27 #include <sepol/policydb/context.h>
40 const context_struct_t * context);
44 const context_struct_t * context,
50 char **scontext, context_struct_t * context);
56 policydb_t * newp, context_struct_t * context);
  /external/webkit/Source/WebCore/page/qt/
FrameQt.cpp 53 GraphicsContext* context = buffer->context();
54 context->translate(-paintingRect.x(), -paintingRect.y());
55 context->clip(FloatRect(0, 0, paintingRect.maxX(), paintingRect.maxY()));
59 m_view->paintContents(context, paintingRect);
  /external/webkit/Source/WebCore/platform/
Language.cpp 41 void addLanguageChangeObserver(void* context, LanguageChangeObserverFunction customObserver)
43 observerMap().set(context, customObserver);
46 void removeLanguageChangeObserver(void* context)
48 ASSERT(observerMap().contains(context));
49 observerMap().remove(context);
  /external/webkit/Source/WebCore/platform/graphics/gpu/
LoopBlinnShader.cpp 34 LoopBlinnShader::LoopBlinnShader(GraphicsContext3D* context, unsigned program)
35 : Shader(context, program)
37 m_worldViewProjectionLocation = context->getUniformLocation(program, "worldViewProjection");
38 m_positionLocation = context->getAttribLocation(program, "position");
39 m_klmLocation = context->getAttribLocation(program, "klm");
Shader.cpp 81 unsigned Shader::loadShader(GraphicsContext3D* context, unsigned type, const String& shaderSource)
83 unsigned shader = context->createShader(type);
87 context->shaderSource(shader, shaderSource);
88 context->compileShader(shader);
90 context->getShaderiv(shader, GraphicsContext3D::COMPILE_STATUS, &compileStatus);
92 String infoLog = context->getShaderInfoLog(shader);
94 context->deleteShader(shader);
101 unsigned Shader::loadProgram(GraphicsContext3D* context, const String& vertexShaderSource, const String& fragmentShaderSource)
103 unsigned vertexShader = loadShader(context, GraphicsContext3D::VERTEX_SHADER, vertexShaderSource);
106 unsigned fragmentShader = loadShader(context, GraphicsContext3D::FRAGMENT_SHADER, fragmentShaderSource)
    [all...]
  /external/webkit/Source/WebKit2/Shared/qt/
ShareableBitmapQt.cpp 45 GraphicsContext* context = new GraphicsContext(new QPainter(image)); local
46 context->takeOwnershipOfPlatformContext();
47 return context;
50 void ShareableBitmap::paint(GraphicsContext& context, const IntPoint& dstPoint, const IntRect& srcRect)
53 QPainter* painter = context.platformContext();

Completed in 5022 milliseconds

<<11121314151617181920>>