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

12

/external/chromium/base/
H A Dversion.h44 const std::vector<uint16>& components() const { return components_; } function in class:Version
/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/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/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/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/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/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/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/base/files/
H A Dfile_path_watcher_mac.cc31 // to path components. Unfortunately FSEvents appears to have an issue where the
150 std::vector<FilePath::StringType> components; local
151 path.GetComponents(&components);
153 if (components.size() < 1) {
160 for(std::vector<FilePath::StringType>::iterator i = components.begin();
161 i != components.end(); ++i) {
162 if (i == components.begin()) {
176 FilePath::StringType subdir = (i != (components.end() - 1)) ? *(i + 1) : "";
299 // Then check to see if new components in the path have been created.
300 // Repeat until no new components i
[all...]
/external/chromium/chrome/browser/extensions/
H A Dfile_manager_util.cc84 std::vector<FilePath::StringType> components; local
86 root_path.GetComponents(&components);
87 if (!components.size()) {
95 FilePath relative_path(components[components.size() - 1]);
/external/chromium/googleurl/src/
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/chromium/net/tools/dump_cache/
H A Durl_to_filename_encoder_unittest.cc35 std::vector<StringPiece> components; local
36 Tokenize(escaped_word, StringPiece("/"), &components);
37 for (size_t i = 0; i < components.size(); ++i) {
39 components[i].size());
/external/chromium/third_party/libjingle/source/talk/
H A Dmain.scons28 components = talk.Components("libjingle.scons") variable
46 BUILD_SCONSCRIPTS = 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/protobuf/src/google/protobuf/stubs/
H A Dstrutil.h164 // Split a string using a character delimiter. Append the components
174 // the C-string "delim" as a separator between components. There are two
179 LIBPROTOBUF_EXPORT void JoinStrings(const vector<string>& components,
182 inline string JoinStrings(const vector<string>& components, argument
185 JoinStrings(components, delim, &result);
/external/chromium/chrome/browser/autocomplete/
H A Dautocomplete.cc215 url_parse::Component* components[] = { local
224 for (size_t i = 0; i < arraysize(components); ++i) {
226 -static_cast<int>(http_scheme_prefix.size()), components[i]);
/external/freetype/src/sfnt/
H A Dttsbit.c1346 TT_SBit_Component components = NULL; local
1352 FT_NEW_ARRAY( components, num_components ) )
1360 for ( comp = components; count > 0; count--, comp++ )
1371 comp = components;
1403 FT_FREE( components );
/external/mesa3d/include/pixelflinger2/
H A Dpixelflinger2_format.h129 uint16_t components; // GGLFormatComponents member in struct:__anon7250
/external/opencv/cv/src/
H A Dcvmotempl.cpp417 CvSeq* components = 0; local
445 CV_CALL( components = cvCreateSeq( CV_SEQ_KIND_GENERIC, sizeof(CvSeq),
496 cvSeqPush( components, &comp );
514 return components;
/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...]

Completed in 4926 milliseconds

12