/developers/build/prebuilts/gradle/ActivitySceneTransitionBasic/Application/src/main/java/com/example/android/activityscenetransitionbasic/ |
Item.java | 20 * Represents an Item in our application. Each item has a name, id, full size image url and 23 public class Item { 28 public static Item[] ITEMS = new Item[] { 29 new Item("Flying in the Light", "Romain Guy", "flying_in_the_light.jpg"), 30 new Item("Caterpillar", "Romain Guy", "caterpillar.jpg"), 31 new Item("Look Me in the Eye", "Romain Guy", "look_me_in_the_eye.jpg"), 32 new Item("Flamingo", "Romain Guy", "flamingo.jpg"), 33 new Item("Rainbow", "Romain Guy", "rainbow.jpg") [all...] |
/developers/samples/android/ui/activityscenetransition/ActivitySceneTransitionBasic/Application/src/main/java/com/example/android/activityscenetransitionbasic/ |
Item.java | 20 * Represents an Item in our application. Each item has a name, id, full size image url and 23 public class Item { 28 public static Item[] ITEMS = new Item[] { 29 new Item("Flying in the Light", "Romain Guy", "flying_in_the_light.jpg"), 30 new Item("Caterpillar", "Romain Guy", "caterpillar.jpg"), 31 new Item("Look Me in the Eye", "Romain Guy", "look_me_in_the_eye.jpg"), 32 new Item("Flamingo", "Romain Guy", "flamingo.jpg"), 33 new Item("Rainbow", "Romain Guy", "rainbow.jpg") [all...] |
/development/samples/browseable/ActivitySceneTransitionBasic/src/com.example.android.activityscenetransitionbasic/ |
Item.java | 20 * Represents an Item in our application. Each item has a name, id, full size image url and 23 public class Item { 28 public static Item[] ITEMS = new Item[] { 29 new Item("Flying in the Light", "Romain Guy", "flying_in_the_light.jpg"), 30 new Item("Caterpillar", "Romain Guy", "caterpillar.jpg"), 31 new Item("Look Me in the Eye", "Romain Guy", "look_me_in_the_eye.jpg"), 32 new Item("Flamingo", "Romain Guy", "flamingo.jpg"), 33 new Item("Rainbow", "Romain Guy", "rainbow.jpg") [all...] |
/developers/build/prebuilts/gradle/WearAccessibilityApp/Wearable/src/main/java/com/example/android/wearable/wear/wearaccessibilityapp/ |
Item.java | 18 public interface Item {
|
/developers/samples/android/wearable/wear/WearAccessibilityApp/Wearable/src/main/java/com/example/android/wearable/wear/wearaccessibilityapp/ |
Item.java | 18 public interface Item {
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/CodeView/ |
RecordSerialization.h | 56 Error consume(BinaryStreamReader &Reader, uint32_t &Item); 57 Error consume(BinaryStreamReader &Reader, int32_t &Item); 60 Error consume(BinaryStreamReader &Reader, StringRef &Item); 63 Error consume(StringRef &Data, uint32_t &Item); 67 template <typename T> Error consume(BinaryStreamReader &Reader, T *&Item) { 68 return Reader.readObject(Item); 72 serialize_conditional_impl(T &Item, U Func) : Item(Item), Func(Func) {} 77 return consume(Reader, Item); [all...] |
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/extensions/compactnotation/ |
Box.java | 21 private Item top; 22 private Item bottom; 30 public Item getTop() { 34 public void setTop(Item top) { 38 public Item getBottom() { 42 public void setBottom(Item bottom) {
|
/external/llvm/include/llvm/DebugInfo/CodeView/ |
RecordSerialization.h | 64 std::error_code consume(ArrayRef<uint8_t> &Data, uint32_t &Item); 65 std::error_code consume(StringRef &Data, uint32_t &Item); 66 std::error_code consume(ArrayRef<uint8_t> &Data, int32_t &Item); 69 std::error_code consume(ArrayRef<uint8_t> &Data, StringRef &Item); 74 std::error_code consume(ArrayRef<uint8_t> &Data, T *&Item) { 75 return consumeObject(Data, Item); 79 serialize_conditional_impl(T &Item, U Func) : Item(Item), Func(Func) {} 84 return consume(Data, Item); [all...] |
CVRecord.h | 32 CVRecord<Kind> &Item) const { 39 Item.Length = Prefix->RecordLen; 40 if (Item.Length < 2) 42 Item.Type = static_cast<Kind>(uint16_t(Prefix->RecordKind)); 46 Reader.readBytes(Item.RawData, Item.Length + sizeof(uint16_t))) 48 Item.Data = Item.RawData.slice(sizeof(RecordPrefix));
|
/external/dynamic_depth/internal/dynamic_depth/ |
item.cc | 1 #include "dynamic_depth/item.h" 12 constexpr char kNamespaceHref[] = "http://ns.google.com/photos/dd/1.0/item/"; 22 Item::Item(const ItemParams& params) : params_(params) {} 26 std::unique_ptr<Item> Item::FromDataInternal(const ItemParams& params, 39 LOG(ERROR) << "Item length must be non-negative"; 45 LOG(ERROR) << "Item length must be larger than padding; found padding=" 52 return std::unique_ptr<Item>(new Item(params)); // NOLIN [all...] |
/external/llvm/lib/DebugInfo/PDB/DIA/ |
DIAEnumLineNumbers.cpp | 28 CComPtr<IDiaLineNumber> Item; 29 if (S_OK != Enumerator->Item(Index, &Item)) 32 return std::unique_ptr<IPDBLineNumber>(new DIALineNumber(Item)); 36 CComPtr<IDiaLineNumber> Item; 38 if (S_OK != Enumerator->Next(1, &Item, &NumFetched)) 41 return std::unique_ptr<IPDBLineNumber>(new DIALineNumber(Item));
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/PDB/DIA/ |
DIAEnumLineNumbers.cpp | 28 CComPtr<IDiaLineNumber> Item; 29 if (S_OK != Enumerator->Item(Index, &Item)) 32 return std::unique_ptr<IPDBLineNumber>(new DIALineNumber(Item)); 36 CComPtr<IDiaLineNumber> Item; 38 if (S_OK != Enumerator->Next(1, &Item, &NumFetched)) 41 return std::unique_ptr<IPDBLineNumber>(new DIALineNumber(Item));
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Xml/ |
XmlParser.py | 64 # Check if any required item is missing in DistributionPackage
133 for Item in self.DistP.Tools.GetFileList():
135 CheckDict = {'FileName':Item.GetURI(), }
150 for Item in self.DistP.MiscellaneousFiles.GetFileList():
152 CheckDict = {'FileName':Item.GetURI(), }
158 for Item in self.DistP.UserExtensions:
160 CheckDict = {'UserId':Item.GetUserID(), }
182 for Item in XmlList(self.Pkg, '/DistributionPackage/PackageSurfaceArea'):
184 Package = Psa.FromXml(Item, 'PackageSurfaceArea')
192 for Item in XmlList(self.Pkg, '/DistributionPackage/ModuleSurfaceArea'): [all...] |
/external/deqp/executor/ |
xeTestCaseResult.hpp | 61 class Item; 92 const Item& getItem (int ndx) const { return *m_items[ndx]; } 93 Item& getItem (int ndx) { return *m_items[ndx]; } 99 std::vector<Item*> m_items; 106 T* item = new T(); local 107 m_items.push_back(static_cast<ri::Item*>(item)); 108 return item; 134 // Result item type. 192 class Item [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/ |
FormatAdapters.h | 23 explicit FormatAdapter(T &&Item) : Item(std::forward<T>(Item)) {} 25 T Item; 35 AlignAdapter(T &&Item, AlignStyle Where, size_t Amount, char Fill) 36 : FormatAdapter<T>(std::forward<T>(Item)), Where(Where), Amount(Amount), 40 auto Adapter = detail::build_format_adapter(std::forward<T>(this->Item)); 50 PadAdapter(T &&Item, size_t Left, size_t Right) 51 : FormatAdapter<T>(std::forward<T>(Item)), Left(Left), Right(Right) {} 54 auto Adapter = detail::build_format_adapter(std::forward<T>(this->Item)); [all...] |
FormatCommon.h | 40 SmallString<64> Item; 41 raw_svector_ostream Stream(Item); 44 if (Amount <= Item.size()) { 45 S << Item; 49 size_t PadAmount = Amount - Item.size(); 52 S << Item; 58 S << Item; 64 S << Item;
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/ |
Exception.py | 27 def FromXml(self, Item, Key):
28 self.KeyWord = XmlElement(Item, '%s/KeyWord' % Key)
29 self.ErrorID = XmlElement(Item, '%s/ErrorID' % Key)
30 self.FilePath = os.path.normpath(XmlElement(Item, '%s/FilePath' % Key))
42 for Item in XmlList(XmlContent, '/ExceptionList/Exception'):
44 Exp.FromXml(Item, 'Exception')
49 for Item in self.List:
50 #RtnList.append((Item.ErrorID, Item.KeyWord, Item.FilePath)) [all...] |
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Object/Parser/ |
InfSoucesObject.py | 36 def GenSourceInstance(Item, CurrentLineOfItem, ItemObj):
40 if len(Item) < 6 and len(Item) >= 1:
44 if len(Item) == 5:
48 if Item[4].strip() == '':
58 FeatureFlagRtv = IsValidFeatureFlagExp(Item[4].strip())
66 ItemObj.SetFeatureFlagExp(Item[4])
67 if len(Item) >= 4:
68 if Item[3].strip() == '':
69 ItemObj.SetToolCode(Item[3]) [all...] |
/dalvik/dexgen/src/com/android/dexgen/dex/file/ |
Item.java | 25 public abstract class Item { 29 public Item() { 34 * Returns the item type for this instance. 36 * @return {@code non-null;} the item type 41 * Returns the human name for the particular type of item this 59 * This will <i>not</i> add an item to the file for this instance itself
|
/dalvik/dx/src/com/android/dx/dex/file/ |
Item.java | 25 public abstract class Item { 29 public Item() { 34 * Returns the item type for this instance. 36 * @return {@code non-null;} the item type 41 * Returns the human name for the particular type of item this 59 * This will <i>not</i> add an item to the file for this instance itself
|
/external/dynamic_depth/includes/dynamic_depth/ |
item.h | 53 class Item : public Element { 61 static std::unique_ptr<Item> FromData(const ItemParams& params); 63 // Returns the deserialized item elements, null if parsing failed for all 65 static std::unique_ptr<Item> FromDeserializer( 75 Item(const Item&) = delete; 76 void operator=(const Item&) = delete; 79 Item(const ItemParams& params); 80 static std::unique_ptr<Item> FromDataInternal(const ItemParams& params,
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
FormatCommon.h | 38 SmallString<64> Item; 39 raw_svector_ostream Stream(Item); 42 if (Amount <= Item.size()) { 43 S << Item; 47 size_t PadAmount = Amount - Item.size(); 50 S << Item; 56 S << Item; 62 S << Item;
|
FormatVariadicDetails.h | 31 T Item; 34 explicit provider_format_adapter(T &&Item) : Item(Item) {} 37 format_provider<typename std::decay<T>::type>::format(Item, S, Options); 92 build_format_adapter(T &&Item) { 93 return std::forward<T>(Item); 99 build_format_adapter(T &&Item) { 100 return provider_format_adapter<T>(std::forward<T>(Item)); 106 build_format_adapter(T &&Item) { [all...] |
/external/compiler-rt/lib/sanitizer_common/ |
sanitizer_list.h | 28 template<class Item> 40 void push_back(Item *x) { 53 void push_front(Item *x) { 73 Item *front() { return first_; } 74 const Item *front() const { return first_; } 75 Item *back() { return last_; } 76 const Item *back() const { return last_; } 78 void append_front(IntrusiveList<Item> *l) { 92 void append_back(IntrusiveList<Item> *l) { 112 for (Item *i = first_; ; i = i->next) [all...] |
/external/v8/src/heap/ |
item-parallel-job.h | 34 // - Items need to inherit from ItemParallelJob::Item. 37 // Items need to be marked as finished after processing them. Task and Item 46 class V8_EXPORT_PRIVATE Item { 48 Item() = default; 49 virtual ~Item() = default; 51 // Marks an item as being finished. 68 DISALLOW_COPY_AND_ASSIGN(Item); 79 // Retrieves a new item that needs to be processed. Returns |nullptr| if 80 // all items are processed. Upon returning an item, the task is required 81 // to process the item and mark the item as finished after doing so 89 Item* item = (*items_)[cur_index_++]; local [all...] |