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

  /external/llvm/lib/IR/
ProfileSummary.cpp 72 std::vector<Metadata *> Components;
73 Components.push_back(getKeyValMD(Context, "ProfileFormat", KindStr[PSK]));
75 Components.push_back(getKeyValMD(Context, "TotalCount", getTotalCount()));
76 Components.push_back(getKeyValMD(Context, "MaxCount", getMaxCount()));
77 Components.push_back(
79 Components.push_back(
81 Components.push_back(getKeyValMD(Context, "NumCounts", getNumCounts()));
82 Components.push_back(getKeyValMD(Context, "NumFunctions", getNumFunctions()));
83 Components.push_back(getDetailedSummaryMD(Context));
84 return MDTuple::get(Context, Components);
    [all...]
  /external/pdfium/core/fpdfapi/page/
cpdf_meshstream.h 62 uint32_t Components() const { return m_nComponents; }
  /external/swiftshader/third_party/LLVM/lib/Support/
Triple.cpp 418 // Parse into components.
419 SmallVector<StringRef, 4> Components;
422 Components.push_back(Str.slice(First, Last));
431 if (Components.size() > 0)
432 Arch = ParseArch(Components[0]);
434 if (Components.size() > 1)
435 Vendor = ParseVendor(Components[1]);
437 if (Components.size() > 2)
438 OS = ParseOS(Components[2]);
440 if (Components.size() > 3
    [all...]
  /external/clang/lib/Frontend/
FrontendActions.cpp 238 SmallVector<StringRef, 16> Components;
241 Components.push_back(*PathIt);
243 for (auto It = Components.rbegin(), End = Components.rend(); It != End;
  /external/llvm/lib/Support/
Triple.cpp 638 SmallVector<StringRef, 4> Components;
639 StringRef(Data).split(Components, '-', /*MaxSplit*/ 3);
640 if (Components.size() > 0) {
641 Arch = parseArch(Components[0]);
642 SubArch = parseSubArch(Components[0]);
643 if (Components.size() > 1) {
644 Vendor = parseVendor(Components[1]);
645 if (Components.size() > 2) {
646 OS = parseOS(Components[2]);
647 if (Components.size() > 3)
    [all...]
  /external/llvm/tools/llvm-config/
llvm-config.cpp 43 // and required components for all of the available libraries.
45 // Not all components define a library, we also use "library groups" as a way to
70 /// \param VisitedComponents [in] [out] - The set of already visited components.
87 errs() << "Can't find component: '" << Name << "' in the map. Available components are: ";
102 // Only include non-installed components if requested.
133 /// components, in an order suitable for passing to a linker (that is, libraries
136 /// \param Components - The names of the components to find libraries for.
137 /// \param IncludeNonInstalled - Whether non-installed components should be
141 const std::vector<StringRef> &Components, bool IncludeNonInstalled
    [all...]
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
Triple.cpp 663 SmallVector<StringRef, 4> Components;
664 StringRef(Data).split(Components, '-', /*MaxSplit*/ 3);
665 if (Components.size() > 0) {
666 Arch = parseArch(Components[0]);
667 SubArch = parseSubArch(Components[0]);
668 if (Components.size() > 1) {
669 Vendor = parseVendor(Components[1]);
670 if (Components.size() > 2) {
671 OS = parseOS(Components[2]);
672 if (Components.size() > 3)
    [all...]
  /external/llvm/tools/sancov/
sancov.cc     [all...]
  /external/spirv-llvm/lib/SPIRV/libSPIRV/
SPIRVInstruction.h     [all...]
  /external/clang/include/clang/AST/
OpenMPClause.h     [all...]
  /external/clang/lib/AST/
VTableBuilder.cpp 551 /// Components - vcall and vbase offset components
553 VTableComponentVectorTy Components;
599 /// Methods for iterating over the components.
601 const_iterator components_begin() const { return Components.rbegin(); }
602 const_iterator components_end() const { return Components.rend(); }
664 int64_t OffsetIndex = -(int64_t)(3 + Components.size());
716 Components.push_back(
761 Components.push_back(
821 /// Components - The components of the vtable being built
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/AST/
OpenMPClause.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/AST/
OpenMPClause.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/AST/
OpenMPClause.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/
OpenMPClause.h     [all...]
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/clang/include/clang/AST/
OpenMPClause.h     [all...]
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/clang/include/clang/AST/
OpenMPClause.h     [all...]
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/clang/include/clang/AST/
OpenMPClause.h     [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/
OpenMPClause.h     [all...]
  /external/clang/lib/Serialization/
ASTReaderStmt.cpp     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
tuner.h 523 typedef class Components Components;
525 typedef struct Components Components;
    [all...]
  /external/clang/lib/CodeGen/
CGExpr.cpp     [all...]
CGOpenMPRuntime.cpp     [all...]
  /external/clang/lib/Sema/
TreeTransform.h     [all...]

Completed in 3371 milliseconds