/dalvik/dx/src/com/android/dx/cf/code/ |
LocalVariableList.java | 84 Item item = descriptorList.get(i); local 85 Item signatureItem = signatureList.itemToLocal(item); 88 item = item.withSignature(signature); 90 result.set(i, item); 107 * Gets the indicated item. 109 * @param n {@code >= 0;} which item 110 * @return {@code null-ok;} the indicated item [all...] |
/external/llvm/lib/DebugInfo/PDB/DIA/ |
DIAEnumDebugStreams.cpp | 28 CComPtr<IDiaEnumDebugStreamData> Item; 32 if (S_OK != Enumerator->Item(VarIndex, &Item)) 35 return std::unique_ptr<IPDBDataStream>(new DIADataStream(Item)); 39 CComPtr<IDiaEnumDebugStreamData> Item; 41 if (S_OK != Enumerator->Next(1, &Item, &NumFetched)) 44 return std::unique_ptr<IPDBDataStream>(new DIADataStream(Item));
|
DIAEnumSourceFiles.cpp | 28 CComPtr<IDiaSourceFile> Item; 29 if (S_OK != Enumerator->Item(Index, &Item)) 32 return std::unique_ptr<IPDBSourceFile>(new DIASourceFile(Session, Item)); 36 CComPtr<IDiaSourceFile> Item; 38 if (S_OK != Enumerator->Next(1, &Item, &NumFetched)) 41 return std::unique_ptr<IPDBSourceFile>(new DIASourceFile(Session, Item));
|
DIAEnumSymbols.cpp | 29 CComPtr<IDiaSymbol> Item; 30 if (S_OK != Enumerator->Item(Index, &Item)) 33 std::unique_ptr<DIARawSymbol> RawSymbol(new DIARawSymbol(Session, Item)); 38 CComPtr<IDiaSymbol> Item; 40 if (S_OK != Enumerator->Next(1, &Item, &NumFetched)) 43 std::unique_ptr<DIARawSymbol> RawSymbol(new DIARawSymbol(Session, Item));
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/PDB/DIA/ |
DIAEnumDebugStreams.cpp | 28 CComPtr<IDiaEnumDebugStreamData> Item; 32 if (S_OK != Enumerator->Item(VarIndex, &Item)) 35 return std::unique_ptr<IPDBDataStream>(new DIADataStream(Item)); 39 CComPtr<IDiaEnumDebugStreamData> Item; 41 if (S_OK != Enumerator->Next(1, &Item, &NumFetched)) 44 return std::unique_ptr<IPDBDataStream>(new DIADataStream(Item));
|
DIAEnumInjectedSources.cpp | 29 CComPtr<IDiaInjectedSource> Item; 30 if (S_OK != Enumerator->Item(Index, &Item)) 33 return std::unique_ptr<IPDBInjectedSource>(new DIAInjectedSource(Item)); 37 CComPtr<IDiaInjectedSource> Item; 39 if (S_OK != Enumerator->Next(1, &Item, &NumFetched)) 42 return std::unique_ptr<IPDBInjectedSource>(new DIAInjectedSource(Item));
|
DIAEnumSectionContribs.cpp | 29 CComPtr<IDiaSectionContrib> Item; 30 if (S_OK != Enumerator->Item(Index, &Item)) 34 new DIASectionContrib(Session, Item)); 38 CComPtr<IDiaSectionContrib> Item; 40 if (S_OK != Enumerator->Next(1, &Item, &NumFetched)) 44 new DIASectionContrib(Session, Item));
|
DIAEnumSourceFiles.cpp | 28 CComPtr<IDiaSourceFile> Item; 29 if (S_OK != Enumerator->Item(Index, &Item)) 32 return std::unique_ptr<IPDBSourceFile>(new DIASourceFile(Session, Item)); 36 CComPtr<IDiaSourceFile> Item; 38 if (S_OK != Enumerator->Next(1, &Item, &NumFetched)) 41 return std::unique_ptr<IPDBSourceFile>(new DIASourceFile(Session, Item));
|
DIAEnumSymbols.cpp | 29 CComPtr<IDiaSymbol> Item; 30 if (S_OK != Enumerator->Item(Index, &Item)) 33 std::unique_ptr<DIARawSymbol> RawSymbol(new DIARawSymbol(Session, Item)); 38 CComPtr<IDiaSymbol> Item; 40 if (S_OK != Enumerator->Next(1, &Item, &NumFetched)) 43 std::unique_ptr<DIARawSymbol> RawSymbol(new DIARawSymbol(Session, Item));
|
DIAEnumTables.cpp | 27 CComPtr<IDiaTable> Item; 31 if (S_OK != Enumerator->Item(Var, &Item)) 34 return std::unique_ptr<IPDBTable>(new DIATable(Item)); 38 CComPtr<IDiaTable> Item; 40 if (S_OK != Enumerator->Next(1, &Item, &CeltFetched)) 43 return std::unique_ptr<IPDBTable>(new DIATable(Item));
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Xml/ |
ModuleSurfaceAreaXml.py | 59 # represent the following XML item
80 def FromXml(self, Item, Key):
86 for SubItem in XmlList(Item, '%s/Filename' % Key):
97 for AsBuiltItem in XmlList(Item, '%s/AsBuilt' % Key):
113 for SubItem in XmlList(Item, '%s/AsBuilt/LibraryInstances/GUID' % Key):
120 if XmlList(Item, '%s/AsBuilt/LibraryInstances' % Key) and not LibraryList:
124 for SubItem in XmlList(Item, '%s/AsBuilt/BuildFlags' % Key):
173 for Item in BuildFlag.GetAsBuildList():
175 Elem = CreateXmlElement('BuildFlags', ''.join(Item), [], [])
188 for Item in self.FileNames: [all...] |
PackageSurfaceAreaXml.py | 49 def FromXml(self, Item, Key):
50 self.HeaderFile = XmlElement(Item, '%s/HeaderFile' % Key)
51 for HelpTextItem in XmlList(Item, '%s/HelpText' % Key):
75 for Item in self.HelpText:
76 Str = Str + "\n\t" + str(Item)
87 def FromXml(self, Item, Key):
88 self.HeaderFile = XmlElement(Item, '%s/HeaderFile' % Key)
89 self.CommonDefines.FromXml(XmlNode(Item, '%s/HeaderFile' % Key), 'HeaderFile')
90 for HelpTextItem in XmlList(Item, '%s/HelpText' % Key):
113 for Item in PackageIncludeHeader.GetHelpTextList(): [all...] |
/external/clang/test/CodeGenCXX/ |
typeid-cxx11.cpp | 6 struct Item { 13 template<typename T> constexpr Item item(const char *name) { function in namespace:Test1 22 extern constexpr Item items[] = { 23 item<A>("A"), item<B>("B"), item<C>("C"), item<int>("int")
|
/external/dynamic_depth/includes/dynamic_depth/ |
container.h | 9 #include "dynamic_depth/item.h" 13 // A Container that holds a directory / array of file Item elementss. Files 14 // at the end of the image appear in the same sequential order as the Item 25 // empty. If creation succeeds, ownership of the Item objects are transferred 26 // to the resulting Container object. The vector of Item objects will be 29 std::vector<std::unique_ptr<Item>>* items); 31 // Returns the deserialized item elements, null if parsing failed for all 37 const std::vector<const Item*> GetItems() const; 46 std::vector<std::unique_ptr<Item>> items_;
|
/external/emma/core/java12/com/vladium/emma/report/ |
AllItem.java | 16 final class AllItem extends Item 53 private static final Item.ItemMetadata METADATA; // set in <clinit> 57 METADATA = new Item.ItemMetadata (IItemMetadata.TYPE_ID_ALL, "all",
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/ |
FormatVariadicDetails.h | 32 T Item; 35 explicit provider_format_adapter(T &&Item) : Item(std::forward<T>(Item)) {} 38 format_provider<typename std::decay<T>::type>::format(Item, S, Options); 44 T Item; 47 explicit stream_operator_format_adapter(T &&Item) 48 : Item(std::forward<T>(Item)) {} 50 void format(llvm::raw_ostream &S, StringRef Options) override { S << Item; } [all...] |
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/UnitTest/ |
InfBinarySectionTest.py | 22 # Test Common binary item
25 #-------------start of common binary item test input--------------------------#
28 # Only has 1 element, binary item Type
35 # Have 2 elements, binary item Type and FileName
110 #-------------end of common binary item test input----------------------------#
114 #-------------start of VER type binary item test input------------------------#
174 #-------------end of VER type binary item test input--------------------------#
177 #-------------start of UI type binary item test input-------------------------#
238 #---------------end of UI type binary item test input-------------------------#
261 for Item in SectionString: [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Testing/Support/ |
SupportHelpers.h | 47 void PrintTo(const ExpectedHolder<T> &Item, std::ostream *Out) { 48 if (Item.Success()) { 49 *Out << "succeeded with value " << ::testing::PrintToString(*Item.Exp); 51 PrintTo(static_cast<const ErrorHolder &>(Item), Out);
|
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/ADT/ |
DepthFirstIteratorTest.cpp | 24 std::pair<iterator, bool> insert(const T &Item) { 26 return S.insert(Item); 29 size_t count(const T &Item) const { return S.count(Item); }
|
/external/autotest/frontend/client/src/autotest/common/ui/ |
MultiListSelectPresenter.java | 46 * The given generated Item was just deselected; handle any necessary cleanup. 48 public void onRemoveGeneratedItem(Item generatedItem); 51 public static class Item implements Comparable<Item> { 54 // a generated item is destroyed when deselected. 59 private Item(String name, String value) { 64 public static Item createItem(String name, String value) { 65 return new Item(name, value); 68 public static Item createGeneratedItem(String name, String value) { 69 Item item = new Item(name, value) local [all...] |
/external/pdfium/xfa/fwl/ |
cfwl_widgetmgr.h | 70 class Item { 72 Item(); 73 explicit Item(CFWL_Widget* widget); 74 ~Item(); 76 Item* pParent; 77 Item* pOwner; 78 Item* pChild; 79 Item* pPrevious; 80 Item* pNext; 92 Item* GetWidgetMgrItem(CFWL_Widget* pWidget) const [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/CodeView/ |
DebugCrossImpSubsection.cpp | 28 codeview::CrossModuleImportItem &Item) { 34 if (auto EC = Reader.readObject(Item.Header)) 36 if (Reader.bytesRemaining() < Item.Header->Count * sizeof(uint32_t)) 40 if (auto EC = Reader.readArray(Item.Imports, Item.Header->Count)) 66 for (const auto &Item : Mappings) { 68 Size += sizeof(support::ulittle32_t) * Item.second.size(); 87 for (const auto &Item : Ids) { 89 Imp.ModuleNameOffset = Strings.getIdForString(Item->getKey()); 90 Imp.Count = Item->getValue().size() [all...] |
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Parser/ |
InfDepexSectionParser.py | 80 for Item in self.LastSectionHeaderContent:
81 LastItem = Item
82 if (Item[1], Item[2], Item[3]) not in KeyList:
83 KeyList.append((Item[1], Item[2], Item[3]))
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/extensions/compactnotation/ |
Item.java | 18 public class Item { 23 public Item(String id) {
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/ |
EdkIIWorkspaceBuild.py | 82 for Item in self.SkuInfoList.values():
83 Rtn = Rtn + 'SkuId=' + Item.SkuId + ', ' + 'SkuIdName=' + Item.SkuIdName
483 for Item in Platform.Header[Arch].SupArchList:
484 Tmp.add(Item)
488 for Item in Platform.Header[Arch].BuildTargets:
489 Tmp.add(Item)
498 for Item in Platform.LibraryClasses.LibraryList:
499 for Arch in Item.SupArchList:
500 self.AddToInfDatabase(Item.FilePath) [all...] |