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

1 2 3 4 5 6 78 91011>>

  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Eot/
InfParserLite.py 59 for Item in SourceFileList:
60 self.TblInf.Insert(MODEL_EFI_SOURCE_FILE, Item, '', '', '', '', 'COMMON', -1, self.FileID, -1, -1, -1, -1, 0)
86 # @param SectionItemList: the item belonging current section
88 # @param ThirdList: A list for third item for this section
97 for Item in SectionItemList:
99 (Name, Value) = AddToSelfMacro(self.Macros, Item[0])
100 self.TblInf.Insert(MODEL_META_DATA_HEADER, Name, Value, Third, '', '', Arch, -1, self.FileID, Item[1], -1, Item[1], -1, 0)
130 for Item in LineList:
131 ItemList = GetSplitValueList(Item, TAB_SPLIT)
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Rsa2048Sha256Sign/
Rsa2048Sha256GenerateKeys.py 91 for Item in args.OutputFile:
95 args.PemFileName.append(Item.name)
96 Item.close()
101 Process = subprocess.Popen('%s genrsa -out %s 2048' % (OpenSslCommand, Item.name), stdout=subprocess.PIPE, stderr=subprocess.PIPE)
111 for Item in args.InputFile:
115 args.PemFileName.append(Item.name)
116 Item.close()
119 for Item in args.PemFileName:
123 Process = subprocess.Popen('%s rsa -in %s -modulus -noout' % (OpenSslCommand, Item), stdout=subprocess.PIPE, stderr=subprocess.PIPE)
155 for Item in PublicKeyHash:
    [all...]
  /external/guava/guava-testlib/src/com/google/common/testing/
RelationshipTester.java 40 String reportItem(Item<?> item) {
41 return item.toString();
98 Item<T> itemInfo = getItem(groupNumber, itemNumber);
99 Item<T> relatedInfo = getItem(groupNumber, relatedItemNumber);
101 T item = itemInfo.value; local
103 assertWithTemplate("$ITEM must be $RELATIONSHIP to $OTHER", itemInfo, relatedInfo,
104 equivalence.equivalent(item, related));
106 int itemHash = equivalence.hash(item);
108 assertWithTemplate("the $HASH (" + itemHash + ") of $ITEM must be equal to the $HASH (
    [all...]
  /frameworks/support/v7/recyclerview/src/test/java/androidx/recyclerview/widget/
DiffUtilTest.java 45 private List<Item> mBefore = new ArrayList<>();
46 private List<Item> mAfter = new ArrayList<>();
273 List<Item> applied = applyUpdates(mBefore, DiffUtil.calculateDiff(mCallback, false));
322 List<Item> applied = applyUpdates(mBefore, result);
330 mBefore.add(new Item(false));
338 for (Object item : items) {
339 mLog.append(" ").append(item).append("\n");
343 private void assertEquals(List<Item> applied, List<Item> after) {
349 Item item = applied.get(i) local
    [all...]
OpReorderTest.java 50 List<Item> mAddedItems = new ArrayList<Item>();
51 List<Item> mRemovedItems = new ArrayList<Item>();
82 mAddedItems = new ArrayList<Item>();
83 mRemovedItems = new ArrayList<Item>();
85 Item.idCounter = 0;
313 List<Item> items = new ArrayList<Item>(itemCount);
315 items.add(Item.create())
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Object/Parser/
InfGuidObject.py 244 for Item in GuidList:
249 if len(Item) == 3:
250 CommentsList = Item[1]
251 CurrentLineOfItem = Item[2]
252 Item = Item[0]
254 if len(Item) >= 1 and len(Item) <= 2:
258 if not IsValidCVariableName(Item[0]):
261 ST.ERR_INF_PARSER_INVALID_CNAME%(Item[0]),
    [all...]
InfPpiObject.py 59 # For the Last comment Item, set BlockFlag.
83 # An item have Usage or Notify information and the first time get this information
220 for Item in PpiList:
225 if len(Item) == 3:
226 CommentsList = Item[1]
227 CurrentLineOfItem = Item[2]
228 Item = Item[0]
230 if len(Item) >= 1 and len(Item) <= 2:
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
IndexedItem.java 20 * An item in a Dalvik file which is referenced by index.
22 public abstract class IndexedItem extends Item {
23 /** {@code >= -1;} assigned index of the item, or {@code -1} if not
44 * Gets the item index.
47 * @throws RuntimeException thrown if the item index is not yet assigned
58 * Sets the item index. This method may only ever be called once
62 * @param index {@code >= 0;} the item index
73 * Gets the index of this item as a string, suitable for including in
UniformItemSection.java 26 * {@link Item} objects. Each of the items must have the same size in
46 Collection<? extends Item> items = items();
53 // Since each item has to be the same size, we can pick any.
58 * Gets the item corresponding to the given {@link Constant}. This
64 * @return {@code non-null;} the corresponding item found in this instance
75 for (Item one : items()) {
86 for (Item one : items()) {
94 public final int getAbsoluteItemOffset(Item item) {
99 IndexedItem ii = (IndexedItem) item;
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
IndexedItem.java 20 * An item in a Dalvik file which is referenced by index.
22 public abstract class IndexedItem extends Item {
23 /** {@code >= -1;} assigned index of the item, or {@code -1} if not
44 * Gets the item index.
47 * @throws RuntimeException thrown if the item index is not yet assigned
58 * Sets the item index. This method may only ever be called once
62 * @param index {@code >= 0;} the item index
73 * Gets the index of this item as a string, suitable for including in
UniformItemSection.java 25 * {@link Item} objects. Each of the items must have the same size in
45 Collection<? extends Item> items = items();
52 // Since each item has to be the same size, we can pick any.
57 * Gets the item corresponding to the given {@link Constant}. This
63 * @return {@code non-null;} the corresponding item found in this instance
74 for (Item one : items()) {
85 for (Item one : items()) {
93 public final int getAbsoluteItemOffset(Item item) {
98 IndexedItem ii = (IndexedItem) item;
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Workspace/
WorkspaceCommon.py 170 # for each node Item with a Constructor
171 for Item in LibraryList:
172 if Item not in Constructor:
174 # for each Node without a constructor with an edge e from Item to Node
175 for Node in ConsumedByList[Item]:
179 ConsumedByList[Item].remove(Node)
181 if ConsumedByList[Item] == []:
182 # insert Item into Q
183 Q.insert(0, Item)
196 # for each node Item with an edge e from Node to Item do
    [all...]
  /external/clang/test/CodeGen/
aarch64-type-sizes.c 84 Item
  /external/giflib/
gif_hash.c 7 2. InsertHashTable - insert one item into data structure.
8 3. ExistsHashTable - test if item exists in data structure.
32 static int KeyItem(uint32_t Item);
60 Routine to insert a new Item into the HashTable. The data is assumed to be *
114 static int KeyItem(uint32_t Item)
116 return ((Item >> 12) ^ Item) & HT_KEY_MASK;
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_list.h 34 void * Item;
39 struct rc_list * rc_list(struct memory_pool * pool, void * item);
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
ItemLocationBox.java 65 public List<Item> items = new LinkedList<Item>();
76 for (Item item : items) {
77 size += item.getSize();
93 for (Item item : items) {
94 item.getContent(byteBuffer);
112 items.add(new Item(content));
149 public List<Item> getItems()
    [all...]
  /frameworks/base/core/proto/android/content/
clipdata.proto 41 // An android.content.ClipData.Item object.
42 message Item {
53 repeated Item items = 3;
  /packages/apps/Dialer/java/com/android/voicemail/impl/mail/
FetchProfile.java 26 * FetchProfile.Item: Described below.
28 * Synonymous with FetchProfile.Item.BODY.
36 * Default items available for pre-fetching. It should be expected that any item fetched by using
39 public enum Item implements Fetchable {
  /packages/apps/Stk/src/com/android/stk/
StkMenuAdapter.java 19 import com.android.internal.telephony.cat.Item;
34 public class StkMenuAdapter extends ArrayAdapter<Item> {
38 public StkMenuAdapter(Context context, List<Item> items,
47 final Item item = getItem(position); local
54 if (!mIcosSelfExplanatory || (mIcosSelfExplanatory && item.icon == null)) {
55 ((TextView) convertView.findViewById(R.id.text)).setText(item.text);
58 if (item.icon == null) {
61 imageView.setImageBitmap(item.icon);
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/mail/
FetchProfile.java 25 * FetchProfile.Item: Described below.
27 * Synonymous with FetchProfile.Item.BODY.
36 * item fetched by using these items could potentially include all of the
39 public enum Item implements Fetchable {
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/PDB/Native/
TpiStreamBuilder.h 30 static size_t length(const codeview::CVType &Item) { return Item.length(); }
31 static ArrayRef<uint8_t> bytes(const codeview::CVType &Item) {
32 return Item.data();
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/DebugInfo/PDB/Native/
TpiStreamBuilder.h 30 static size_t length(const codeview::CVType &Item) { return Item.length(); }
31 static ArrayRef<uint8_t> bytes(const codeview::CVType &Item) {
32 return Item.data();
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/DebugInfo/PDB/Native/
TpiStreamBuilder.h 30 static size_t length(const codeview::CVType &Item) { return Item.length(); }
31 static ArrayRef<uint8_t> bytes(const codeview::CVType &Item) {
32 return Item.data();
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/DebugInfo/CodeView/
Formatters.h 40 inline detail::GuidAdapter fmt_guid(StringRef Item) {
41 return detail::GuidAdapter(Item);
44 inline detail::GuidAdapter fmt_guid(ArrayRef<uint8_t> Item) {
45 return detail::GuidAdapter(Item);
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/DebugInfo/PDB/Native/
GSIStreamBuilder.h 27 static size_t length(const codeview::CVSymbol &Item) {
28 return Item.RecordData.size();
30 static ArrayRef<uint8_t> bytes(const codeview::CVSymbol &Item) {
31 return Item.RecordData;

Completed in 749 milliseconds

1 2 3 4 5 6 78 91011>>