| /external/webkit/Tools/Scripts/webkitpy/common/config/ |
| committervalidator.py | 45 components = __file__.split(os.sep) 46 tools_index = components.index("Tools") 47 return os.sep.join(components[:tools_index])
|
| /external/chromium/googleurl/src/ |
| url_canon_ip.cc | 60 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 to digits. Values up t [all...] |
| /external/llvm/tools/llvm-config/ |
| llvm-config.in.in | 14 # Syntax: llvm-config OPTIONS... [COMPONENTS...] 91 my @components; 123 } elsif ($arg eq "--components") { 139 push @components, $arg; 146 # If no components were specified, default to 'all'. 147 if (@components == 0) { 148 push @components, 'all'; 152 @components = map lc, @components; 156 my @libs = expand_dependencies(@components); [all...] |
| /external/mesa3d/docs/OLD/ |
| MESA_packed_depth_stencil.spec | 91 RGB Color R, G, B components 92 RGBA Color R, G, B, A components 93 BGRA Color B, G, R, A components 94 ABGR_EXT Color A, B, G, R components 95 CMYK_EXT Color Cyan, Magenta, Yellow, Black components 96 CMYKA_EXT Color Cyan, Magenta, Yellow, Black, A components 98 LUMINANCE_ALPHA Color Luminance, A components 195 reference 4 tables of color components: PIXEL_MAP_I_TO_R,
|
| /external/guava/src/com/google/common/base/ |
| CharMatcher.java | 560 List<CharMatcher> components; 562 And(List<CharMatcher> components) { 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; 593 Or(List<CharMatcher> components) { 594 this.components = components; // Skip defensive copy (private [all...] |
| /external/chromium/chrome/browser/extensions/ |
| file_manager_util.cc | 84 std::vector<FilePath::StringType> components; local 86 root_path.GetComponents(&components); 87 if (!components.size()) { 95 FilePath relative_path(components[components.size() - 1]);
|
| /build/tools/ |
| adbs | 101 components = func_regexp.match(func_name) 102 if components is None: 104 return components.group(2)
|
| /external/skia/src/animator/ |
| SkAnimateActive.cpp | 176 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/platform/graphics/ca/win/ |
| PlatformCALayerWin.cpp | 488 CGFloat components[4]; local 489 value.getRGBA(components[0], components[1], components[2], components[3]); 492 RetainPtr<CGColorRef> color(AdoptCF, CGColorCreate(colorSpace.get(), components)); 516 CGFloat components[4]; local 517 value.getRGBA(components[0], components[1], components[2], components[3]) [all...] |
| /external/webkit/Source/WebCore/platform/graphics/ca/mac/ |
| PlatformCALayerMac.mm | 625 CGFloat components[4]; 626 value.getRGBA(components[0], components[1], components[2], components[3]); 629 RetainPtr<CGColorRef> color(AdoptCF, CGColorCreate(colorSpace.get(), components)); 655 CGFloat components[4]; 656 value.getRGBA(components[0], components[1], components[2], components[3]) [all...] |
| /hardware/ril/mock-ril/src/js/ |
| ctrl_server.js | 118 // For other commands, we need to dispatch to the corresponding components 126 for(i = 0; i < entry.components.length; i++) { 127 entry.components[i].add(req); 147 * the corresponding components. 150 * and contains an array of components this request 155 * ctrlServerDispatchTable[CTRL_CMD_xxx].components = Array of components 161 'components' : [simulatedRadioWorker], 165 'components' : [simulatedRadioWorker], 169 'components' : [simulatedRadioWorker] [all...] |
| mock_ril.js | 131 * Include the components 188 for(i = 0; i < entry.components.length; i++) { 189 entry.components[i].add(req); 213 * and contains an array of components this request 218 * DispatchTable[RIL_REQUEST_xxx].components = Array of components 224 'components' : [simulatedIccWorker], 228 'components' : [simulatedIccWorker], 232 'components' : [simulatedRadioWorker], 235 'components' : [simulatedRadioWorker] [all...] |
| /external/chromium/base/ |
| version_unittest.cc | 47 EXPECT_EQ(cases[i].parts, vers->components().size());
|
| /external/chromium/net/tools/dump_cache/ |
| url_to_filename_encoder_unittest.cc | 35 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/webkit/LayoutTests/fast/url/script-tests/ |
| ipv4.js | 19 // If there are not enough components, the last one should fill them out. 29 // Too many components means not an IP address.
|
| /frameworks/base/include/ui/ |
| PixelFormat.h | 88 enum { // components 124 uint8_t components; member in struct:android::PixelFormatInfo
|
| /external/chromium/base/files/ |
| file_path_watcher_mac.cc | 31 // 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 in the path are detected [all...] |
| /external/jhead/ |
| exif.c | 509 int Tag, Format, Components; 517 Components = Get32u(DirEntry+4); 525 if ((unsigned)Components > 0x10000){ 526 ErrNonfatal("Illegal number of components %d for tag %04x", Components, Tag); 530 ByteCount = Components * BytesPerFormat[Format]; 622 // Extract useful components of tag [all...] |
| /external/mesa3d/src/glsl/ |
| ir.cpp | 143 /* Either all the vector components are assigned or the variable is some 176 /* If the RHS is a vector type, assume that all components of the vector 529 * value_list must be a 1-for-1 match with the structure components. Each 538 value_list->move_nodes_to(& this->components); 550 * the components. For matrices, the scalar fills the components of the 560 /* Vector or scalar - fill all components */ 564 for (unsigned i = 0; i < type->components(); i++) 568 for (unsigned i = 0; i < type->components(); i++) 572 for (unsigned i = 0; i < type->components(); i++ 1154 const unsigned components[4] = { x, y, z, w }; local [all...] |
| /external/jpeg/ |
| rdtarga.c | 337 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/webkit/Tools/Scripts/ |
| test-webkitpy | 230 def _path_from_webkit_root(*components): 232 return os.path.join(webkit_root, *components)
|
| /external/mesa3d/include/pixelflinger2/ |
| pixelflinger2_format.h | 129 uint16_t components; // GGLFormatComponents member in struct:__anon8728
|
| /system/core/include/pixelflinger/ |
| format.h | 123 uint16_t components; // GGLFormatComponents member in struct:__anon25924
|
| /external/protobuf/src/google/protobuf/stubs/ |
| strutil.h | 164 // 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, 185 JoinStrings(components, delim, &result);
|
| /frameworks/base/core/java/com/android/internal/content/ |
| PackageMonitor.java | 102 public void onPackageChanged(String packageName, int uid, String[] components) { 249 String[] components = intent.getStringArrayExtra( local 254 onPackageChanged(pkg, uid, components);
|