Searched defs:components (Results 1 - 18 of 18) sorted by relevance

/external/skia/src/animator/
H A DSkAnimateField.cpp39 int SkAnimate::components() { function in class:SkAnimate
114 fComponents <<= 2; // four color components
H A DSkAnimateBase.cpp65 int SkAnimateBase::components() { function in class:SkAnimateBase
H A DSkAnimateActive.cpp176 int count = animate->components();
214 int count = animate->components();
306 int components = animate->components(); local
308 SkOperand* to = &from[animate->components()];
309 existingValues.setCount(components);
314 for (int cIndex = 0; cIndex < components; cIndex++) {
326 fInterpolators[index]->reset(components, 2, SkType_Float);
380 int components = animate->components(); local
[all...]
/external/skia/xcode/hostapp/
H A Dtest.cpp43 float components[] = { 1, 1, 1, 1 }; local
46 CGColorRef color = CGColorCreate(colorspace, components);
/external/webkit/WebCore/platform/graphics/cg/
H A DColorCG.cpp46 const CGFloat* components = CGColorGetComponents(color); local
55 r = g = b = components[0];
56 a = components[1];
59 r = components[0];
60 g = components[1];
61 b = components[2];
62 a = components[3];
82 CGFloat components[4] = { static_cast<CGFloat>(c.red()) / 255, static_cast<CGFloat>(c.green()) / 255, local
84 color = CGColorCreate(rgbSpace.get(), components);
H A DGraphicsContextCG.cpp74 CGFloat components[4]; local
75 color.getRGBA(components[0], components[1], components[2], components[3]);
79 cgColor = CGColorCreate(sRGBColorSpaceRef(), components);
81 cgColor = CGColorCreate(deviceRGBColorSpaceRef(), components);
/external/webkit/WebCore/dom/
H A DQualifiedName.cpp38 static unsigned hash(const QualifiedNameComponents& components) argument
40 return hashComponents(components);
46 static void translate(QualifiedName::QualifiedNameImpl*& location, const QualifiedNameComponents& components, unsigned) argument
48 location = QualifiedName::QualifiedNameImpl::create(components.m_prefix, components.m_localName, components.m_namespace).releaseRef();
58 QualifiedNameComponents components = { p.impl(), l.impl(), n.isEmpty() ? nullAtom.impl() : n.impl() }; local
59 pair<QNameSet::iterator, bool> addResult = gNameCache->add<QualifiedNameComponents, QNameComponentsTranslator>(components);
/external/guava/src/com/google/common/base/
H A DPredicates.java94 * components evaluates to {@code true}. The components are evaluated in
98 * components} is empty, the returned predicate will always evaluate to {@code
102 Iterable<? extends Predicate<? super T>> components) {
103 return new AndPredicate<T>(defensiveCopy(components));
108 * components evaluates to {@code true}. The components are evaluated in
112 * components} is empty, the returned predicate will always evaluate to {@code
115 public static <T> Predicate<T> and(Predicate<? super T>... components) { argument
116 return new AndPredicate<T>(defensiveCopy(components));
101 and( Iterable<? extends Predicate<? super T>> components) argument
140 or( Iterable<? extends Predicate<? super T>> components) argument
154 or(Predicate<? super T>.... components) argument
280 private final Iterable<? extends Predicate<? super T>> components; field in class:Predicates.AndPredicate
282 AndPredicate(Iterable<? extends Predicate<? super T>> components) argument
316 private final Iterable<? extends Predicate<? super T>> components; field in class:Predicates.OrPredicate
318 OrPredicate(Iterable<? extends Predicate<? super T>> components) argument
[all...]
H A DCharMatcher.java560 List<CharMatcher> components; field in class:CharMatcher.And
562 And(List<CharMatcher> components) { argument
563 this.components = components; // Skip defensive copy (private)
567 for (CharMatcher matcher : components) {
576 List<CharMatcher> newComponents = new ArrayList<CharMatcher>(components);
591 List<CharMatcher> components; field in class:CharMatcher.Or
593 Or(List<CharMatcher> components) { argument
594 this.components = components; // Ski
[all...]
/external/jpeg/
H A Drdtarga.c337 int idlen, cmaptype, subtype, flags, interlace_type, components; local
380 components = 3; /* until proven different */
409 components = 1;
426 (JDIMENSION) width * components, (JDIMENSION) height, (JDIMENSION) 1);
439 (JDIMENSION) width * components, (JDIMENSION) 1);
461 cinfo->input_components = components;
/external/webkit/WebCore/platform/graphics/wince/
H A DFontWince.cpp110 static int generateComponents(TextRunComponents* components, const Font &font, const TextRun &run) argument
133 components->append(TextRunComponent(1, font, offset));
134 offset += add + letterSpacing + components->last().m_width;
146 components->append(TextRunComponent(run.characters() + start, i - start,
148 offset += components->last().m_width + letterSpacing;
155 components->append(TextRunComponent(1, font, offset));
156 offset += wordSpacing + add + components->last().m_width + letterSpacing;
161 components->append(TextRunComponent(run.characters() + start, i - start,
164 offset += components->last().m_width + letterSpacing;
169 components
216 TextRunComponents components; local
240 TextRunComponents components; local
247 TextRunComponents components; local
285 cursorToX(const Font* font, const TextRunComponents& components, int width, bool rtl, int cursor) argument
314 TextRunComponents components; local
[all...]
/external/freetype/src/sfnt/
H A Dttsbit.c1345 TT_SBit_Component components; local
1351 FT_NEW_ARRAY( components, num_components ) )
1359 for ( comp = components; count > 0; count--, comp++ )
1370 comp = components;
1402 FT_FREE( components );
/external/proguard/src/proguard/gui/
H A DProGuardGUI.java500 // Collect all components that are followed by text fields and make
913 * Sets the preferred sizes of the given components to the maximum of their
916 private void setCommonPreferredSize(List components) argument
920 for (int index = 0; index < components.size(); index++)
922 JComponent component = (JComponent)components.get(index);
931 // Set the size that we found as the preferred size for all components.
932 for (int index = 0; index < components.size(); index++)
934 JComponent component = (JComponent)components.get(index);
/external/bluetooth/glib/gio/
H A Dgcontenttype.c1360 gchar **components; member in struct:__anon357
1374 if (strcmp (name, e->components[depth]) == 0)
1458 e->components = g_strsplit (e->path, G_DIR_SEPARATOR_S, -1);
1459 e->depth = g_strv_length (e->components);
1463 for (i = 0; e->components[i]; i++)
1465 case_folded = g_utf8_casefold (e->components[i], -1);
1498 g_strfreev (e->components);
/external/jhead/
H A Dexif.c526 ErrNonfatal("Illegal number of components %d for tag %04x", Components, Tag);
622 // Extract useful components of tag
1082 long components,
1090 if (format == FMT_STRING && components == -1) {
1091 components = strlen((char*)value) + 1; // account for null terminator
1092 if (components & 1) ++components; // no odd lengths
1094 Put32u(Buffer+(*DirIndex) + 4, components); // Components
1095 printf("# components: %ld", components);
1080 writeExifTagAndData(int tag, int format, long components, long value, int valueInString, char* Buffer, int* DirIndex, int* DataWriteIndex) argument
[all...]
/external/webkit/WebCore/html/canvas/
H A DCanvasRenderingContext2D.cpp885 const CGFloat components[5] = { c, m, y, k, a }; local
887 CGColorRef shadowColor = CGColorCreate(colorSpace, components);
/external/webkit/WebCore/rendering/
H A DRenderThemeSafari.cpp107 const CGFloat* components = CGColorGetComponents(color); local
108 return makeRGBA(255 * components[0], 255 * components[1], 255 * components[2], 255 * components[3]);
/external/kernel-headers/original/linux/
H A Dnfs_xdr.h691 struct nfs4_string components[NFS4_PATHNAME_MAXCOMPONENTS]; member in struct:nfs4_pathname

Completed in 208 milliseconds