HomeSort by relevance Sort by last modified time
    Searched refs:Components (Results 1 - 21 of 21) sorted by null

  /external/jhead/
makernote.c 38 int Tag, Format, Components;
46 Components = Get32u(DirEntry+4);
54 if ((unsigned)Components > 0x10000){
55 ErrNonfatal("Illegal number of components %d for tag %04x", Components, Tag);
59 ByteCount = Components * BytesPerFormat[Format];
119 if (Tag == 1 && Components > 16){
127 if (Components > 7){
138 if (Components > 19 && ImageInfo.Distance <= 0) {
gpsinfo.c 143 unsigned Tag, Format, Components;
157 Components = Get32u(DirEntry+4);
166 ByteCount = Components * ComponentSize;
169 printf("GPS tag %x format %s #components %d componentsize %d bytecount %d", Tag, formatStr(Format), Components, ComponentSize,
325 if (++a >= Components) break;
exif.c 590 int Tag, Format, Components;
598 Components = Get32u(DirEntry+4);
606 if ((unsigned)Components > 0x10000){
607 ErrNonfatal("Illegal number of components %d for tag %04x", Components, Tag);
611 ByteCount = Components * BytesPerFormat[Format];
703 // Extract useful components of tag
    [all...]
  /external/llvm/tools/llvm-config/
llvm-config.cpp 41 // and required components for all of the available libraries.
43 // Not all components define a library, we also use "library groups" as a way to
52 /// \param VisitedComponents [in] [out] - The set of already visited components.
80 /// components, in an order suitable for passing to a linker (that is, libraries
83 /// \param Components - The names of the components to find libraries for.
85 /// are required to link the given components.
86 void ComputeLibsForComponents(const std::vector<StringRef> &Components,
97 // Visit the components.
98 for (unsigned i = 0, e = Components.size(); i != e; ++i)
    [all...]
  /external/llvm/lib/Support/
Triple.cpp 347 // Parse into components.
348 SmallVector<StringRef, 4> Components;
349 Str.split(Components, "-");
357 if (Components.size() > 0)
358 Arch = parseArch(Components[0]);
360 if (Components.size() > 1)
361 Vendor = parseVendor(Components[1]);
363 if (Components.size() > 2)
364 OS = parseOS(Components[2]);
366 if (Components.size() > 3
    [all...]
  /external/clang/lib/CodeGen/
CGRecordLayout.h 35 /// components.
83 /// The components to use to access the bit-field. We may need up to three
84 /// separate components to support up to i64 bit-field access (4 + 2 + 1 byte
88 AccessInfo Components[3];
93 /// The number of access components to use.
103 assert(NumComponents <= 3 && "invalid number of components!");
105 Components[i] = _Components[i];
143 return Components[Index];
CGVTables.h 67 /// \param Components - The vtable components; this is really an array of
70 const VTableComponent *Components,
CGRecordLayoutBuilder.cpp 264 // Compute the access components. The policy we use is to start by attempting
272 CGBitFieldInfo::AccessInfo Components[3];
325 assert(NumComponents < 3 && "Unexpected number of components!");
326 CGBitFieldInfo::AccessInfo &AI = Components[NumComponents++];
353 return CGBitFieldInfo(FieldSize, NumComponents, Components, IsSigned);
    [all...]
CGVTables.cpp 507 const VTableComponent *Components,
526 VTableComponent Component = Components[I];
  /external/clang/lib/AST/
VTableBuilder.cpp 552 /// Components - vcall and vbase offset components
554 VTableComponentVectorTy Components;
600 /// Methods for iterating over the components.
602 const_iterator components_begin() const { return Components.rbegin(); }
603 const_iterator components_end() const { return Components.rend(); }
665 int64_t OffsetIndex = -(int64_t)(3 + Components.size());
719 Components.push_back(
769 Components.push_back(
827 /// Components - The components of the vtable being built
    [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/
string-base64.js 114 throw Components.Exception('Corrupted base64 string');
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
string-base64.js 114 throw Components.Exception('Corrupted base64 string');
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_6/
shell.js 386 var preferences = Components.classes['@mozilla.org/preferences;1'];
393 getService(Components.interfaces.nsIPrefService);
443 var preferences = Components.classes['@mozilla.org/preferences;1'];
450 getService(Components.interfaces.nsIPrefService);
  /external/chromium/chrome/common/extensions/docs/examples/extensions/imageinfo/imageinfo/
exif.js 287 Components : {
527 EXIF.StringValues.Components[oEXIFTags[strTag][0]]
528 + EXIF.StringValues.Components[oEXIFTags[strTag][1]]
529 + EXIF.StringValues.Components[oEXIFTags[strTag][2]]
530 + EXIF.StringValues.Components[oEXIFTags[strTag][3]];
  /external/libvpx/examples/includes/geshi/geshi/
rails.php 132 'ActionController::Components',
133 'ActionController::Components::ClassMethods',
134 'ActionController::Components::InstanceMethods',
  /external/chromium/third_party/libjingle/source/talk/site_scons/
talk.py 152 def Components(*paths):
  /external/antlr/antlr-3.4/runtime/Ruby/lib/
antlr3.rb 39 into several main components, as well as a few additional utility components,
42 == Library Components
44 Not all components of the ANTLR3 library are necessary within ANTLR generated
45 code. Some components are only used within specific types of recognizers and
47 when requiring 'antlr3', only the essential core components are loaded
56 the most important components of the runtime library. loaded by default
184 # Set up non-essential components to be loaded on-demand
  /external/chromium/googleurl/src/
gurl_unittest.cc 66 // Test the basic creation and querying of components in a GURL. We assume
69 TEST(GURLTest, Components) {
138 // Given an invalid URL, we should still get most of the components.
  /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,
  /external/zlib/contrib/delphi/
ZLib.pas 3 { Borland Delphi Supplemental Components }
  /external/clang/lib/Sema/
TreeTransform.h     [all...]

Completed in 1114 milliseconds