HomeSort by relevance Sort by last modified time
    Searched refs:Item (Results 51 - 75 of 1344) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/Testing/Support/
SupportHelpers.h 36 void PrintTo(const ExpectedHolder<T> &Item, std::ostream *Out) {
37 if (Item.Success) {
38 *Out << "succeeded with value \"" << ::testing::PrintToString(**Item.Value)
41 PrintTo(static_cast<const ErrorHolder &>(Item), Out);
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/
Formatters.h 30 inline detail::GuidAdapter fmt_guid(StringRef Item) {
31 return detail::GuidAdapter(Item);
34 inline detail::GuidAdapter fmt_guid(ArrayRef<uint8_t> Item) {
35 return detail::GuidAdapter(Item);
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/Testing/Support/
SupportHelpers.h 36 void PrintTo(const ExpectedHolder<T> &Item, std::ostream *Out) {
37 if (Item.Success) {
38 *Out << "succeeded with value \"" << ::testing::PrintToString(**Item.Value)
41 PrintTo(static_cast<const ErrorHolder &>(Item), Out);
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/Testing/Support/
SupportHelpers.h 36 void PrintTo(const ExpectedHolder<T> &Item, std::ostream *Out) {
37 if (Item.Success) {
38 *Out << "succeeded with value \"" << ::testing::PrintToString(**Item.Value)
41 PrintTo(static_cast<const ErrorHolder &>(Item), Out);
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/Testing/Support/
SupportHelpers.h 36 void PrintTo(const ExpectedHolder<T> &Item, std::ostream *Out) {
37 if (Item.Success) {
38 *Out << "succeeded with value \"" << ::testing::PrintToString(**Item.Value)
41 PrintTo(static_cast<const ErrorHolder &>(Item), Out);
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/Testing/Support/
SupportHelpers.h 36 void PrintTo(const ExpectedHolder<T> &Item, std::ostream *Out) {
37 if (Item.Success) {
38 *Out << "succeeded with value \"" << ::testing::PrintToString(**Item.Value)
41 PrintTo(static_cast<const ErrorHolder &>(Item), Out);
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/Testing/Support/
SupportHelpers.h 36 void PrintTo(const ExpectedHolder<T> &Item, std::ostream *Out) {
37 if (Item.Success) {
38 *Out << "succeeded with value \"" << ::testing::PrintToString(**Item.Value)
41 PrintTo(static_cast<const ErrorHolder &>(Item), Out);
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/Testing/Support/
SupportHelpers.h 36 void PrintTo(const ExpectedHolder<T> &Item, std::ostream *Out) {
37 if (Item.Success) {
38 *Out << "succeeded with value \"" << ::testing::PrintToString(**Item.Value)
41 PrintTo(static_cast<const ErrorHolder &>(Item), Out);
  /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...]
  /frameworks/support/samples/Support7Demos/src/main/java/com/example/android/supportv7/util/
SortedListActivity.java 53 new Item("buy milk"), new Item("wash the car"),
54 new Item("wash the dishes"));
65 mAdapter.addItem(new Item(text));
76 SortedList<Item> mData;
78 public SortedListAdapter(LayoutInflater layoutInflater, Item... items) {
80 mData = new SortedList<Item>(Item.class, new SortedListAdapterCallback<Item>(this) {
82 public int compare(Item t0, Item t1)
    [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/llvm/include/llvm/DebugInfo/CodeView/
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/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;
  /frameworks/support/paging/integration-tests/testapp/src/main/java/androidx/paging/integration/testapp/
ItemDataSource.java 31 class ItemDataSource extends PositionalDataSource<Item> {
44 private List<Item> loadRangeInternal(int startPosition, int loadCount) {
45 List<Item> items = new ArrayList<>();
55 items.add(new Item(i, "item " + i, bgColor));
62 @NonNull LoadInitialCallback<Item> callback) {
65 List<Item> data = loadRangeInternal(position, loadSize);
71 @NonNull LoadRangeCallback<Item> callback) {
72 List<Item> data = loadRangeInternal(params.startPosition, params.loadSize);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/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;
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Support/
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;
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Support/
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;
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Support/
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;
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Support/
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;
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/Support/
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;
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/Support/
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;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/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;
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/Support/
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;

Completed in 1308 milliseconds

1 23 4 5 6 7 8 91011>>