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

12345

/external/jmonkeyengine/engine/src/android/com/jme3/renderer/android/
H A DAndroid22Workaround.java6 public static void glVertexAttribPointer(int location, int components, int format, boolean normalize, int stride, int offset){ argument
8 components,
/external/webkit/Source/WebCore/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...]
/external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/
H A DPredicates.java91 * components evaluates to {@code true}. The components are evaluated in
95 * components} is empty, the returned predicate will always evaluate to {@code
99 Iterable<? extends Predicate<? super T>> components) {
100 return new AndPredicate<T>(defensiveCopy(components));
105 * components evaluates to {@code true}. The components are evaluated in
109 * components} is empty, the returned predicate will always evaluate to {@code
112 public static <T> Predicate<T> and(Predicate<? super T>... components) { argument
113 return new AndPredicate<T>(defensiveCopy(components));
98 and( Iterable<? extends Predicate<? super T>> components) argument
137 or( Iterable<? extends Predicate<? super T>> components) argument
151 or(Predicate<? super T>.... components) argument
267 private final List<? extends Predicate<? super T>> components; field in class:Predicates.AndPredicate
269 AndPredicate(List<? extends Predicate<? super T>> components) argument
300 private final List<? extends Predicate<? super T>> components; field in class:Predicates.OrPredicate
302 OrPredicate(List<? extends Predicate<? super T>> components) argument
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/
H A DVariableTranslator.java44 private List<JavaExpression> components; field in class:VariableTranslator
60 assert components == null;
61 components = new ArrayList<JavaExpression>();
63 components = joinComponentsWithDots(components);
64 components = combineAdjacentStrings(components);
65 return concatenate(components);
67 components = null;
73 components
[all...]
/external/webkit/Source/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
245 TextRunComponents components; local
256 TextRunComponents components; local
294 cursorToX(const Font* font, const TextRunComponents& components, int width, bool rtl, int cursor) argument
323 TextRunComponents components; local
[all...]
/external/webkit/Source/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/webkit/Source/WebCore/fileapi/
H A DDOMFilePath.cpp45 String DOMFilePath::append(const String& base, const String& components) argument
47 return ensureDirectoryPath(base) + components;
94 Vector<String> components; local
96 path.split(DOMFilePath::separator, components);
97 for (size_t i = 0; i < components.size(); ++i) {
98 if (components[i] == ".")
100 if (components[i] == "..") {
105 canonicalized.append(components[i]);
/external/skia/src/animator/
H A DSkAnimate.h22 virtual int components();
H A DSkAnimateBase.h26 virtual int components();
32 int entries() { return fValues.count() / components(); }
/external/guava/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
330 private final List<? extends Predicate<? super T>> components; field in class:Predicates.AndPredicate
332 AndPredicate(List<? extends Predicate<? super T>> components) argument
363 private final List<? extends Predicate<? super T>> components; field in class:Predicates.OrPredicate
365 OrPredicate(List<? extends Predicate<? super T>> components) argument
[all...]
/external/mesa3d/src/glsl/
H A Dir_constant_expression.cpp49 for (unsigned c = 0; c < op0->type->components(); c++)
78 /* When iterating over a vector or matrix's components, we want to increase
83 unsigned components; local
85 components = op[0]->type->components();
87 components = op[1]->type->components();
110 for (unsigned c = 0; c < components; c++)
114 for (unsigned c = 0; c < components; c++)
124 for (unsigned c = 0; c < op[0]->type->components();
1222 unsigned components = op[0]->type->components(); local
[all...]
H A Dopt_structure_splitting.cpp27 * If a structure is only ever referenced by its components, then
28 * split those components out to individual variables so they can be
55 this->components = NULL;
66 ir_variable **components; member in class:variable_entry2
157 /* We'll split copies of a structure to copies of components, so don't
237 *deref = new(entry->mem_ctx) ir_dereference_variable(entry->components[i]);
270 new_lhs = new(mem_ctx) ir_dereference_variable(lhs_entry->components[i]);
278 new_rhs = new(mem_ctx) ir_dereference_variable(rhs_entry->components[i]);
328 * components.
336 entry->components
[all...]
/external/chromium/googleurl/src/
H A Durl_canon_ip.h41 // each component will be placed into |components| and it will return true.
47 // Not all components may exist. If there are only 3 components, for example,
60 url_parse::Component components[4]);
63 url_parse::Component components[4]);
75 // components in the IPv4 address.
H A Durl_canon_ip.cc60 url_parse::Component components[4]) {
71 components[cur_component] =
78 // Don't allow empty components (two dots in a row), except we may
102 // Fill in any unused components.
104 components[cur_component++] = url_parse::Component();
116 // out any input that is greater than 7 bits. The components are assumed
210 // The identified components. Not all may exist.
211 url_parse::Component components[4]; local
212 if (!FindIPv4Components(spec, host, components))
215 // Convert existing components t
58 DoFindIPv4Components(const CHAR* spec, const url_parse::Component& host, url_parse::Component components[4]) argument
673 FindIPv4Components(const char* spec, const url_parse::Component& host, url_parse::Component components[4]) argument
679 FindIPv4Components(const char16* spec, const url_parse::Component& host, url_parse::Component components[4]) argument
[all...]
/external/llvm/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)
/external/chromium/chrome/browser/
H A Dcrash_upload_list.cc73 std::vector<std::string> components; local
74 base::SplitString(*i, ',', &components);
76 if (components.size() != 2)
79 if (!base::StringToDouble(components[0], &seconds_since_epoch))
81 CrashInfo info(components[1], base::Time::FromDoubleT(seconds_since_epoch));
/external/jmonkeyengine/engine/src/core/com/jme3/scene/
H A DVertexBuffer.java304 protected int components = 0; field in class:VertexBuffer
307 * derived from components * format.getComponentSize()
453 * @param normalized Set to true if integer components should be converted
457 * the components will be converted to the range 0.0 - 1.0 by dividing
465 * @return True if integer components should be converted to the range 0-1.
487 * @return The number of components of the given {@link Format format} per
491 return components;
498 int elements = data.capacity() / components;
510 * @param components The number of components pe
516 setupData(Usage usage, int components, Format format, Buffer data) argument
850 createBuffer(Format format, int components, int numElements) argument
[all...]
H A DMesh.java606 for (int comp = 0; comp < vb.components; comp++){
613 for (int comp = 0; comp < vb.components; comp++){
621 for (int comp = 0; comp < vb.components; comp++){
628 for (int comp = 0; comp < vb.components; comp++){
634 for (int comp = 0; comp < vb.components; comp++){
648 //vb.setupData(vb.usage, vb.components, vb.format, null);
895 * @param components Number of components
902 public void setBuffer(Type type, int components, Format format, Buffer buf){ argument
906 vb.setupData(Usage.Dynamic, components, forma
929 setBuffer(Type type, int components, FloatBuffer buf) argument
933 setBuffer(Type type, int components, float[] buf) argument
937 setBuffer(Type type, int components, IntBuffer buf) argument
941 setBuffer(Type type, int components, int[] buf) argument
945 setBuffer(Type type, int components, ShortBuffer buf) argument
949 setBuffer(Type type, int components, byte[] buf) argument
953 setBuffer(Type type, int components, ByteBuffer buf) argument
957 setBuffer(Type type, int components, short[] buf) argument
[all...]
/external/webkit/Tools/Scripts/webkitpy/common/config/
H A Dcommittervalidator.py45 components = __file__.split(os.sep)
46 tools_index = components.index("Tools")
47 return os.sep.join(components[:tools_index])
/external/chromium/base/
H A Dversion.h44 const std::vector<uint16>& components() const { return components_; } function in class:Version
/external/webkit/Source/WebCore/platform/text/mac/
H A DHyphenationMac.mm48 RetainPtr<CFDictionaryRef> components(AdoptCF, CFLocaleCreateComponentsFromLocaleIdentifier(kCFAllocatorDefault, cfLocaleIdentifier.get()));
49 CFStringRef language = reinterpret_cast<CFStringRef>(CFDictionaryGetValue(components.get(), kCFLocaleLanguageCode));
/external/jmonkeyengine/engine/src/tools/jme3tools/optimize/
H A DGeometryBatchFactory.java65 private static void doTransformTangents(FloatBuffer inBuf, int offset, int components, FloatBuffer outBuf, Matrix4f transform) { argument
70 offset *= components;
72 for (int i = 0; i < inBuf.capacity() / components; i++) {
73 tan.x = inBuf.get(i * components + 0);
74 tan.y = inBuf.get(i * components + 1);
75 tan.z = inBuf.get(i * components + 2);
79 outBuf.put(offset + i * components + 0, tan.x);
80 outBuf.put(offset + i * components + 1, tan.y);
81 outBuf.put(offset + i * components + 2, tan.z);
83 if (components
[all...]
/external/icu4c/extra/uconv/
H A Dresfiles.mk6 # the character separating components of a filename.
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/
H A DHullCollisionShape.java89 int components = mesh.getVertexCount() * 3;
90 float[] pointsArray = new float[components];
91 for (int i = 0; i < components; i += 3) {
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/shapes/
H A DHullCollisionShape.java70 int components = mesh.getVertexCount() * 3;
71 float[] pointsArray = new float[components];
72 for (int i = 0; i < components; i += 3) {

Completed in 724 milliseconds

12345