HomeSort by relevance Sort by last modified time
    Searched refs:components (Results 1 - 25 of 171) sorted by null

1 2 3 4 5 6 7

  /frameworks/base/core/java/com/android/internal/util/
Predicates.java 31 * Returns a Predicate that evaluates to true iff each of its components
32 * evaluates to true. The components are evaluated in order, and evaluation
35 public static <T> Predicate<T> and(Predicate<? super T>... components) {
36 return and(Arrays.asList(components));
40 * Returns a Predicate that evaluates to true iff each of its components
41 * evaluates to true. The components are evaluated in order, and evaluation
44 * the behavior of this Predicate. If components is empty, the returned
47 public static <T> Predicate<T> and(Iterable<? extends Predicate<? super T>> components) {
48 return new AndPredicate(components);
52 * Returns a Predicate that evaluates to true iff any one of its components
81 private final Iterable<? extends Predicate<? super T>> components; field in class:Predicates.AndPredicate
98 private final Iterable<? extends Predicate<? super T>> components; field in class:Predicates.OrPredicate
    [all...]
  /external/jmonkeyengine/engine/src/android/com/jme3/renderer/android/
Android22Workaround.java 6 public static void glVertexAttribPointer(int location, int components, int format, boolean normalize, int stride, int offset){
8 components,
  /external/webkit/Source/WebCore/platform/graphics/cg/
ColorCG.cpp 47 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[1], components[2], components[3])
    [all...]
  /external/skia/src/animator/
SkAnimate.h 22 virtual int components();
  /frameworks/native/opengl/tests/EGLTest/
EGL_test.cpp 73 EGLint components[3]; local
75 success = eglGetConfigAttrib(mEglDisplay, config, EGL_RED_SIZE, &components[0]);
78 success = eglGetConfigAttrib(mEglDisplay, config, EGL_GREEN_SIZE, &components[1]);
81 success = eglGetConfigAttrib(mEglDisplay, config, EGL_BLUE_SIZE, &components[2]);
85 EXPECT_GE(components[0], 8);
86 EXPECT_GE(components[1], 8);
87 EXPECT_GE(components[2], 8);
139 EGLint components[4]; local
141 success = eglGetConfigAttrib(mEglDisplay, config, EGL_RED_SIZE, &components[0]);
144 success = eglGetConfigAttrib(mEglDisplay, config, EGL_GREEN_SIZE, &components[1])
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/
Predicates.java 91 * 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) {
113 return new AndPredicate<T>(defensiveCopy(components));
267 private final List<? extends Predicate<? super T>> components; field in class:Predicates.AndPredicate
300 private final List<? extends Predicate<? super T>> components; field in class:Predicates.OrPredicate
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/compiler/
VariableTranslator.java 44 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.add(new StringExpression(node.getWord().getText()))
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/wince/
FontWinCE.cpp 110 static int generateComponents(TextRunComponents* components, const Font &font, const TextRun &run)
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->append(TextRunComponent(run.characters() + start, run.length() - start
216 TextRunComponents components; local
245 TextRunComponents components; local
256 TextRunComponents components; local
323 TextRunComponents components; local
    [all...]
  /external/webkit/Source/WebCore/dom/
QualifiedName.cpp 38 static unsigned hash(const QualifiedNameComponents& components)
40 return hashComponents(components);
46 static void translate(QualifiedName::QualifiedNameImpl*& location, const QualifiedNameComponents& components, unsigned)
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/
DOMFilePath.cpp 45 String DOMFilePath::append(const String& base, const String& components)
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/guava/guava/src/com/google/common/base/
Predicates.java 94 * 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) {
116 return new AndPredicate<T>(defensiveCopy(components));
330 private final List<? extends Predicate<? super T>> components; field in class:Predicates.AndPredicate
363 private final List<? extends Predicate<? super T>> components; field in class:Predicates.OrPredicate
    [all...]
  /external/mesa3d/src/glsl/
ir_constant_expression.cpp 49 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(); c++
1222 unsigned components = op[0]->type->components(); local
    [all...]
  /external/chromium/googleurl/src/
url_canon_ip.h 41 // 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.
  /external/chromium/chrome/browser/
crash_upload_list.cc 73 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));
  /frameworks/native/libs/ui/
PixelFormat.cpp 39 uint8_t components; member in struct:android::Info
69 if (components == COMPONENT_YUV) {
111 info->components = COMPONENT_YUV;
138 info->components = i->components;
  /development/scripts/
symbol.py 242 components = func_regexp.match(line)
243 if components:
245 current_symbol_addr = int(components.group(1), 16)
246 current_symbol = components.group(2)
249 components = offset_regexp.match(current_symbol)
250 if components:
251 current_symbol = components.group(1)
252 offset = components.group(2)
258 components = asm_regexp.match(line)
259 if components
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/
VertexBuffer.java 304 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 per element
    [all...]
  /packages/apps/Nfc/src/com/android/nfc/
RegisteredComponentCache.java 133 void dump(ArrayList<ComponentInfo> components) {
134 for (ComponentInfo component : components) {
141 ArrayList<ComponentInfo> components = new ArrayList<ComponentInfo>(); local
146 parseComponentInfo(resolveInfo, components);
154 dump(components);
157 mComponents = components;
161 void parseComponentInfo(ResolveInfo info, ArrayList<ComponentInfo> components)
174 parser, info, components); local
183 ResolveInfo resolveInfo, ArrayList<ComponentInfo> components)
203 components.add(new ComponentInfo(resolveInfo, techs))
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
PurgeableBitmap.java 83 String[] components = labelSeq.toString().split("/"); local
84 if (components[components.length - 1].equals("Purgeable")) {
  /external/chromium/base/
version.h 44 const std::vector<uint16>& components() const { return components_; } function in class:Version
  /external/llvm/utils/lit/lit/
Test.py 38 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/webkit/Source/WebCore/platform/text/mac/
HyphenationMac.mm 48 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/
GeometryBatchFactory.java 65 private static void doTransformTangents(FloatBuffer inBuf, int offset, int components, FloatBuffer outBuf, Matrix4f transform) {
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 == 4)
111 int components; local
193 int components = compsForBuf[bufType]; local
215 int components = inBuf.getNumComponents(); local
    [all...]
  /frameworks/base/media/mca/filterfw/native/core/
shader_program.cpp 68 components(0),
618 int components,
620 if (expected_count != (value_size / components)) {
622 "(%d components), but received length of %d (%d components)!",
624 expected_count, components * expected_count,
625 value_size / components, value_size);
633 int components,
635 if (value_size % components != 0) {
638 components, value_size)
721 const int components = GLEnv::NumberOfComponents(type); local
772 const int components = GLEnv::NumberOfComponents(type); local
    [all...]
  /external/icu4c/extra/uconv/
resfiles.mk 6 # the character separating components of a filename.

Completed in 661 milliseconds

1 2 3 4 5 6 7