Searched refs:components (Results 1 - 25 of 203) sorted by relevance

123456789

/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/filters/
H A DFEColorMatrix.h59 static inline void calculateSaturateComponents(float* components, float value);
60 static inline void calculateHueRotateComponents(float* components, float value);
69 inline void FEColorMatrix::calculateSaturateComponents(float* components, float value) argument
71 components[0] = (0.213 + 0.787 * value);
72 components[1] = (0.715 - 0.715 * value);
73 components[2] = (0.072 - 0.072 * value);
74 components[3] = (0.213 - 0.213 * value);
75 components[4] = (0.715 + 0.285 * value);
76 components[5] = (0.072 - 0.072 * value);
77 components[
82 calculateHueRotateComponents(float* components, float value) argument
[all...]
H A DFEColorMatrix.cpp89 inline void saturateAndHueRotate(float& red, float& green, float& blue, const float* components) argument
91 float r = red * components[0] + green * components[1] + blue * components[2];
92 float g = red * components[3] + green * components[4] + blue * components[5];
93 float b = red * components[6] + green * components[7] + blue * components[
112 float components[9]; local
[all...]
/macosx-10.9.5/ruby-104/ruby/test/rexml/
H A Drexml_test_utils.rb2 def fixture_path(*components)
3 File.join(File.dirname(__FILE__), "data", *components)
/macosx-10.9.5/mDNSResponder-522.92.1/Clients/FirefoxExtension/
H A DCDNSSDServiceModule.cpp26 static nsModuleComponentInfo components[] = variable
36 NS_IMPL_NSGETMODULE("CDNSSDServiceModule", components)
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-Quartz/PyObjCTest/
H A Dtest_cicolor.py6 self.failUnlessResultIsVariableSize(CIColor.components)
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-framework-Quartz/PyObjCTest/
H A Dtest_cicolor.py6 self.assertResultIsVariableSize(CIColor.components)
/macosx-10.9.5/groff-38/groff/src/include/
H A Dcolor.h34 unsigned int components[4]; member in class:color
71 // Return the actual color scheme and retrieve the color components
75 // retrieve the components of a color
85 #define Cyan components[0]
86 #define Magenta components[1]
87 #define Yellow components[2]
88 #define Black components[3]
90 #define Red components[0]
91 #define Green components[1]
92 #define Blue components[
[all...]
/macosx-10.9.5/emacs-92/emacs/lisp/
H A Dcomposite.el120 ;; Encode composition rules in composition components COMPONENTS. The
126 (defun encode-composition-components (components &optional nocopy)
128 (setq components (copy-sequence components)))
129 (if (vectorp components)
130 (let ((len (length components))
133 (aset components i
134 (encode-composition-rule (aref components i)))
136 (let ((tail (cdr components)))
[all...]
/macosx-10.9.5/WebCore-7537.78.1/Modules/filesystem/
H A DDOMFilePath.cpp44 String DOMFilePath::append(const String& base, const String& components) argument
46 return ensureDirectoryPath(base) + components;
93 Vector<String> components; local
95 path.split(DOMFilePath::separator, components);
96 for (size_t i = 0; i < components.size(); ++i) {
97 if (components[i] == ".")
99 if (components[i] == "..") {
104 canonicalized.append(components[i]);
130 Vector<String> components;
131 path.split(DOMFilePath::separator, components);
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/cg/
H A DColorCG.cpp47 const CGFloat* components = CGColorGetComponents(color); local
56 r = g = b = components[0];
57 a = components[1];
60 r = components[0];
61 g = components[1];
62 b = components[2];
63 a = components[3];
89 CGFloat components[4]; local
90 color.getRGBA(components[0], components[
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/gpu/opencl/
H A DOpenCLFEColorMatrix.cpp55 __kernel void saturateAndHueRotate(__write_only image2d_t destination, __read_only image2d_t source, float x, float y, __constant float *components)
57 COLOR_MATRIX_KERNEL(sourcePixel.x * components[0] + sourcePixel.y * components[1] + sourcePixel.z * components[2],
58 sourcePixel.x * components[3] + sourcePixel.y * components[4] + sourcePixel.z * components[5],
59 sourcePixel.x * components[6] + sourcePixel.y * components[7] + sourcePixel.z * components[
143 float components[9]; local
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/sdx/sdx/lib/uri/
H A Duri.tcl242 array set components {
246 array set components $args
249 if {[string length $components(user)] || [string length $components(pwd)]} {
250 set userPwd $components(user)[expr {[string length $components(pwd)] ? ":$components(pwd)" : {}}]@
254 if {[string length $components(port)]} {
255 set port :$components(port)
259 if {[string length $components(typ
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/uri/
H A Duri.tcl242 array set components {
246 array set components $args
249 if {[string length $components(user)] || [string length $components(pwd)]} {
250 set userPwd $components(user)[expr {[string length $components(pwd)] ? ":$components(pwd)" : {}}]@
254 if {[string length $components(port)]} {
255 set port :$components(port)
259 if {[string length $components(typ
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/wince/
H A DFontWinCE.cpp112 static int generateComponents(TextRunComponents* components, const Font &font, const TextRun &run) argument
135 components->append(TextRunComponent(1, font, offset));
136 offset += add + letterSpacing + components->last().m_width;
148 components->append(TextRunComponent(run.characters16() + start, i - start,
150 offset += components->last().m_width + letterSpacing;
157 components->append(TextRunComponent(1, font, offset));
158 offset += wordSpacing + add + components->last().m_width + letterSpacing;
163 components->append(TextRunComponent(run.characters16() + start, i - start,
166 offset += components->last().m_width + letterSpacing;
171 components
218 TextRunComponents components; local
247 TextRunComponents components; local
258 TextRunComponents components; local
296 cursorToX(const Font* font, const TextRunComponents& components, int width, bool rtl, int cursor) argument
326 TextRunComponents components; local
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tklib/tklib/modules/plotchart/
H A Dplotconfig.tcl39 set config(xyplot,components) {title margin text legend leftaxis rightaxis bottomaxis background}
40 set config(xlogyplot,components) {title margin text legend leftaxis bottomaxis background}
41 set config(logxyplot,components) {title margin text legend leftaxis bottomaxis background}
42 set config(logxlogyplot,components) {title margin text legend leftaxis bottomaxis background}
43 set config(piechart,components) {title margin text legend labels background}
44 set config(polarplot,components) {title margin text legend axis background}
45 set config(histogram,components) {title margin text legend leftaxis rightaxis bottomaxis background}
46 set config(horizbars,components) {title margin text legend leftaxis bottomaxis background}
47 set config(vertbars,components) {title margin text legend leftaxis bottomaxis background}
48 set config(ganttchart,components) {titl
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/incrtcl/incrTcl/itk/library/
H A DWidget.itk69 set components [component]
70 foreach component $components {
73 foreach component $components {
H A DToplevel.itk68 set components [component]
69 foreach component $components {
72 foreach component $components {
/macosx-10.9.5/WebCore-7537.78.1/dom/
H A DQualifiedName.cpp65 static unsigned hash(const QualifiedNameComponents& components) argument
67 return hashComponents(components);
73 static void translate(QualifiedName::QualifiedNameImpl*& location, const QualifiedNameComponents& components, unsigned) argument
75 location = QualifiedName::QualifiedNameImpl::create(components.m_prefix, components.m_localName, components.m_namespace).leakRef();
85 QualifiedNameComponents components = { p.impl(), l.impl(), n.isEmpty() ? nullAtom.impl() : n.impl() }; local
86 QNameSet::AddResult addResult = gNameCache->add<QualifiedNameComponents, QNameComponentsTranslator>(components);
154 QualifiedNameComponents components = { m_prefix.impl(), m_localName.impl(), m_namespace.impl() }; local
155 return hashComponents(components);
[all...]
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-Quartz/Examples/Core Graphics/CGShading Demo/
H A DMyQuartzView.py42 def evaluate1(components, input, output):
44 for k in range(components-1):
53 components = 1 + CGColorSpaceGetNumberOfComponents(colorspace)
55 return CGFunctionCreate(components, 1, domain, components,
58 def evaluate2(components, input, output):
63 for k in range(components-1):
76 components = 1 + CGColorSpaceGetNumberOfComponents(colorspace);
77 return CGFunctionCreate(components, 1, domain, components,
[all...]
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-framework-Quartz/Examples/Core Graphics/CGShading Demo/
H A DMyQuartzView.py42 def evaluate1(components, input, output):
44 for k in range(components-1):
53 components = 1 + CGColorSpaceGetNumberOfComponents(colorspace)
55 return CGFunctionCreate(components, 1, domain, components,
58 def evaluate2(components, input, output):
63 for k in range(components-1):
76 components = 1 + CGColorSpaceGetNumberOfComponents(colorspace);
77 return CGFunctionCreate(components, 1, domain, components,
[all...]
/macosx-10.9.5/Heimdal-323.92.1/lib/asn1/
H A Dder_format.c117 p = rk_strpoolprintf(p, "%d", oid->components[i]);
140 data->components = NULL;
151 c = realloc(data->components,
152 (data->length + 1) * sizeof(data->components[0]));
158 data->components = c;
166 data->components[data->length++] = (unsigned int)l;
/macosx-10.9.5/OpenSSH-186/osslshim/heimdal-asn1/
H A Dasn1-der_format.c143 p = strpoolprintf(p, "%d", oid->components[i]);
166 data->components = NULL;
177 c = realloc(data->components,
178 (data->length + 1) * sizeof(data->components[0]));
184 data->components = c;
192 data->components[data->length++] = l;
/macosx-10.9.5/emacs-92/emacs/src/
H A Dcomposite.c176 Lisp_Object id, length, components, key, *key_contents;
209 components = XCDR (id);
215 if (INTEGERP (components))
216 key = Fmake_vector (make_number (1), components);
217 else if (STRINGP (components) || CONSP (components))
218 key = Fvconcat (1, &components);
219 else if (VECTORP (components))
220 key = components;
221 else if (NILP (components))
175 Lisp_Object id, length, components, key, *key_contents; local
605 Lisp_Object start, end, components, modification_func; variable
612 CHECK_VECTOR (components); variable
614 compose_text (XINT (start), XINT (end), components, modification_func, Qnil); variable
626 Lisp_Object string, start, end, components, modification_func; variable
637 compose_text (XINT (start), XINT (end), components, modification_func, string); variable
697 Lisp_Object components, relative_p, mod_func; variable
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/utils/lit/lit/
H A DTest.py38 def getSourcePath(self, components):
39 return os.path.join(self.source_root, *components)
41 def getExecPath(self, components):
42 return os.path.join(self.exec_root, *components)
/macosx-10.9.5/groff-38/groff/src/libs/libgroff/
H A Dcolor.cpp79 components[0] = c->components[0];
80 components[1] = c->components[1];
81 components[2] = c->components[2];
82 components[3] = c->components[3];
126 fatal("argument is not big enough to store 4 color components");
128 c[0] = components[
[all...]

Completed in 402 milliseconds

123456789