/external/clang/utils/ |
FindSpecRefs | 202 ('7.23.1 Components of time', '338'), 483 ('20.2 Utility components', '457'), 861 components = '.'.join([str(p[0]) for p in path[1:]]) 870 linkStr = '<a href="%s#page=%d">%s</a> (pg.%d)'%(docData[0],page,components,page) 872 linkStr = components 873 if section == components: 878 print >>f, '\t\t<td valign=top>%s</td>'%(components,) [all...] |
/external/llvm/lib/Support/ |
PathV2.cpp | 280 // {C:/,//net/}, so get the first two components. 362 SmallVector<StringRef, 4> components; 363 if (!a.isTriviallyEmpty()) components.push_back(a.toStringRef(a_storage)); 364 if (!b.isTriviallyEmpty()) components.push_back(b.toStringRef(b_storage)); 365 if (!c.isTriviallyEmpty()) components.push_back(c.toStringRef(c_storage)); 366 if (!d.isTriviallyEmpty()) components.push_back(d.toStringRef(d_storage)); 368 for (SmallVectorImpl<StringRef>::const_iterator i = components.begin(), 369 e = components.end();
|
/external/clang/tools/scan-view/ |
ScanView.py | 654 # Split the components and strip the root prefix. 655 components = path.split('/')[1:] 658 if components: 659 name = components[0] 660 if len(components)==2: 662 return self.send_report(components[1]) 664 return self.send_open_report(components[1]) 665 elif len(components)==1: 686 if components[-1] == '': 687 components[-1] = 'index.html [all...] |
/external/webkit/Tools/Scripts/webkitpy/thirdparty/ |
mock.py | 200 components = target.split('.') 201 import_path = components.pop(0) 204 for comp in components:
|
/external/mesa3d/src/glsl/ |
ast_function.cpp | 299 assert(component < src->type->components()); 501 * all components of the vector. 504 * scalars. The components of the constructor parameters are assigned 507 const unsigned lhs_components = type->components(); 529 unsigned rhs_components = param->type->components(); 531 /* Do not try to assign more components to the vector than it has! 566 /* Advance the component index by the number of components 587 unsigned rhs_components = param->type->components(); 589 /* Do not try to assign more components to the vector than it has! 614 /* Advance the component index by the number of components that wer [all...] |
glsl_types.h | 172 * this function gets the scalar type of the individual components. For 212 unsigned components() const function in struct:glsl_type 218 * Calculate the number of components slots required to hold this type
|
ir_print_visitor.cpp | 322 ir_constant *value = (ir_constant *) ir->components.get_head(); 331 for (unsigned i = 0; i < ir->type->components(); i++) {
|
ir.h | 275 * occupies. The count is in units of floating point components. 664 * - Assigning to all components of a vector 800 * Returns single boolean for whether all components of operands[0] 801 * equal the components of operands[1]. 1252 * Number of components in the swizzle. 1257 * Does the swizzle contain duplicate components? 1259 * L-value swizzles cannot contain duplicate components. 1270 ir_swizzle(ir_rvalue *val, const unsigned *components, unsigned count); 1553 exec_list components; member in class:ir_constant [all...] |
/external/skia/src/animator/ |
SkAnimateField.cpp | 39 int SkAnimate::components() { function in class:SkAnimate 114 fComponents <<= 2; // four color components
|
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/ |
LayoutTestsAutoTest.java | 174 String[] components = line.split(" "); local 175 mTestList.add(components[0]); 176 mTestListIgnoreResult.add(components.length > 1 && components[1].equals("IGNORE_RESULT"));
|
/external/mesa3d/docs/ |
MESA_texture_signed_rgba.spec | 122 5) How will signed components resulting from RGBA8_SNORM texture 135 appear as expected with unclamped signed components as a result 142 fixed-point textures with signed components and relaxed the 151 incoming, intermediate, and output color components to [0,1].
|
/external/llvm/utils/ |
llvmbuild | 191 help=("Force reconfigure of all components")) 203 for component in components: 221 # back through path components until it finds unique component names 235 components = { c for c in bases } 237 if len(components) > 1 or len(components) == len(bases): 239 for c in components: 623 for component in components: 715 #components = ["llvm", "llvm-gcc", "llvm2", "gcc", "dragonegg"] 716 components = ["llvm", "llvm2", "gcc", "dragonegg" [all...] |
/external/skia/src/pdf/ |
SkPDFShader.cpp | 52 @param curColor[components] The current color components. 53 @param prevColor[components] The previous color components. 57 SkScalar* prevColor, int components, 60 SkAutoSTMalloc<4, SkScalar> multiplierAlloc(components); 62 for (int i = 0; i < components; i++) { 68 // and dupInput[i .. components] = false. 69 SkAutoSTMalloc<4, bool> dupInputAlloc(components); 71 dupInput[components - 1] = false [all...] |
/external/chromium/base/ |
file_path.h | 142 // Null-terminated array of separators used to separate components in 181 // Returns a vector of all of the components of the provided path. It is 184 void GetComponents(std::vector<FilePath::StringType>* components) const; 261 // paths is well defined, it can handle ASCII path components as well.
|
/external/opencv/cv/src/ |
cvmotempl.cpp | 417 CvSeq* components = 0; local 445 CV_CALL( components = cvCreateSeq( CV_SEQ_KIND_GENERIC, sizeof(CvSeq), 496 cvSeqPush( components, &comp ); 514 return components;
|
/external/valgrind/tsan/ |
Makefile | 34 -I$(PIN_ROOT)/extras/xed2-$(PIN_ARCH)/include -I$(PIN_ROOT)/extras/components/include
|
/build/tools/droiddoc/templates-pdk/ |
customizations.cs | 2 left nav (toc) that gets placed on all pages, for the open source site. See also the components/
|
/external/chromium/chrome/browser/resources/net_internals/ |
dnsview.js | 27 // Hook up the UI components.
|
proxyview.js | 28 // Hook up the UI components.
|
/external/webkit/LayoutTests/fast/url/script-tests/ |
ipv6.js | 62 // Too many components means not an IP address. Similarly with too few if using IPv4 compat or mapped addresses.
|
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/x509/ |
X509Name.java | 1196 Vector components = new Vector(); local [all...] |
/external/bluetooth/glib/gio/ |
gcontenttype.c | 1360 gchar **components; member in struct:__anon1851 1374 if (strcmp (name, e->components[depth]) == 0) [all...] |
/external/chromium/chrome/browser/ui/gtk/ |
gtk_theme_service.cc | 157 // all color components) should be interpreted as this color being gray and 485 int components[3] = { 0 }; local 493 components[c] += data[3 * (kWidth / 3 + y * kWidth) + c]; 507 color->red = components[0] * 65535 / (255 * (kHeight - 4)); 508 color->green = components[1] * 65535 / (255 * (kHeight - 4)); 509 color->blue = components[2] * 65535 / (255 * (kHeight - 4)); [all...] |
/external/freetype/src/sfnt/ |
ttsbit.c | 1346 TT_SBit_Component components = NULL; local [all...] |
/external/webkit/Tools/Scripts/ |
prepare-ChangeLog | 522 my @components = split /:/; 523 pop @components if (scalar @components > 1); 524 $_ = (join ':', map {s/.*[^[:word:]]//; scalar $_;} @components) . ':'; [all...] |