HomeSort by relevance Sort by last modified time
    Searched refs:dispatch (Results 76 - 100 of 324) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-ot-layout-gsub-table.hh 223 inline typename context_t::return_t dispatch (context_t *c) const function in struct:OT::SingleSubst
227 case 1: return TRACE_RETURN (c->dispatch (u.format1));
228 case 2: return TRACE_RETURN (c->dispatch (u.format2));
412 inline typename context_t::return_t dispatch (context_t *c) const function in struct:OT::MultipleSubst
416 case 1: return TRACE_RETURN (c->dispatch (u.format1));
563 inline typename context_t::return_t dispatch (context_t *c) const function in struct:OT::AlternateSubst
567 case 1: return TRACE_RETURN (c->dispatch (u.format1));
870 inline typename context_t::return_t dispatch (context_t *c) const function in struct:OT::LigatureSubst
874 case 1: return TRACE_RETURN (c->dispatch (u.format1));
1034 inline typename context_t::return_t dispatch (context_t *c) cons function in struct:OT::ReverseChainSingleSubst
1081 inline typename context_t::return_t dispatch (context_t *c, unsigned int lookup_type) const function in struct:OT::SubstLookupSubTable
1256 inline typename context_t::return_t dispatch (context_t *c) const function in struct:OT::SubstLookup
    [all...]
hb-ot-layout-gpos-table.hh 525 inline typename context_t::return_t dispatch (context_t *c) const function in struct:OT::SinglePos
529 case 1: return TRACE_RETURN (c->dispatch (u.format1));
530 case 2: return TRACE_RETURN (c->dispatch (u.format2));
817 inline typename context_t::return_t dispatch (context_t *c) const function in struct:OT::PairPos
821 case 1: return TRACE_RETURN (c->dispatch (u.format1));
822 case 2: return TRACE_RETURN (c->dispatch (u.format2));
984 inline typename context_t::return_t dispatch (context_t *c) const function in struct:OT::CursivePos
988 case 1: return TRACE_RETURN (c->dispatch (u.format1));
1083 inline typename context_t::return_t dispatch (context_t *c) const function in struct:OT::MarkBasePos
1204 inline typename context_t::return_t dispatch (context_t *c) const function in struct:OT::MarkLigPos
1323 inline typename context_t::return_t dispatch (context_t *c) const function in struct:OT::MarkMarkPos
1382 inline typename context_t::return_t dispatch (context_t *c, unsigned int lookup_type) const function in struct:OT::PosLookupSubTable
1483 inline typename context_t::return_t dispatch (context_t *c) const function in struct:OT::PosLookup
    [all...]
  /external/harfbuzz_ng/src/
hb-ot-layout-gsub-table.hh 223 inline typename context_t::return_t dispatch (context_t *c) const function in struct:OT::SingleSubst
227 case 1: return TRACE_RETURN (c->dispatch (u.format1));
228 case 2: return TRACE_RETURN (c->dispatch (u.format2));
405 inline typename context_t::return_t dispatch (context_t *c) const function in struct:OT::MultipleSubst
409 case 1: return TRACE_RETURN (c->dispatch (u.format1));
556 inline typename context_t::return_t dispatch (context_t *c) const function in struct:OT::AlternateSubst
560 case 1: return TRACE_RETURN (c->dispatch (u.format1));
864 inline typename context_t::return_t dispatch (context_t *c) const function in struct:OT::LigatureSubst
868 case 1: return TRACE_RETURN (c->dispatch (u.format1));
1026 inline typename context_t::return_t dispatch (context_t *c) cons function in struct:OT::ReverseChainSingleSubst
1073 inline typename context_t::return_t dispatch (context_t *c, unsigned int lookup_type) const function in struct:OT::SubstLookupSubTable
1296 inline typename context_t::return_t dispatch (context_t *c) const function in struct:OT::SubstLookup
    [all...]
hb-ot-layout-gpos-table.hh 522 inline typename context_t::return_t dispatch (context_t *c) const function in struct:OT::SinglePos
526 case 1: return TRACE_RETURN (c->dispatch (u.format1));
527 case 2: return TRACE_RETURN (c->dispatch (u.format2));
813 inline typename context_t::return_t dispatch (context_t *c) const function in struct:OT::PairPos
817 case 1: return TRACE_RETURN (c->dispatch (u.format1));
818 case 2: return TRACE_RETURN (c->dispatch (u.format2));
979 inline typename context_t::return_t dispatch (context_t *c) const function in struct:OT::CursivePos
983 case 1: return TRACE_RETURN (c->dispatch (u.format1));
1078 inline typename context_t::return_t dispatch (context_t *c) const function in struct:OT::MarkBasePos
1199 inline typename context_t::return_t dispatch (context_t *c) const function in struct:OT::MarkLigPos
1318 inline typename context_t::return_t dispatch (context_t *c) const function in struct:OT::MarkMarkPos
1377 inline typename context_t::return_t dispatch (context_t *c, unsigned int lookup_type) const function in struct:OT::PosLookupSubTable
1498 inline typename context_t::return_t dispatch (context_t *c) const function in struct:OT::PosLookup
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/events/
EventDispatcher.cpp 86 EventDispatcher(node, SimulatedMouseEvent::create(EventTypeNames::mouseover, node->document().domWindow(), underlyingEvent)).dispatch();
89 EventDispatcher(node, SimulatedMouseEvent::create(EventTypeNames::mousedown, node->document().domWindow(), underlyingEvent)).dispatch();
92 EventDispatcher(node, SimulatedMouseEvent::create(EventTypeNames::mouseup, node->document().domWindow(), underlyingEvent)).dispatch();
96 EventDispatcher(node, SimulatedMouseEvent::create(EventTypeNames::click, node->document().domWindow(), underlyingEvent)).dispatch();
101 bool EventDispatcher::dispatch() function in class:WebCore::EventDispatcher
122 // Ensure that after event dispatch, the event's target object is the
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
headerparserhandler.py 43 from mod_pywebsocket import dispatch namespace
165 dispatcher = dispatch.Dispatcher(
197 except dispatch.DispatchException, e:
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/
checker_unittest.py 287 checker = self._dispatcher.dispatch(file_path=path,
339 """Tests dispatch() method of CheckerDispatcher class."""
341 def dispatch(self, file_path): member in class:CheckerDispatcherDispatchTest
342 """Call dispatch() with the given file path."""
345 checker = dispatcher.dispatch(file_path,
352 checker = self.dispatch(file_path)
357 checker = self.dispatch(file_path)
403 checker = self.dispatch(file_path)
413 checker = self.dispatch(file_path)
432 checker = self.dispatch(file_path
668 def dispatch(self, file_path, style_error_handler, min_confidence): member in class:StyleProcessor_CodeCoverageTest.MockDispatcher
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/
headerparserhandler.py 43 from mod_pywebsocket import dispatch namespace
166 dispatcher = dispatch.Dispatcher(
202 except dispatch.DispatchException, e:
204 'mod_pywebsocket: Dispatch failed for error: %s' % e,
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/base/
ConnectorAdapter.java 131 protected void dispatch( Message m ) method in class:ConnectorAdapter
175 dispatch( m );
  /external/mockwebserver/src/test/java/com/google/mockwebserver/
CustomDispatcherTest.java 42 public MockResponse dispatch(RecordedRequest request) throws InterruptedException {
65 public MockResponse dispatch(RecordedRequest request) throws InterruptedException {
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
KeyguardService.java 136 public void dispatch(MotionEvent event) {
138 mKeyguardViewMediator.dispatch(event);
  /external/chromium/third_party/libevent/
event-internal.h 43 int (*dispatch)(struct event_base *, void *, struct timeval *); member in struct:eventop
  /external/chromium_org/chrome/renderer/resources/extensions/
downloads_custom_bindings.js 14 function massage_determining_filename(args, dispatch) {
54 var results = dispatch([downloadItem, suggestCallback]);
file_browser_private_custom_bindings.js 66 'fileBrowserPrivate.onDirectoryChanged', function(args, dispatch) {
69 dispatch(args);
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBEventDispatcher.cpp 37 bool IDBEventDispatcher::dispatch(Event* event, Vector<RefPtr<EventTarget> >& eventTargets) function in class:WebCore::IDBEventDispatcher
  /external/chromium_org/third_party/libevent/
event-internal.h 43 int (*dispatch)(struct event_base *, void *, struct timeval *); member in struct:eventop
  /external/chromium_org/third_party/mesa/src/src/mapi/glapi/gen/
gl_apitemp.py 47 self.undef_list.append( "DISPATCH" )
88 dispatch = "RETURN_DISPATCH"
90 dispatch = "DISPATCH"
109 % (dispatch, f.name, name)
112 % (dispatch, f.name, p_string, name, t_string, o_string)
128 * DISPATCH(func, args, msg) - code to do dispatch of named function.
130 * RETURN_DISPATCH(func, args, msg) - code to do dispatch with a return value
136 * #define DISPATCH(func, args, msg) \
    [all...]
gl_x86-64_asm.py 294 dispatch = f.dispatch_name()
298 text = '\t.globl GL_PREFIX(%s) ; .set GL_PREFIX(%s), GL_PREFIX(%s)' % (n, n, dispatch)
  /external/mesa3d/src/mapi/glapi/gen/
gl_apitemp.py 47 self.undef_list.append( "DISPATCH" )
88 dispatch = "RETURN_DISPATCH"
90 dispatch = "DISPATCH"
109 % (dispatch, f.name, name)
112 % (dispatch, f.name, p_string, name, t_string, o_string)
128 * DISPATCH(func, args, msg) - code to do dispatch of named function.
130 * RETURN_DISPATCH(func, args, msg) - code to do dispatch with a return value
136 * #define DISPATCH(func, args, msg) \
    [all...]
gl_x86-64_asm.py 294 dispatch = f.dispatch_name()
298 text = '\t.globl GL_PREFIX(%s) ; .set GL_PREFIX(%s), GL_PREFIX(%s)' % (n, n, dispatch)
  /external/mockwebserver/src/main/java/com/google/mockwebserver/
QueueDispatcher.java 31 @Override public MockResponse dispatch(RecordedRequest request) throws InterruptedException { method in class:QueueDispatcher
  /external/oprofile/events/mips/20K/
events 14 event:0x8 counters:0 um:zero minimum:500 name:REPLAY_DUE_TO_LOAD_DEPENDENT_SPEC_DISPATCH : Replays due to load-dependent speculative dispatch
17 event:0xb counters:0 um:zero minimum:500 name:REPLAYS : Total number of LSU requested replays, Load-dependent speculative dispatch or FPU exception prediction replays.
  /external/chromium_org/chrome_frame/
extra_system_apis.h 81 STDMETHOD(FireBeforeNavigate2)(IDispatch* dispatch,
100 STDMETHOD(FireBeforeNavigate2)(IDispatch* dispatch,
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
InspectorFrontendAPI.js 124 InspectorBackend.dispatch(messageObject);
230 if ("dispatch" in queryParamsObject)
231 InspectorFrontendAPI._dispatch(JSON.parse(window.decodeURI(queryParamsObject["dispatch"])));
244 WebInspector.dispatch(messageObject);
  /external/mesa3d/src/mesa/
Android.gen.mk 40 main/dispatch.h \
132 $(intermediates)/main/dispatch.h: PRIVATE_SCRIPT := $(MESA_PYTHON2) $(glapi)/gl_table.py
133 $(intermediates)/main/dispatch.h: PRIVATE_XML := -f $(glapi)/gl_and_es_API.xml
135 $(intermediates)/main/dispatch.h: $(es_hdr_deps)

Completed in 739 milliseconds

1 2 34 5 6 7 8 91011>>