/external/chromium/googleurl/src/ |
url_canon_internal.cc | 108 // for all components once all overrides have been prepared. 310 const url_parse::Parsed& repl_parsed = repl.components(); 344 const url_parse::Parsed& repl_parsed = repl.components(); 373 // pointers for affected components now that the buffer is finalized.
|
url_util.cc | 274 // 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
|
url_canon.h | 292 // 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/mesa3d/src/glsl/ |
ir_clone.cpp | 334 for (exec_node *node = this->components.head 339 c->components.push_tail(orig->clone(mem_ctx, NULL));
|
ir_validate.cpp | 344 assert(ir->operands[0]->type->components() == 345 ir->operands[1]->type->components());
|
glsl_types.cpp | 480 return this->components();
|
opt_constant_propagation.cpp | 144 for (unsigned int i = 0; i < type->components(); i++) {
|
/hardware/ti/omap3/omx/ |
Android.mk | 80 #call to common omx & system components
|
/external/chromium/chrome/browser/ |
pdf_unsupported_feature.cc | 254 if (version->components()[0] < kMinReaderVersionToUse)
|
/external/llvm/utils/lit/lit/ |
main.py | 189 # Skip files and virtual components. 190 components = [] 195 components.append(base) 197 components.reverse() 200 return ts, tuple(relative + tuple(components))
|
/external/skia/src/animator/ |
SkAnimateBase.cpp | 65 int SkAnimateBase::components() { function in class:SkAnimateBase
|
/external/webkit/Source/WebCore/rendering/ |
RenderThemeSafari.cpp | 108 const CGFloat* components = CGColorGetComponents(color); local 109 return makeRGBA(255 * components[0], 255 * components[1], 255 * components[2], 255 * components[3]); [all...] |
/external/chromium/base/ |
file_path.cc | 118 // 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.begin() [all...] |
/external/chromium/chrome/browser/autocomplete/ |
autocomplete.cc | 215 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]); [all...] |
/external/protobuf/src/google/protobuf/stubs/ |
strutil.cc | 144 // 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, 229 JoinStringsIterator(components.begin(), components.end(), delim, result); [all...] |
/packages/apps/VoiceDialer/src/com/android/voicedialer/ |
CommandRecognizerEngine.java | 329 // We used to store the entire list of components into the grammar. 1161 String[] components = meaning.trim().split(" "); local [all...] |
/external/proguard/src/proguard/gui/ |
ProGuardGUI.java | [all...] |
/external/v8/tools/ |
tickprocessor.js | 762 var components = name.substring(1, nameEndPos).split('@'); 763 components.reverse(); 764 return components.join('::');
|
/external/chromium/third_party/libjingle/source/talk/ |
main.scons | 10 # See talk.Components(...) for further info on file naming convention. 28 components = talk.Components("libjingle.scons") variable 46 BUILD_SCONSCRIPTS = components,
|
/system/core/libpixelflinger/ |
buffer.cpp | 181 if (f->components>=GGL_LUMINANCE &&
|
/build/tools/droiddoc/templates-sdk/ |
sdkpage.cs | 153 href="<?cs var:toroot ?>sdk/adding-components.html">Adding SDK Components</a>.</p>
|
/external/webkit/Source/WebCore/platform/mac/ |
HTMLConverter.mm | 478 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; [all...] |
/external/webkit/Tools/Scripts/ |
old-run-webkit-tests | [all...] |
/external/webkit/Source/WebCore/accessibility/mac/ |
AccessibilityObjectWrapper.mm | 363 CGFloat components[4]; 364 [rgbColor getRed:&components[0] green:&components[1] blue:&components[2] alpha:&components[3]]; 368 CGColorRef cgColor = CGColorCreate(cgColorSpace, components); [all...] |
/bionic/libc/kernel/common/sound/ |
asound.h | 692 unsigned char components[128]; member in struct:snd_ctl_card_info [all...] |