Searched refs:context (Results 276 - 300 of 2231) sorted by relevance

<<11121314151617181920>>

/external/chromium/chrome/browser/profiles/
H A Dprofile_io_data.cc153 // when download request is made through the context menu in a web page).
220 scoped_refptr<RequestContext> context = main_request_context_; local
221 context->set_profile_io_data(this);
223 return context;
229 scoped_refptr<ChromeURLRequestContext> context = local
231 DCHECK(context);
232 return context;
238 scoped_refptr<RequestContext> context = local
240 context->set_profile_io_data(this);
242 return context;
250 scoped_refptr<ChromeURLRequestContext> context = local
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/app/
H A DApplication.java79 protected JmeContext context; field in class:Application
181 if (context != null && settings.useInput() != inputEnabled){
218 // from the context
219 settings = context.getSettings();
223 timer = context.getTimer();
226 renderer = context.getRenderer();
230 if (settings.getAudioRenderer() != null && context.getType() != Type.Headless){
270 mouseInput = context.getMouseInput();
274 keyInput = context.getKeyInput();
278 touchInput = context
[all...]
/external/v8/test/cctest/
H A Dtestcfg.py37 def __init__(self, path, executable, mode, raw_name, dependency, context, variant_flags):
38 super(CcTestCase, self).__init__(context, path, mode)
52 if exists(join(self.context.buildspace, 'obj', 'test', self.mode)):
57 serialization_file = join(self.context.buildspace, serialization_file)
61 result += self.context.GetVmFlags(self, self.mode)
78 def __init__(self, context, root):
79 super(CcTestConfiguration, self).__init__(context, root)
88 executable = join(self.context.buildspace, executable)
93 executable = join(self.context.buildspace, executable)
94 output = test.Execute([executable, '--list'], self.context)
[all...]
/external/webkit/Source/WebCore/loader/icon/
H A DIconDatabaseBase.h57 CallbackBase(void* context) argument
58 : m_context(context)
63 void* context() const { return m_context; } function in class:WebCore::CallbackBase
81 static PassRefPtr<EnumCallback> create(void* context, CallbackFunction callback) argument
83 return adoptRef(new EnumCallback(context, callback));
95 m_callback(result, context());
105 EnumCallback(void* context, CallbackFunction callback) argument
106 : CallbackBase(context)
120 static PassRefPtr<ObjectCallback> create(void* context, CallbackFunction callback) argument
122 return adoptRef(new ObjectCallback(context, callbac
144 ObjectCallback(void* context, CallbackFunction callback) argument
[all...]
/external/webkit/Source/WebCore/platform/graphics/cairo/
H A DImageCairo.cpp96 void BitmapImage::draw(GraphicsContext* context, const FloatRect& dst, const FloatRect& src, ColorSpace styleColorSpace, CompositeOperator op) argument
112 fillWithSolidColor(context, dstRect, solidColor(), styleColorSpace, op);
118 cairo_t* cr = context->platformContext()->cr();
119 context->save();
123 context->setCompositeOperation(CompositeCopy);
125 context->setCompositeOperation(op);
139 ContextShadow* shadow = context->contextShadow();
142 cairo_t* shadowContext = shadow->beginShadowLayer(context, dstRect);
148 shadow->endShadowLayer(context);
158 cairo_paint_with_alpha(cr, context
166 drawPattern(GraphicsContext* context, const FloatRect& tileRect, const AffineTransform& patternTransform, const FloatPoint& phase, ColorSpace colorSpace, CompositeOperator op, const FloatRect& destRect) argument
[all...]
/external/webkit/Source/WebCore/platform/graphics/mac/
H A DFontMac.mm81 static void showGlyphsWithAdvances(const FloatPoint& point, const SimpleFontData* font, CGContextRef context, const CGGlyph* glyphs, const CGSize* advances, size_t count)
83 CGContextSetTextPosition(context, point.x(), point.y());
91 savedMatrix = CGContextGetTextMatrix(context);
93 CGContextSetTextMatrix(context, runMatrix);
107 CGAffineTransform transform = CGAffineTransformInvert(CGContextGetTextMatrix(context));
117 CGContextShowGlyphsAtPositions(context, glyphs, positions.data(), count);
118 CGContextSetTextMatrix(context, savedMatrix);
120 CGContextShowGlyphsWithAdvances(context, glyphs, advances, count);
128 CGAffineTransform matrix = CGAffineTransformInvert(CGContextGetTextMatrix(context));
135 CTFontDrawGlyphs(platformData.ctFont(), glyphs, positions.data(), count, context);
[all...]
/external/webkit/Source/WebCore/webaudio/
H A DAudioNodeInput.cpp50 ASSERT(context()->isGraphOwner());
70 ASSERT(context()->isGraphOwner());
98 ASSERT(context()->isGraphOwner());
116 ASSERT(context()->isGraphOwner());
135 ASSERT(context()->isGraphOwner());
137 context()->markAudioNodeInputDirty(this);
144 ASSERT(context()->isAudioThread() && context()->isGraphOwner());
177 ASSERT(context()->isAudioThread());
190 ASSERT(context()
[all...]
/external/webkit/Source/WebCore/workers/
H A DWorkerRunLoop.cpp128 void WorkerRunLoop::run(WorkerContext* context) argument
134 result = runInMode(context, modePredicate);
138 MessageQueueWaitResult WorkerRunLoop::runInMode(WorkerContext* context, const String& mode) argument
142 MessageQueueWaitResult result = runInMode(context, modePredicate);
146 MessageQueueWaitResult WorkerRunLoop::runInMode(WorkerContext* context, const ModePredicate& predicate) argument
148 ASSERT(context);
149 ASSERT(context->thread());
150 ASSERT(context->thread()->threadID() == currentThread());
156 // If the context is closing, don't execute any further JavaScript tasks (per section 4.1.1 of the Web Workers spec). However, there may be implementation cleanup tasks in the queue, so keep running through it.
163 task->performTask(context);
195 performTask(ScriptExecutionContext* context) argument
[all...]
/external/webkit/Source/WebKit/chromium/src/
H A DWebWorkerClientImpl.h109 static void startWorkerContextTask(WebCore::ScriptExecutionContext* context,
114 static void terminateWorkerContextTask(WebCore::ScriptExecutionContext* context,
116 static void postMessageToWorkerContextTask(WebCore::ScriptExecutionContext* context,
120 static void workerObjectDestroyedTask(WebCore::ScriptExecutionContext* context,
126 static void postMessageToWorkerObjectTask(WebCore::ScriptExecutionContext* context,
130 static void postExceptionToWorkerObjectTask(WebCore::ScriptExecutionContext* context,
135 static void postConsoleMessageToWorkerObjectTask(WebCore::ScriptExecutionContext* context,
143 static void confirmMessageFromWorkerObjectTask(WebCore::ScriptExecutionContext* context,
145 static void reportPendingActivityTask(WebCore::ScriptExecutionContext* context,
149 // Guard against context fro
[all...]
/external/apache-http/src/org/apache/http/impl/
H A DDefaultHttpResponseFactory.java87 HttpContext context) {
91 final Locale loc = determineLocale(context);
100 HttpContext context) {
104 final Locale loc = determineLocale(context);
113 * @param context the context from which to determine the locale, or
118 protected Locale determineLocale(HttpContext context) { argument
85 newHttpResponse(final ProtocolVersion ver, final int status, HttpContext context) argument
99 newHttpResponse(final StatusLine statusline, HttpContext context) argument
/external/chromium/chrome/browser/sync/engine/
H A Dclear_data_command.cc33 client_to_server_message.set_share(session->context()->account_name());
39 ScopedDirLookup dir(session->context()->directory_manager(),
40 session->context()->account_name());
66 session->context()->NotifyListeners(event);
74 session->context()->NotifyListeners(event);
/external/chromium/net/socket_stream/
H A Dsocket_stream_job.h37 const URLRequestContext& context);
47 URLRequestContext* context() const { function in class:net::SocketStreamJob
48 return socket_->context();
50 void set_context(URLRequestContext* context) { argument
51 socket_->set_context(context);
/external/icu4c/common/unicode/
H A Dutrace.h112 * @param context value supplied at the time the trace functions are set.
117 UTraceEntry(const void *context, int32_t fnNumber);
121 * @param context value supplied at the time the trace functions are set.
133 UTraceExit(const void *context, int32_t fnNumber,
139 * @param context value supplied at the time the trace functions are set.
148 UTraceData(const void *context, int32_t fnNumber, int32_t level,
165 * @param context an uninterpretted pointer. Whatever is passed in
180 utrace_setFunctions(const void *context,
187 * @param context The currently installed tracing context
[all...]
/external/jmonkeyengine/engine/src/android/jme3test/android/
H A DDemoLaunchAdapter.java20 private Context context; field in class:DemoLaunchAdapter
24 public DemoLaunchAdapter(Context context, List<DemoLaunchEntry> listDemos) { argument
25 this.context = context;
44 LayoutInflater inflater = (LayoutInflater) context
/external/srec/srec/crec/
H A Dtext_parser.c33 static int check_word_path(srec_context* context, arc_token* atok, argument
79 wdID = wordmap_find_index(context->olabels, copy_of_word);
83 next_atok = get_arc_for_word(atok, wdID, context, context->beg_silence_word);
87 next_atok = get_arc_for_word_without_slot_annotation(atok, wd, context, context->beg_silence_word);
95 for (tmp = ARC_TOKEN_PTR(context->arc_token_list, next_atok->first_next_arc); tmp != NULL;
96 tmp = ARC_TOKEN_PTR(context->arc_token_list, tmp->next_token_index))
110 int FST_CheckPath_Simple(srec_context* context, const char* transcription) argument
112 arc_token* atok = &context
122 FST_CheckPath_Complex(srec_context* context, const char* transcription, char* literal, size_t max_literal_len) argument
192 FST_CheckPath(srec_context* context, const char* transcription, char* literal, size_t max_literal_len) argument
[all...]
/external/webkit/Source/WebCore/bindings/js/
H A DJSCallbackData.cpp40 void JSCallbackData::deleteData(void* context) argument
42 delete static_cast<JSCallbackData*>(context);
63 ScriptExecutionContext* context = globalObject()->scriptExecutionContext(); local
64 // We will fail to get the context if the frame has been detached.
65 if (!context)
68 bool contextIsDocument = context->isDocument();
/external/webkit/Source/WebCore/bindings/v8/
H A DV8EventListener.cpp44 v8::Local<v8::Function> V8EventListener::getListenerFunction(ScriptExecutionContext* context) argument
46 v8::Local<v8::Object> listener = getListenerObject(context);
66 v8::Local<v8::Value> V8EventListener::callListenerFunction(ScriptExecutionContext* context, v8::Handle<v8::Value> jsEvent, Event* event) argument
69 v8::Local<v8::Function> handlerFunction = getListenerFunction(context);
76 if (V8Proxy* proxy = V8Proxy::retrieve(context))
/external/webkit/Source/WebCore/html/canvas/
H A DOESVertexArrayObject.cpp38 OESVertexArrayObject::OESVertexArrayObject(WebGLRenderingContext* context) argument
40 , m_context(context)
53 PassRefPtr<OESVertexArrayObject> OESVertexArrayObject::create(WebGLRenderingContext* context) argument
55 return adoptRef(new OESVertexArrayObject(context));
94 if (arrayObject && arrayObject->context() != m_context) {
/external/webkit/Source/WebCore/platform/network/win/
H A DNetworkStateNotifierWin.cpp84 void NetworkStateNotifier::callAddressChanged(void* context) argument
86 static_cast<NetworkStateNotifier*>(context)->addressChanged();
89 void CALLBACK NetworkStateNotifier::addrChangeCallback(void* context, BOOLEAN timedOut) argument
93 static_cast<NetworkStateNotifier*>(context)->registerForAddressChange();
95 callOnMainThread(callAddressChanged, context);
/external/webkit/Source/WebKit2/Platform/mac/
H A DRunLoopMac.mm31 void RunLoop::performWork(void* context)
37 static_cast<RunLoop*>(context)->performWork();
40 static_cast<RunLoop*>(context)->performWork();
47 CFRunLoopSourceContext context = { 0, this, 0, 0, 0, 0, 0, 0, 0, performWork };
48 m_runLoopSource = CFRunLoopSourceCreate(kCFAllocatorDefault, 0, &context);
81 context:nil
98 void RunLoop::TimerBase::timerFired(CFRunLoopTimerRef, void* context)
100 TimerBase* timer = static_cast<TimerBase*>(context);
128 CFRunLoopTimerContext context = { 0, this, 0, 0, 0 };
130 m_timer = CFRunLoopTimerCreate(kCFAllocatorDefault, CFAbsoluteTimeGetCurrent() + nextFireInterval, repeatInterval, 0, 0, timerFired, &context);
[all...]
/external/webkit/Source/WebKit2/Shared/
H A DWebData.h41 typedef void (*FreeDataFunction)(unsigned char*, const void* context);
43 static PassRefPtr<WebData> createWithoutCopying(const unsigned char* bytes, size_t size, FreeDataFunction freeDataFunction, const void* context) argument
45 return adoptRef(new WebData(bytes, size, freeDataFunction, context));
74 WebData(const unsigned char* bytes, size_t size, FreeDataFunction freeDataFunction, const void* context) argument
78 , m_context(context)
/external/webkit/Tools/MiniBrowser/qt/
H A Dmain.cpp43 QWKContext* context = new QWKContext; local
44 BrowserWindow* window = new BrowserWindow(context, &app.m_windowOptions);
61 QWKContext* context = new QWKContext; local
62 BrowserWindow* window = new BrowserWindow(context, &app.m_windowOptions);
64 context->setParent(window);
/external/webkit/Tools/TestWebKitAPI/Tests/WebKit2/
H A DRestoreSessionStateContainingFormData.cpp51 static WKRetainPtr<WKDataRef> createSessionStateContainingFormData(WKContextRef context) argument
53 PlatformWebView webView(context);
69 WKRetainPtr<WKContextRef> context(AdoptWK, WKContextCreate());
74 PlatformWebView webView(context.get());
77 WKRetainPtr<WKDataRef> data = createSessionStateContainingFormData(context.get());
/external/chromium/chrome/browser/search_engines/
H A Dtemplate_url_parser.cc290 void ParseURL(const xmlChar** atts, ParsingContext* context) { argument
294 TemplateURL* turl = context->template_url();
325 context->set_is_suggestion(false);
327 context->set_method(ParsingContext::POST);
330 context->set_is_suggestion(true);
332 context->set_suggestion_method(ParsingContext::POST);
336 void ParseImage(const xmlChar** atts, ParsingContext* context) { argument
358 context->AddImageRef(type, width, height);
362 void ParseParam(const xmlChar** atts, ParsingContext* context) { argument
379 context
394 ProcessURLParams(ParsingContext* context) argument
454 ParsingContext* context = reinterpret_cast<ParsingContext*>(ctx); local
476 ParsingContext* context = reinterpret_cast<ParsingContext*>(ctx); local
517 ParsingContext* context = reinterpret_cast<ParsingContext*>(ctx); local
[all...]
/external/webkit/Tools/DumpRenderTree/win/
H A DEventSender.cpp63 static JSValueRef getDragModeCallback(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception) argument
65 return JSValueMakeBoolean(context, dragMode);
68 static bool setDragModeCallback(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef value, JSValueRef* exception) argument
70 dragMode = JSValueToBoolean(context, value);
74 static JSValueRef getConstantCallback(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception) argument
77 return JSValueMakeNumber(context, WM_KEYDOWN);
79 return JSValueMakeNumber(context, WM_KEYUP);
81 return JSValueMakeNumber(context, WM_CHAR);
83 return JSValueMakeNumber(context, WM_DEADCHAR);
85 return JSValueMakeNumber(context, WM_SYSKEYDOW
96 leapForwardCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) argument
131 contextClickCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) argument
147 buildModifierFlags(JSContextRef context, const JSValueRef modifiers) argument
171 mouseDownCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) argument
262 mouseUpCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) argument
329 mouseMoveToCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) argument
433 keyDownCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) argument
541 dispatchMessageCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) argument
577 textZoomInCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) argument
591 textZoomOutCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) argument
605 zoomPageInCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) argument
619 zoomPageOutCallback(JSContextRef context, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) argument
661 getClass(JSContextRef context) argument
676 makeEventSender(JSContextRef context, bool isTopFrame) argument
[all...]

Completed in 1571 milliseconds

<<11121314151617181920>>