Searched refs:render (Results 1 - 25 of 50) sorted by relevance

12

/macosx-10.10/WebCore-7600.1.25/html/shadow/
H A DMeterShadowElement.cpp59 auto render = meterElement()->renderer(); local
60 return render && !render->theme().supportsMeter(render->style().appearance()) && HTMLDivElement::rendererIsNeeded(style);
72 auto render = meterElement()->renderer(); local
73 return render && !render->theme().supportsMeter(render->style().appearance()) && HTMLDivElement::rendererIsNeeded(style);
/macosx-10.10/WebCore-7600.1.25/platform/audio/
H A DAudioIOCallback.h39 // render() is called periodically to get the next render quantum of audio into destinationBus.
41 virtual void render(AudioBus* sourceBus, AudioBus* destinationBus, size_t framesToProcess) = 0;
/macosx-10.10/Libc-1044.1.2/stdio/
H A Dxprintf_domain.c37 printf_render *render; member in struct:_printf_tbl_defaults_fbsd
50 printf_function *render; member in struct:_printf_tbl_defaults_glibc
88 xprintf_domain_default->tbl[printf_tbl_index(*cp)] = (struct _printf_tbl){d->arginfo, d->render, NULL};
98 xprintf_domain_default->tbl[printf_tbl_index(*cp)] = (struct _printf_tbl){d->arginfo, d->render, NULL};
149 register_printf_domain_function(printf_domain_t d, int spec, printf_function *render, printf_arginfo_function *arginfo, void *context) argument
165 if(!render || !arginfo) {
169 d->tbl[printf_tbl_index(spec)] = (struct _printf_tbl){arginfo, render, context};
178 register_printf_domain_render(printf_domain_t d, int spec, printf_render *render, printf_arginfo_function *arginfo) argument
194 if(!render || !arginfo) {
198 d->tbl[printf_tbl_index(spec)] = (struct _printf_tbl){arginfo, render, NUL
[all...]
H A Dxprintf_domain.h51 void *render; /* either typedef printf_function or printf_render */ member in struct:_printf_tbl
/macosx-10.10/WebCore-7600.1.25/html/
H A DHTMLProgressElement.cpp92 if (RenderProgress* render = renderProgress())
93 render->updateFromElement();
141 if (RenderProgress* render = renderProgress()) {
142 bool wasDeterminate = render->isDeterminate();
143 render->updateFromElement();
H A DHTMLMeterElement.cpp217 if (RenderMeter* render = renderMeter())
218 render->updateFromElement();
/macosx-10.10/WebCore-7600.1.25/Modules/webaudio/
H A DAudioDestinationNode.cpp53 void AudioDestinationNode::render(AudioBus* sourceBus, AudioBus* destinationBus, size_t numberOfFrames) function in class:WebCore::AudioDestinationNode
77 // Let the context take care of any business at the start of each render quantum.
80 // Prepare the local audio input provider for this render quantum.
98 // Let the context take care of any business at the end of each render quantum.
H A DAudioDestinationNode.h48 // The audio hardware calls render() to get the next render quantum of audio into destinationBus.
50 virtual void render(AudioBus* sourceBus, AudioBus* destinationBus, size_t numberOfFrames) override;
66 // If there is local/live audio input, we call set() with the audio input data every render quantum.
H A DOfflineAudioDestinationNode.cpp124 // Break up the render target into smaller "render quantize" sized pieces.
131 // Render one render quantum.
132 render(0, m_renderBus.get(), renderQuantumSize);
/macosx-10.10/WebCore-7600.1.25/platform/graphics/ca/win/
H A DLegacyCACFLayerTreeHost.h63 virtual void render(const Vector<CGRect>& dirtyRects = Vector<CGRect>());
H A DWKCACFViewLayerTreeHost.h53 virtual void render(const Vector<CGRect>& dirtyRects = Vector<CGRect>());
H A DCACFLayerTreeHost.h103 virtual void render(const Vector<CGRect>& dirtyRects = Vector<CGRect>()) = 0;
/macosx-10.10/ruby-106/ruby/ext/tk/lib/tkextlib/iwidgets/
H A Dscrolledhtml.rb50 def render(htmltext, workdir=None) method in class:Tk
51 tk_call(@path, 'render', htmltext, workdir)
/macosx-10.10/WebCore-7600.1.25/platform/audio/mac/
H A DAudioDestinationMac.cpp120 // Set render callback
159 OSStatus AudioDestinationMac::render(UInt32 numberOfFrames, AudioBufferList* ioData) function in class:WebCore::AudioDestinationMac
166 m_callback.render(0, m_renderBus.get(), numberOfFrames);
181 return audioOutput->render(numberOfFrames, ioData);
H A DAudioDestinationMac.h53 OSStatus render(UInt32 numberOfFrames, AudioBufferList* ioData);
/macosx-10.10/WebCore-7600.1.25/platform/audio/ios/
H A DAudioDestinationIOS.h72 OSStatus render(UInt32 numberOfFrames, AudioBufferList* ioData);
H A DAudioDestinationIOS.cpp153 // Set render callback
211 OSStatus AudioDestinationIOS::render(UInt32 numberOfFrames, AudioBufferList* ioData) function in class:WebCore::AudioDestinationIOS
222 m_callback.render(0, m_renderBus.get(), remainingFrames);
232 return audioOutput->render(numberOfFrames, ioData);
/macosx-10.10/CPANInternal-159.1/Log-Log4perl-1.40/lib/Log/Log4perl/Layout/PatternLayout/
H A DMultiline.pm7 sub render { subroutine
18 $result .= $self->SUPER::render(
/macosx-10.10/llvmCore-3425.0.34/utils/lit/lit/
H A DProgressBar.py21 Alternatively, the `render()` method can used, which replaces
25 >>> print term.render('This is ${GREEN}green${NORMAL}')
141 def render(self, template): member in class:TerminalController
226 self.bar = term.render(self.BAR)
227 self.header = self.term.render(self.HEADER % header.center(self.width))
/macosx-10.10/emacs-93/emacs/src/
H A Dw32select.c90 static Lisp_Object render (Lisp_Object oformat);
277 render (Lisp_Object oformat) function
282 ONTRACE (fprintf (stderr, "render\n"));
310 ONTRACE (fprintf (stderr, "render: htext = 0x%08X\n", (unsigned) htext));
380 /* For text formats that we don't render here, the OS can use its
397 Note 1: We render the less capable CF_TEXT *before* the more
401 Note 2: We could check os_subtype here and only render the
410 render (make_number (CF_TEXT));
411 render (make_number (current_clipboard_type));
459 run_protected (render, make_numbe
[all...]
/macosx-10.10/CPANInternal-159.1/Log-Log4perl-1.40/lib/Log/Log4perl/Layout/
H A DNoopLayout.pm24 sub render { subroutine
H A DSimpleLayout.pm34 sub render { subroutine
/macosx-10.10/Libc-1044.1.2/stdio/FreeBSD/
H A Dxprintf_private.h48 int register_printf_render(int spec, printf_render *render, printf_arginfo_function *arginfo);
/macosx-10.10/CPANInternal-159.1/Log-Log4perl-1.40/lib/Log/Log4perl/
H A DLayout.pm29 sub render { subroutine
31 die "subclass must implement render";
/macosx-10.10/CPANInternal-159.1/Pod-ProjectDocs-0.40/lib/Pod/ProjectDocs/
H A DIndexPage.pm47 function render(pattern) {
95 <body onload="render('')">
110 <td class="cell"><input type="text" size="60" onkeyup="render(this.value)" /></td>

Completed in 318 milliseconds

12