| /src/external/apache2/llvm/dist/llvm/lib/IR/ |
| ProfileSummary.cpp | 84 SmallVector<Metadata *, 16> Components; 85 Components.push_back(getKeyValMD(Context, "ProfileFormat", KindStr[PSK])); 86 Components.push_back(getKeyValMD(Context, "TotalCount", getTotalCount())); 87 Components.push_back(getKeyValMD(Context, "MaxCount", getMaxCount())); 88 Components.push_back( 90 Components.push_back( 92 Components.push_back(getKeyValMD(Context, "NumCounts", getNumCounts())); 93 Components.push_back(getKeyValMD(Context, "NumFunctions", getNumFunctions())); 95 Components.push_back( 98 Components.push_back(getKeyFPValMD(Context, "PartialProfileRatio" [all...] |
| DebugInfoMetadata.cpp | 143 std::array<unsigned, 3> Components = {BD, DF, CI}; 145 // We use RemainingWork to figure out if we have no remaining components to 148 // Since any of the input components is at most 32 bits, their sum will be 150 RemainingWork = std::accumulate(Components.begin(), Components.end(), RemainingWork); 156 unsigned C = Components[I++]; 164 // checking equivalence of components before & after encoding. Alternatively,
|
| AutoUpgrade.cpp | 4310 SmallVector<StringRef, 5> Components; 4311 Section.split(Components, ','); 4316 for (auto Component : Components)
|
| /src/external/apache2/llvm/dist/llvm/lib/Support/ |
| Triple.cpp | 769 SmallVector<StringRef, 4> Components; 770 StringRef(Data).split(Components, '-', /*MaxSplit*/ 3); 771 if (Components.size() > 0) { 772 Arch = parseArch(Components[0]); 773 SubArch = parseSubArch(Components[0]); 774 if (Components.size() > 1) { 775 Vendor = parseVendor(Components[1]); 776 if (Components.size() > 2) { 777 OS = parseOS(Components[2]); 778 if (Components.size() > 3) [all...] |
| VirtualFileSystem.cpp | 1024 /// Removes leading "./" as well as path components like ".." and ".". 1637 // if 'name' contains multiple components, create implicit directory entries 1851 // remaining path components in the provided iterator. 1900 "Paths should not contain traversal components"); 2136 SmallVector<StringRef, 8> Components; 2137 Components.push_back("/"); 2138 getVFSEntries(RootResult->E, Components, CollectedEntries);
|
| /src/external/apache2/llvm/dist/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 74 /// \param VisitedComponents [in] [out] - The set of already visited components. 91 errs() << "Can't find component: '" << Name << "' in the map. Available components are: "; 106 // Only include non-installed components if requested. 156 /// components, in an order suitable for passing to a linker (that is, libraries 159 /// \param Components - The names of the components to find libraries for. 160 /// \param IncludeNonInstalled - Whether non-installed components should be 164 const std::vector<StringRef> &Components, bool IncludeNonInstalled [all...] |
| /src/external/apache2/llvm/dist/clang/lib/AST/ |
| VTableBuilder.cpp | 552 /// Components - vcall and vbase offset components 554 VTableComponentVectorTy Components; 602 /// Methods for iterating over the components. 604 const_iterator components_begin() const { return Components.rbegin(); } 605 const_iterator components_end() const { return Components.rend(); } 667 int64_t OffsetIndex = -(int64_t)(3 + Components.size()); 723 Components.push_back( 768 Components.push_back( 827 /// Components - The components of the vtable being built [all...] |
| /src/external/apache2/llvm/dist/clang/lib/Tooling/ |
| InterpolatingCompilationDatabase.cpp | 346 Components.emplace_back(*Dir, I); 350 llvm::sort(Components); 416 Award(1, indexLookup</*Prefix=*/false>(Dir, Components)); 507 std::vector<SubstringAndIndex> Components; // Last path components.
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Demangle/ |
| MicrosoftDemangleNodes.h | 531 NodeArrayNode *Components = nullptr; 534 Node *LastComponent = Components->Nodes[Components->Count - 1];
|
| /src/external/apache2/llvm/dist/clang/lib/Frontend/ |
| FrontendAction.cpp | 386 SmallVector<StringRef, 16> Components; 389 Components.push_back(*PathIt); 392 for (auto It = Components.rbegin(), End = Components.rend(); It != End;
|
| /src/external/apache2/llvm/dist/clang/lib/Lex/ |
| PPDirectives.cpp | 1638 // Given a vector of path components and a string containing the real 1641 static bool trySimplifyPath(SmallVectorImpl<StringRef> &Components, 1649 for (auto &Component : llvm::reverse(Components)) { 1657 // If these path components differ by more than just case, then we 2131 SmallVector<StringRef, 16> Components(llvm::sys::path::begin(Name), 2149 assert(Components.size() >= 3 && "should have drive, backslash, name"); 2150 assert(Components[0].size() == 2 && "should start with drive"); 2151 assert(Components[0][1] == ':' && "should have colon"); 2157 if (trySimplifyPath(Components, RealPathName)) { 2166 for (auto Component : Components) { [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Demangle/ |
| MicrosoftDemangle.cpp | 328 QN->Components = Arena.alloc<NodeArrayNode>(); 329 QN->Components->Count = 1; 330 QN->Components->Nodes = Arena.allocArray<Node *>(1); 331 QN->Components->Nodes[0] = Identifier; 1501 if (QN->Components->Count < 2) { 1507 Node *ClassNode = QN->Components->Nodes[QN->Components->Count - 2]; 1597 QN->Components = nodeListToNodeArray(Arena, Head, Count);
|
| MicrosoftDemangleNodes.cpp | 628 Components->output(OS, Flags, "::");
|
| /src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| CGOpenMPRuntime.cpp | 7208 OMPClauseMappableExprCommon::MappableExprComponentListRef Components; 7220 OMPClauseMappableExprCommon::MappableExprComponentListRef Components, 7227 : Components(Components), MapType(MapType), MapModifiers(MapModifiers), 7260 /// Map between device pointer declarations and their expression components. 7436 /// map type, map or motion modifiers, and expression components. 7438 /// components is the first associated with a capture. 7442 OMPClauseMappableExprCommon::MappableExprComponentListRef Components, 7623 // Scan the components from the base to the complete expression. 7624 auto CI = Components.rbegin() [all...] |
| /src/external/apache2/llvm/dist/llvm/tools/sancov/ |
| sancov.cpp | 1083 SmallVector<StringRef, 2> Components; 1089 auto Ok = SancovFileRegex.match(ShortFileName, &Components); 1096 auto Iter = ObjFiles.find(std::string(Components[1]));
|
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/ |
| NewGVN.cpp | 191 TarjanSCC() : Components(1) {} 203 return Components[ComponentID]; 224 unsigned ComponentID = Components.size(); 225 Components.resize(Components.size() + 1); 226 auto &Component = Components.back(); 251 // Store the components as vector of ptr sets, because we need the topo order 253 SmallVector<SmallPtrSet<const Value *, 8>, 8> Components;
|
| /src/external/apache2/llvm/dist/clang/include/clang/AST/ |
| OpenMPClause.h | 4870 // List of components of an expression. This first one is the whole 4901 /// Total number of expression components. 4925 /// Total number of components in this clause. 4942 /// components. 4952 /// NumComponents: total number of expression components in the clause. 5049 /// Get the components that are in the trailing objects of the class. 5057 /// Get the components that are in the trailing objects of the class. 5065 /// Set the components that are in the trailing objects of the class. 5068 void setComponents(ArrayRef<MappableComponent> Components, 5070 assert(Components.size() == NumComponents & [all...] |
| /src/external/apache2/llvm/dist/clang/lib/Serialization/ |
| ASTReader.cpp | 1409 // Skip the common path components from filePath and OriginalDir. 12550 SmallVector<OMPClauseMappableExprCommon::MappableComponent, 32> Components; 12551 Components.reserve(TotalComponents); 12555 Components.emplace_back(AssociatedExprPr, AssociatedDecl, 12558 C->setComponents(Components, ListSizes); 12673 SmallVector<OMPClauseMappableExprCommon::MappableComponent, 32> Components; 12674 Components.reserve(TotalComponents); 12679 Components.emplace_back(AssociatedExprPr, AssociatedDecl, IsNonContiguous); 12681 C->setComponents(Components, ListSizes); 12729 SmallVector<OMPClauseMappableExprCommon::MappableComponent, 32> Components; [all...] |
| /src/external/gpl3/binutils/dist/zlib/contrib/delphi/ |
| ZLib.pas | 3 { Borland Delphi Supplemental Components }
|
| /src/external/gpl3/binutils.old/dist/zlib/contrib/delphi/ |
| ZLib.pas | 3 { Borland Delphi Supplemental Components }
|
| /src/external/gpl3/gdb.old/dist/zlib/contrib/delphi/ |
| ZLib.pas | 3 { Borland Delphi Supplemental Components }
|
| /src/external/gpl3/gdb/dist/zlib/contrib/delphi/ |
| ZLib.pas | 3 { Borland Delphi Supplemental Components }
|
| /src/common/dist/zlib/contrib/delphi/ |
| ZLib.pas | 3 { Borland Delphi Supplemental Components }
|
| /src/external/apache2/llvm/dist/clang/lib/Sema/ |
| SemaOpenMP.cpp | 118 OMPClauseMappableExprCommon::MappableExprComponentLists Components; 954 MI->second.Components) 976 MI->second.Components) 983 /// declaration and initialize it with the provided list of components. 986 OMPClauseMappableExprCommon::MappableExprComponentListRef Components, 989 // Create new entry and append the new components there. 990 MEC.Components.resize(MEC.Components.size() + 1); 991 MEC.Components.back().append(Components.begin(), Components.end()) [all...] |
| TreeTransform.h | 2475 ArrayRef<Sema::OffsetOfComponent> Components, 2477 return getSema().BuildBuiltinOffsetOf(OperatorLoc, Type, Components, 10379 // Transform all of the components into components similar to what the 10387 SmallVector<Component, 4> Components; 10421 Components.push_back(Comp); 10432 Components, E->getRParenLoc());
|