Searched refs:context (Results 301 - 325 of 2231) sorted by relevance

<<11121314151617181920>>

/external/webkit/Source/WebCore/rendering/svg/
H A DRenderSVGResourcePattern.cpp73 bool RenderSVGResourcePattern::applyResource(RenderObject* object, RenderStyle* style, GraphicsContext*& context, unsigned short resourceMode) argument
77 ASSERT(context);
148 context->save();
154 context->setAlpha(svgStyle->fillOpacity());
155 context->setFillPattern(patternData->pattern);
156 context->setFillRule(svgStyle->fillRule());
160 context->setAlpha(svgStyle->strokeOpacity());
161 context->setStrokePattern(patternData->pattern);
162 SVGRenderSupport::applyStrokeStyleToContext(context, style, object);
167 context
184 postApplyResource(RenderObject*, GraphicsContext*& context, unsigned short resourceMode, const Path* path) argument
[all...]
/external/apache-http/src/org/apache/http/client/
H A DAuthenticationHandler.java50 HttpContext context);
54 HttpContext context) throws MalformedChallengeException;
59 HttpContext context) throws AuthenticationException;
48 isAuthenticationRequested( HttpResponse response, HttpContext context) argument
52 getChallenges( HttpResponse response, HttpContext context) argument
56 selectScheme( Map<String, Header> challenges, HttpResponse response, HttpContext context) argument
/external/apache-xml/src/main/java/org/apache/xpath/operations/
H A DVariableSafeAbsRef.java33 * be used in some situations where the document context may have changed.
38 * to make sure the document context of the referenced variable is the same as
39 * the current document context, and, if it is not, execute the referenced variable's
40 * expression with the current context instead.
52 * @param xctxt The runtime execution context.
63 int context = xctxt.getContextNode();
65 dtmMgr.getDTM(context).getDocument())
68 xns = (XNodeSet)expr.asIterator(xctxt, context);
/external/chromium/chrome/browser/extensions/
H A Dextension_protocols.cc82 ChromeURLRequestContext* context,
98 if (context->is_incognito() &&
100 !context->extension_info_map()->
117 ChromeURLRequestContext* context = local
118 static_cast<ChromeURLRequestContext*>(request->context());
121 if (!AllowExtensionResourceLoad(request, context, scheme)) {
128 FilePath directory_path = context->extension_info_map()->
131 if (context->extension_info_map()->URLIsForExtensionIcon(request->url()))
132 directory_path = context->extension_info_map()->
184 ChromeURLRequestContext* context local
81 AllowExtensionResourceLoad(net::URLRequest* request, ChromeURLRequestContext* context, const std::string& scheme) argument
[all...]
/external/chromium/chrome/browser/sync/engine/
H A Dcleanup_disabled_types_command.cc44 session->context()->previous_session_routing_info();
52 syncable::ScopedDirLookup dir(session->context()->directory_manager(),
53 session->context()->account_name());
/external/llvm/bindings/ocaml/bitreader/
H A Dllvm_bitreader.mli17 (** [get_module context mb] reads the bitcode for a new module [m] from the
18 memory buffer [mb] in the context [context]. Returns [m] if successful, or
24 (** [parse_bitcode context mb] parses the bitcode for a new module [m] from the
25 memory buffer [mb] in the context [context]. Returns [m] if successful, or
/external/qemu/distrib/sdl-1.2.15/src/audio/pulse/
H A DSDL_pulseaudio.h37 pa_context *context; member in struct:SDL_PrivateAudioData
67 #define context (this->hidden->context) macro
/external/replicaisland/src/com/replica/replicaisland/
H A DCustomToastSystem.java32 public CustomToastSystem(Context context) { argument
33 LayoutInflater inflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
37 mToast = new Toast(context);
/external/webkit/Source/WebCore/bindings/js/
H A DJSEventSourceCustom.cpp57 ScriptExecutionContext* context = jsConstructor->scriptExecutionContext(); local
58 if (!context)
62 RefPtr<EventSource> eventSource = EventSource::create(ustringToString(url), context, ec);
H A DJSMessageChannelCustom.cpp50 ScriptExecutionContext* context = jsConstructor->scriptExecutionContext(); local
51 if (!context)
54 return JSValue::encode(asObject(toJS(exec, jsConstructor->globalObject(), MessageChannel::create(context))));
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8CustomVoidCallback.h46 static PassRefPtr<V8CustomVoidCallback> create(v8::Local<v8::Value> value, ScriptExecutionContext* context) argument
49 return adoptRef(new V8CustomVoidCallback(value->ToObject(), context));
56 V8CustomVoidCallback(v8::Local<v8::Object>, ScriptExecutionContext* context);
H A DV8EventSourceConstructor.cpp55 ScriptExecutionContext* context = getScriptExecutionContext();
56 if (!context)
57 return throwError("EventSource constructor's associated context is not available", V8Proxy::ReferenceError);
64 RefPtr<EventSource> eventSource = EventSource::create(url, context, ec);
H A DV8MessageChannelConstructor.cpp57 ScriptExecutionContext* context = getScriptExecutionContext();
58 if (!context)
63 RefPtr<MessageChannel> obj = MessageChannel::create(context);
/external/webkit/Source/WebCore/platform/graphics/cg/
H A DPatternCG.cpp37 static void patternCallback(void* info, CGContextRef context) argument
43 CGRect rect = GraphicsContext(context).roundToDevicePixels(
45 CGContextDrawImage(context, rect, platformImage);
/external/webkit/Source/WebCore/platform/network/qt/
H A DProxyServerQt.cpp40 Vector<ProxyServer> proxyServersForURL(const KURL& url, const NetworkingContext* context) argument
44 const QNetworkAccessManager* accessManager = context ? context->networkAccessManager() : 0;
/external/webkit/Source/WebCore/rendering/
H A DRenderScrollbarTheme.cpp109 void RenderScrollbarTheme::paintScrollCorner(ScrollView*, GraphicsContext* context, const IntRect& cornerRect) argument
112 context->fillRect(cornerRect, Color::white, ColorSpaceDeviceRGB);
115 void RenderScrollbarTheme::paintScrollbarBackground(GraphicsContext* context, Scrollbar* scrollbar) argument
117 toRenderScrollbar(scrollbar)->paintPart(context, ScrollbarBGPart, scrollbar->frameRect());
120 void RenderScrollbarTheme::paintTrackBackground(GraphicsContext* context, Scrollbar* scrollbar, const IntRect& rect) argument
122 toRenderScrollbar(scrollbar)->paintPart(context, TrackBGPart, rect);
125 void RenderScrollbarTheme::paintTrackPiece(GraphicsContext* context, Scrollbar* scrollbar, const IntRect& rect, ScrollbarPart part) argument
127 toRenderScrollbar(scrollbar)->paintPart(context, part, rect);
130 void RenderScrollbarTheme::paintButton(GraphicsContext* context, Scrollbar* scrollbar, const IntRect& rect, ScrollbarPart part) argument
132 toRenderScrollbar(scrollbar)->paintPart(context, par
135 paintThumb(GraphicsContext* context, Scrollbar* scrollbar, const IntRect& rect) argument
[all...]
/external/webkit/Source/WebCore/storage/
H A DIDBFactory.cpp60 PassRefPtr<IDBRequest> IDBFactory::open(ScriptExecutionContext* context, const String& name, ExceptionCode& ec) argument
62 if (!context->isDocument()) {
67 Document* document = static_cast<Document*>(context);
/external/skia/src/core/
H A DSkData.cpp13 SkData::SkData(const void* ptr, size_t size, ReleaseProc proc, void* context) { argument
17 fReleaseProcContext = context;
72 ReleaseProc proc, void* context) {
73 return new SkData(data, length, proc, context);
76 // assumes context is a SkData
77 static void sk_dataref_releaseproc(const void*, size_t, void* context) { argument
78 SkData* src = reinterpret_cast<SkData*>(context);
71 NewWithProc(const void* data, size_t length, ReleaseProc proc, void* context) argument
/external/webkit/Source/WebCore/page/
H A DHistory.cpp69 void History::back(ScriptExecutionContext* context) argument
71 go(context, -1);
79 void History::forward(ScriptExecutionContext* context) argument
81 go(context, 1);
92 void History::go(ScriptExecutionContext* context, int distance) argument
98 Frame* activeFrame = static_cast<Document*>(context)->frame();
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DRewriteEarlyExitException.cs60 protected RewriteEarlyExitException(SerializationInfo info, StreamingContext context) argument
61 : base(info, context) {
H A DRewriteEmptyStreamException.cs60 protected RewriteEmptyStreamException(SerializationInfo info, StreamingContext context) argument
61 : base(info, context) {
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DRewriteEarlyExitException.cs67 protected RewriteEarlyExitException(SerializationInfo info, StreamingContext context) argument
68 : base(info, context)
H A DRewriteEmptyStreamException.cs67 protected RewriteEmptyStreamException(SerializationInfo info, StreamingContext context) argument
68 : base(info, context)
/external/apache-http/src/org/apache/http/conn/
H A DClientConnectionOperator.java82 * @param context the context for the connection
90 HttpContext context,
106 * @param context the context for the connection
113 HttpContext context,
87 openConnection(OperatedClientConnection conn, HttpHost target, InetAddress local, HttpContext context, HttpParams params) argument
111 updateSecureConnection(OperatedClientConnection conn, HttpHost target, HttpContext context, HttpParams params) argument
/external/chromium/android/content/browser/tab_contents/
H A Dtab_contents.h31 void SetProfileRequestContext(net::URLRequestContextGetter* context) { static_cast<ProfileImplAndroid*>(profile_.get())->SetRequestContext(context); } argument

Completed in 559 milliseconds

<<11121314151617181920>>