HomeSort by: relevance | last modified time | path
    Searched defs:Item (Results 1 - 25 of 31) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/DIA/
DIAEnumDebugStreams.cpp 27 CComPtr<IDiaEnumDebugStreamData> Item;
31 if (S_OK != Enumerator->Item(VarIndex, &Item))
34 return std::unique_ptr<IPDBDataStream>(new DIADataStream(Item));
38 CComPtr<IDiaEnumDebugStreamData> Item;
40 if (S_OK != Enumerator->Next(1, &Item, &NumFetched))
43 return std::unique_ptr<IPDBDataStream>(new DIADataStream(Item));
DIAEnumFrameData.cpp 25 CComPtr<IDiaFrameData> Item;
26 if (S_OK != Enumerator->Item(Index, &Item))
29 return std::unique_ptr<IPDBFrameData>(new DIAFrameData(Item));
33 CComPtr<IDiaFrameData> Item;
35 if (S_OK != Enumerator->Next(1, &Item, &NumFetched))
38 return std::unique_ptr<IPDBFrameData>(new DIAFrameData(Item));
DIAEnumInjectedSources.cpp 27 CComPtr<IDiaInjectedSource> Item;
28 if (S_OK != Enumerator->Item(Index, &Item))
31 return std::unique_ptr<IPDBInjectedSource>(new DIAInjectedSource(Item));
35 CComPtr<IDiaInjectedSource> Item;
37 if (S_OK != Enumerator->Next(1, &Item, &NumFetched))
40 return std::unique_ptr<IPDBInjectedSource>(new DIAInjectedSource(Item));
DIAEnumLineNumbers.cpp 27 CComPtr<IDiaLineNumber> Item;
28 if (S_OK != Enumerator->Item(Index, &Item))
31 return std::unique_ptr<IPDBLineNumber>(new DIALineNumber(Item));
35 CComPtr<IDiaLineNumber> Item;
37 if (S_OK != Enumerator->Next(1, &Item, &NumFetched))
40 return std::unique_ptr<IPDBLineNumber>(new DIALineNumber(Item));
DIAEnumSectionContribs.cpp 28 CComPtr<IDiaSectionContrib> Item;
29 if (S_OK != Enumerator->Item(Index, &Item))
33 new DIASectionContrib(Session, Item));
37 CComPtr<IDiaSectionContrib> Item;
39 if (S_OK != Enumerator->Next(1, &Item, &NumFetched))
43 new DIASectionContrib(Session, Item));
DIAEnumSourceFiles.cpp 27 CComPtr<IDiaSourceFile> Item;
28 if (S_OK != Enumerator->Item(Index, &Item))
31 return std::unique_ptr<IPDBSourceFile>(new DIASourceFile(Session, Item));
35 CComPtr<IDiaSourceFile> Item;
37 if (S_OK != Enumerator->Next(1, &Item, &NumFetched))
40 return std::unique_ptr<IPDBSourceFile>(new DIASourceFile(Session, Item));
DIAEnumSymbols.cpp 28 CComPtr<IDiaSymbol> Item;
29 if (S_OK != Enumerator->Item(Index, &Item))
32 std::unique_ptr<DIARawSymbol> RawSymbol(new DIARawSymbol(Session, Item));
37 CComPtr<IDiaSymbol> Item;
39 if (S_OK != Enumerator->Next(1, &Item, &NumFetched))
42 std::unique_ptr<DIARawSymbol> RawSymbol(new DIARawSymbol(Session, Item));
DIAEnumTables.cpp 25 CComPtr<IDiaTable> Item;
29 if (S_OK != Enumerator->Item(Var, &Item))
32 return std::unique_ptr<IPDBTable>(new DIATable(Item));
36 CComPtr<IDiaTable> Item;
38 if (S_OK != Enumerator->Next(1, &Item, &CeltFetched))
41 return std::unique_ptr<IPDBTable>(new DIATable(Item));
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
BinaryItemStream.h 22 static size_t length(const T &Item) = delete;
23 static ArrayRef<uint8_t> bytes(const T &Item) = delete;
46 const auto &Item = Items[*ExpectedIndex];
49 if (Size > Traits::length(Item))
51 Buffer = Traits::bytes(Item).take_front(Size);
78 for (const auto &Item : Items) {
79 uint32_t Len = Traits::length(Item);
FormatCommon.h 39 SmallString<64> Item;
40 raw_svector_ostream Stream(Item);
43 if (Amount <= Item.size()) {
44 S << Item;
48 size_t PadAmount = Amount - Item.size();
51 S << Item;
57 S << Item;
63 S << Item;
FormatVariadicDetails.h 33 T Item;
36 explicit provider_format_adapter(T &&Item) : Item(std::forward<T>(Item)) {}
39 format_provider<std::decay_t<T>>::format(Item, S, Options);
45 T Item;
48 explicit stream_operator_format_adapter(T &&Item)
49 : Item(std::forward<T>(Item)) {}
51 void format(llvm::raw_ostream &S, StringRef) override { S << Item; }
    [all...]
FormatAdapters.h 21 explicit FormatAdapter(T &&Item) : Item(std::forward<T>(Item)) {}
23 T Item;
33 AlignAdapter(T &&Item, AlignStyle Where, size_t Amount, char Fill)
34 : FormatAdapter<T>(std::forward<T>(Item)), Where(Where), Amount(Amount),
38 auto Adapter = detail::build_format_adapter(std::forward<T>(this->Item));
48 PadAdapter(T &&Item, size_t Left, size_t Right)
49 : FormatAdapter<T>(std::forward<T>(Item)), Left(Left), Right(Right) {}
52 auto Adapter = detail::build_format_adapter(std::forward<T>(this->Item));
    [all...]
ScopedPrinter.h 212 for (const auto &Item : List)
213 OS << LS << Item;
221 for (const auto &Item : List) {
223 Printer(OS, Item);
231 for (const auto &Item : List)
232 OS << LS << hex(Item);
OnDiskHashTable.h 60 /// A single item in the hash table.
61 class Item {
65 Item *Next;
68 Item(typename Info::key_type_ref Key, typename Info::data_type_ref Data,
76 llvm::SpecificBumpPtrAllocator<Item> BA;
82 Item *Head;
88 /// Insert an item into the appropriate hash bucket.
89 void insert(Bucket *Buckets, size_t Size, Item *E) {
102 for (Item *E = Buckets[I].Head; E;) {
103 Item *N = E->Next
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Basic/Targets/
Sparc.cpp 116 const SparcCPUInfo *Item = llvm::find_if(
118 if (Item == std::end(CPUInfo))
120 return Item->Generation;
124 const SparcCPUInfo *Item = llvm::find_if(
127 if (Item == std::end(CPUInfo))
129 return Item->Kind;
Hexagon.cpp 198 const CPUSuffix *Item = llvm::find_if(
200 if (Item == std::end(Suffixes))
202 return Item->Suffix.data();
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
RecordSerialization.h 58 Error consume(BinaryStreamReader &Reader, uint32_t &Item);
59 Error consume(BinaryStreamReader &Reader, int32_t &Item);
62 Error consume(BinaryStreamReader &Reader, StringRef &Item);
65 Error consume(StringRef &Data, uint32_t &Item);
69 template <typename T> Error consume(BinaryStreamReader &Reader, T *&Item) {
70 return Reader.readObject(Item);
74 serialize_conditional_impl(T &Item, U Func) : Item(Item), Func(Func) {}
79 return consume(Reader, Item);
    [all...]
CodeViewRecordIO.h 169 typename T::value_type Item;
170 if (auto EC = Mapper(*this, Item))
172 Items.push_back(Item);
184 for (auto &Item : Items) {
185 if (auto EC = Mapper(*this, Item))
  /src/external/apache2/llvm/dist/llvm/tools/llvm-rc/
ResourceScriptStmt.cpp 19 raw_ostream &operator<<(raw_ostream &OS, const IntOrString &Item) {
20 if (Item.IsInt)
21 return OS << Item.Data.Int;
23 return OS << Item.Data.String;
90 for (auto &Item : Definitions)
91 Item->log(OS);
256 for (auto &Item : Contents)
257 OS << Item << " ";
  /src/external/apache2/llvm/dist/clang/lib/Format/
FormatToken.cpp 110 unsigned Item = 0;
115 // If the previous token was one of our commas, we are now on the next item.
116 if (Item < Commas.size() && State.NextToken->Previous == Commas[Item]) {
118 ExtraSpaces += Format->ColumnSizes[Column] - ItemLengths[Item];
121 ++Item;
181 // The lengths of an item if it is put at the end of the line. This includes
213 // The comma is counted as part of the item when calculating the length.
222 // If there is a trailing comma in the list, the next item will start at the
223 // closing brace. Don't create an extra item for this
    [all...]
  /src/sys/external/bsd/gnu-efi/dist/lib/
print.c 70 POINTER Item;
104 // Current item being formatted
105 struct _pitem *Item;
981 PRINT_ITEM *Item;
984 // Get the length of the item
985 Item = ps->Item;
986 Item->Item.Index = 0;
987 while (Item->Item.Index < Item->FieldWidth)
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Analysis/
ConstructionContext.h 208 ConstructionContextItem Item;
210 ConstructionContextLayer(ConstructionContextItem Item,
212 : Parent(Parent), Item(Item) {}
216 create(BumpVectorContext &C, const ConstructionContextItem &Item,
219 const ConstructionContextItem &getItem() const { return Item; }
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
R600ControlFlowFinalizer.cpp 49 unsigned getSubEntrySize(CFStack::StackItem Item);
61 bool CFStack::branchStackContains(CFStack::StackItem Item) {
62 return llvm::is_contained(BranchStack, Item);
103 unsigned CFStack::getSubEntrySize(CFStack::StackItem Item) {
104 switch(Item) {
137 CFStack::StackItem Item = CFStack::ENTRY;
144 Item = CFStack::FIRST_NON_WQM_PUSH; // May not be required on Evergreen/NI
151 Item = CFStack::FIRST_NON_WQM_PUSH_W_FULL_ENTRY;
153 Item = CFStack::SUB_ENTRY;
155 Item = CFStack::ENTRY
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
VectorUtils.cpp 636 auto *Item = cast<MDNode>(AccGroupListOp.get());
637 assert(isValidAsAccessGroup(Item) && "List item must be an access group");
638 List.insert(Item);
693 auto *Item = cast<MDNode>(Node.get());
694 assert(isValidAsAccessGroup(Item) && "List item must be an access group");
695 if (AccGroupSet2.count(Item))
696 Intersection.push_back(Item);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
DwarfCompileUnit.cpp 959 auto Item = WorkList.back();
960 DbgVariable *Var = Item.getPointer();
961 bool visitedAllDependencies = Item.getInt();

Completed in 47 milliseconds

1 2