Searched refs:components (Results 76 - 100 of 120) sorted by relevance

12345

/external/skia/src/animator/
H A DSkAnimateBase.cpp57 int SkAnimateBase::components() { function in class:SkAnimateBase
/external/webkit/Source/WebCore/rendering/
H A DRenderThemeSafari.cpp108 const CGFloat* components = CGColorGetComponents(color); local
109 return makeRGBA(255 * components[0], 255 * components[1], 255 * components[2], 255 * components[3]);
/external/chromium/base/
H A Dfile_path.cc118 // For example, foo.tar.gz or foo.tar.Z would have extension components of
208 void FilePath::GetComponents(std::vector<StringType>* components) const {
209 DCHECK(components);
210 if (!components)
212 components->clear();
220 // Capture path components.
240 *components = std::vector<StringType>(ret_val.rbegin(), ret_val.rend());
504 std::vector<StringType> components; local
505 GetComponents(&components);
507 std::vector<StringType>::const_iterator it = components
[all...]
/external/mesa3d/src/glsl/
H A Dir_validate.cpp344 assert(ir->operands[0]->type->components() ==
345 ir->operands[1]->type->components());
H A Dglsl_types.cpp480 return this->components();
H A Dopt_constant_propagation.cpp144 for (unsigned int i = 0; i < type->components(); i++) {
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
H A DBitSet.pm305 A separate section listing the public components of the module's interface.
/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/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/
H A DDB_Results.java208 * The list of all the components stored in the database.
250 * The list of known Eclipse components.
471 System.err.println(scenarioName+" does not belongs to a known Eclipse component. So use scenario prefix "+componentName+" as component name by default and add it to the know components"); //$NON-NLS-1$
478 * Get all components read from database.
485 String[] components = new String[length];
486 System.arraycopy(COMPONENTS, 0, components, 0, length);
487 return components;
1242 * as this does not happen so often (e.g. eclipse only has 10 components).
/external/protobuf/src/google/protobuf/stubs/
H A Dstrutil.cc144 // Split a string using a character delimiter. Append the components
194 // This merges a vector of string components with delim inserted
195 // as separaters between components.
226 void JoinStrings(const vector<string>& components, argument
229 JoinStringsIterator(components.begin(), components.end(), delim, result);
/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/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/121/1/.cp/lib/
H A Dapitooling-ant.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium/googleurl/src/
H A Durl_util.cc274 // but almost no sane rule for dealing with the components individually would
289 replacements.components().scheme,
313 // components for validity. This is because we can't fail if DoCanonicalize
H A Durl_canon.h292 // append slashes which will be needed before any authority components for most
310 // The components for the username and password refer to ranges in the
312 // is legal as long as the two components don't overlap.
355 // components in the input text, from 1 to 4. If |family| is not IPV4,
507 // canonicalizing individual components.
574 // component remplacement (different strings for different components) can be
579 // components identify offsets within these strings, so that they can all be
587 // Constructor normally used by callers wishing to replace components. This
589 // override the components they want to replace.
601 // Constructor normally used internally to initialize all the components t
728 const url_parse::Parsed& components() const { return components_; } function in class:url_canon::Replacements
[all...]
/external/chromium/third_party/libjingle/source/talk/
H A Dmain.scons28 components = talk.Components("libjingle.scons") variable
46 BUILD_SCONSCRIPTS = components,
/external/libvorbis/doc/
H A D01-introduction.tex142 \includegraphics[width=\textwidth]{components}
150 configuration is in the context of specific components.
176 components; the submap list is internal and specific to a mapping.
236 configured by residue instance. As with the floor components, the
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/
H A Dperformanceui.jar ... plugin.properties .classpath html/builds.html html/components.html html/images/builds-generate-baseline. ...
/external/webkit/Source/WebCore/platform/mac/
H A DHTMLConverter.mm478 NSArray *components = [[shadowStyle substringWithRange:NSMakeRange(NSMaxRange(openParenRange), closeParenRange.location - NSMaxRange(openParenRange))] componentsSeparatedByString:@","];
479 if ([components count] >= 3) {
480 CGFloat red = [[components objectAtIndex:0] floatValue] / 255, green = [[components objectAtIndex:1] floatValue] / 255, blue = [[components objectAtIndex:2] floatValue] / 255, alpha = ([components count] >= 4) ? [[components objectAtIndex:3] floatValue] / 255 : 1;
/external/webkit/Tools/Scripts/
H A Dold-run-webkit-tests2207 my @components = split('/', $directory);
2210 if (!defined($components[0]) || $lastComponents[0] ne $components[0]) {
2213 shift @components;
2229 foreach (@components) {
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.pde.api.tools_1.0.202.v20100820_r361.jar ... .tools.internal.provisional.model.IApiComponent[] components int i int max org.eclipse.pde. ...
/external/webkit/Source/WebCore/accessibility/mac/
H A DAccessibilityObjectWrapper.mm363 CGFloat components[4];
364 [rgbColor getRed:&components[0] green:&components[1] blue:&components[2] alpha:&components[3]];
368 CGColorRef cgColor = CGColorCreate(cgColorSpace, components);
/external/jpeg/
H A Dltmain.sh821 $echo "$modename: output file \`$output' must have no directory components" 1>&2
2378 The rest of the components are interpreted as arguments to that command (only
2392 The following components of LINK-COMMAND are treated specially:
/external/kernel-headers/original/linux/
H A Dnfs_xdr.h691 struct nfs4_string components[NFS4_PATHNAME_MAXCOMPONENTS]; member in struct:nfs4_pathname
/external/kernel-headers/original/sound/
H A Dasound.h713 unsigned char components[128]; /* card components / fine identification, delimited with one space (AC97 etc..) */ member in struct:snd_ctl_card_info
/external/qemu/distrib/jpeg-6b/
H A Dltmain.sh821 $echo "$modename: output file \`$output' must have no directory components" 1>&2
2378 The rest of the components are interpreted as arguments to that command (only
2392 The following components of LINK-COMMAND are treated specially:

Completed in 517 milliseconds

12345