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

1 23 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/IntelFspPkg/Tools/
GenCfgOpt.py 672 # It could be a virtual item as below
692 for Item in self._CfgItemList:
693 if len(Item['subreg']) == 0:
696 if Item['value'][0] == '{':
697 binlist = Item['value'][1:-1].split(',')
706 if Item['value'].startswith('0x'):
707 value = int(Item['value'], 16)
709 value = int(Item['value'])
711 while idx < Item['length']:
715 for SubItem in Item['subreg']:
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Table/
TableDataModel.py 74 for Item in DataClass.MODEL_LIST:
75 CrossIndex = Item[1]
76 Name = Item[0]
77 Description = Item[0]
92 for Item in self.Cur:
93 CrossIndex = Item[0]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/UefiLib/
Console.c 40 * Remove the above item if below is un-commented.
87 * Remove the above item if below is un-commented.
119 * Remove the above item if below is un-commented.
142 * Remove the above item if below is un-commented.
164 * Remove the above item if below is un-commented.
216 UNICODE_WIDTH_ENTRY *Item;
218 Item = NULL;
223 Item = &(mUnicodeWidthTable[Index]);
225 if (UnicodeChar <= Item->WChar) {
232 if (UnicodeChar > Item->WChar) {
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Parser/
InfLibrarySectionParser.py 89 for Item in LibHeaderComments:
90 LineCommentContent += Item[0] + DT.END_OF_LINE
139 for Item in self.LastSectionHeaderContent:
140 if (Item[1], Item[2]) not in KeyList:
141 KeyList.append((Item[1], Item[2]))
148 Line=Item[3])
193 Item = ['', '', '']
194 for Item in self.LastSectionHeaderContent:
    [all...]
InfPcdSectionParser.py 51 for Item in self.LastSectionHeaderContent:
52 if (Item[0], Item[1], Item[3]) not in KeysList:
53 KeysList.append((Item[0], Item[1], Item[3]))
54 LineIndex = Item[3]
56 if (Item[0].upper() == DT.TAB_INF_FIXED_PCD.upper() or \
57 Item[0].upper() == DT.TAB_INF_FEATURE_PCD.upper() or \
    [all...]
  /device/linaro/bootloader/edk2/IntelFsp2Pkg/Tools/
GenCfgOpt.py 687 # It could be a virtual item as below
727 for Item in self._CfgItemList:
728 if len(Item['subreg']) == 0:
731 if Item['value'][0] == '{':
732 binlist = Item['value'][1:-1].split(',')
741 if Item['value'].startswith('0x'):
742 value = int(Item['value'], 16)
744 value = int(Item['value'])
746 while idx < Item['length']:
750 for SubItem in Item['subreg']:
    [all...]
  /external/smali/util/src/main/java/org/jf/util/
ImmutableConverter.java 44 public abstract class ImmutableConverter<ImmutableItem, Item> {
45 protected abstract boolean isImmutable(@Nonnull Item item);
46 @Nonnull protected abstract ImmutableItem makeImmutable(@Nonnull Item item);
49 public ImmutableList<ImmutableItem> toList(@Nullable final Iterable<? extends Item> iterable) {
56 for (Item element: iterable) {
70 final Iterator<? extends Item> iter = iterable.iterator();
80 public ImmutableSet<ImmutableItem> toSet(@Nullable final Iterable<? extends Item> iterable) {
87 for (Item element: iterable)
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Support/
StringMap.cpp 46 TheTable[NumBuckets].Item = (StringMapEntryBase*)2;
51 /// up in. If it already exists as a key in the map, the Item pointer for the
68 StringMapEntryBase *BucketItem = Bucket.Item;
87 // case here is that we are only looking at the buckets (for item info
100 // Okay, we didn't find the item. Probe to the next bucket.
122 StringMapEntryBase *BucketItem = Bucket.Item;
131 // case here is that we are only looking at the buckets (for item info
144 // Okay, we didn't find the item. Probe to the next bucket.
168 StringMapEntryBase *Result = TheTable[Bucket].Item;
169 TheTable[Bucket].Item = getTombstoneVal()
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/
LineNumberList.java 69 * Gets the indicated item.
71 * @param n {@code >= 0;} which item
72 * @return {@code null-ok;} the indicated item
74 public Item get(int n) {
75 return (Item) get0(n);
79 * Sets the item at the given index.
82 * @param item {@code non-null;} the item
84 public void set(int n, Item item) {
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
LineNumberList.java 69 * Gets the indicated item.
71 * @param n {@code >= 0;} which item
72 * @return {@code null-ok;} the indicated item
74 public Item get(int n) {
75 return (Item) get0(n);
79 * Sets the item at the given index.
82 * @param item {@code non-null;} the item
84 public void set(int n, Item item) {
    [all...]
BootstrapMethodsList.java 40 * Gets the indicated item.
42 * @param n {@code >= 0;} which item
43 * @return {@code null-ok;} the indicated item
45 public Item get(int n) {
46 return (Item) get0(n);
50 * Sets the item at the given index.
53 * @param item {@code non-null;} the item
55 public void set(int n, Item item) {
    [all...]
  /external/antlr/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
Antlr.Runtime.Collections.Tests.pas 110 Item: String;
112 Item := 'Item 1';
113 FIStackList.Push(Item);
114 Item := 'Item 2';
115 FIStackList.Push(Item);
116 CheckEquals(FIStackList.Pop,'Item 2');
117 CheckEquals(FIStackList.Pop,'Item 1');
122 FIStackList.Push('Item 1')
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Object/Parser/
InfProtocolObject.py 210 for Item in ProtocolContent:
215 if len(Item) == 3:
216 CommentsList = Item[1]
217 CurrentLineOfItem = Item[2]
219 Item = Item[0]
221 if len(Item) >= 1 and len(Item) <= 2:
225 if not IsValidCVariableName(Item[0]):
226 ErrorInInf(ST.ERR_INF_PARSER_INVALID_CNAME%(Item[0]),
    [all...]
  /dalvik/dx/src/com/android/dx/cf/attrib/
InnerClassList.java 38 * Gets the indicated item.
40 * @param n {@code >= 0;} which item
41 * @return {@code null-ok;} the indicated item
43 public Item get(int n) {
44 return (Item) get0(n);
48 * Sets the item at the given index.
51 * @param innerClass {@code non-null;} class this item refers to
60 set0(n, new Item(innerClass, outerClass, innerName, accessFlags));
64 * Item in an inner classes list.
66 public static class Item {
    [all...]
  /external/v8/src/torque/
earley-parser.cc 35 base::Optional<ParseResult> Rule::RunAction(const Item* completed_item,
38 for (const Item* child : completed_item->Children()) {
58 std::vector<const Item*> Item::Children() const {
59 std::vector<const Item*> children;
60 for (const Item* current = this; current->prev_; current = current->prev_) {
69 std::string Item::SplitByChildren(const LexerResult& tokens) const {
71 if (const Item* child = Children()[0])
76 for (const Item* item : Children())
199 const Item& item = *insert_result.first; local
    [all...]
  /external/swiftshader/third_party/subzero/src/
IceRegAlloc.cpp 32 // Returns true if Var has any definitions within Item's live range.
38 bool overlapsDefs(const Cfg *Func, const Variable *Item, const Variable *Var) {
42 if (Item->getLiveRange().overlapsInst(FirstDef->getNumber(), UseTrimmed))
45 if (Item->getLiveRange().overlapsInst(Def->getNumber(), UseTrimmed))
451 Variable *Item = Active[Index];
452 Item->trimLiveRange(Cur->getLiveRange().getStart());
454 if (Item->rangeEndsBefore(Cur)) {
455 // Move Item from Active to Handled list.
456 dumpLiveRangeTrace("Expiring ", Item);
459 } else if (!Item->rangeOverlapsStart(Cur))
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Xml/
CommonXml.py 55 def FromXml(self, Item, Key):
56 self.GUID = XmlElement(Item, '%s/GUID' % Key)
57 self.Version = XmlAttribute(XmlNode(Item, '%s/GUID' % Key), 'Version')
89 def FromXml(self, Item, Key):
92 self.Usage = XmlAttribute(Item, 'Usage')
94 [Arch for Arch in GetSplitValueList(XmlAttribute(Item, 'SupArchList'), DataType.TAB_SPACE_SPLIT) if Arch]
96 [Mod for Mod in GetSplitValueList(XmlAttribute(Item, 'SupModList'), DataType.TAB_SPACE_SPLIT) if Mod]
97 self.FeatureFlag = ConvertNOTEQToNE(XmlAttribute(Item, 'FeatureFlag'))
114 def FromXml(self, Item, Key):
117 self.Prompt = XmlElement2(Item, 'Prompt')
    [all...]
GuidProtocolPpiXml.py 60 def FromXml(self, Item, Key):
61 self.UiName = XmlAttribute(XmlNode(Item, '%s' % Key), 'UiName')
62 self.GuidType = XmlAttribute(XmlNode(Item, '%s' % Key), 'GuidType')
63 self.Notify = XmlAttribute(XmlNode(Item, '%s' % Key), 'Notify')
64 self.CName = XmlElement(Item, '%s/CName' % Key)
65 self.GuidValue = XmlElement(Item, '%s/GuidValue' % Key)
66 self.VariableName = XmlElement(Item, '%s/VariableName' % Key)
67 self.CommonDefines.FromXml(XmlNode(Item, '%s' % Key), Key)
68 for HelpTextItem in XmlList(Item, '%s/HelpText' % Key):
99 for Item in GuidProtocolPpi.GetHelpTextList():
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
StructPadTest.java 35 ScriptField_PadMe.Item I = new ScriptField_PadMe.Item();
40 S.set(new ScriptField_PadMe.Item(), 0, true);
  /developers/build/prebuilts/gradle/RecipeAssistant/Application/src/main/java/com/example/android/wearable/recipeassistant/
RecipeListAdapter.java 40 private class Item {
47 private List<Item> mItems = new ArrayList<Item>();
59 List<Item> items = parseJson(jsonObject);
64 private List<Item> parseJson(JSONObject json) {
65 List<Item> result = new ArrayList<Item>();
69 JSONObject item = items.getJSONObject(i); local
70 Item parsed = new Item();
120 Item item = (Item) getItem(position); local
    [all...]
  /developers/samples/android/deprecated/wearable/wear/RecipeAssistant/Application/src/main/java/com/example/android/wearable/recipeassistant/
RecipeListAdapter.java 40 private class Item {
47 private List<Item> mItems = new ArrayList<Item>();
59 List<Item> items = parseJson(jsonObject);
64 private List<Item> parseJson(JSONObject json) {
65 List<Item> result = new ArrayList<Item>();
69 JSONObject item = items.getJSONObject(i); local
70 Item parsed = new Item();
120 Item item = (Item) getItem(position); local
    [all...]
  /development/samples/browseable/RecipeAssistant/Application/src/com.example.android.wearable.recipeassistant/
RecipeListAdapter.java 40 private class Item {
47 private List<Item> mItems = new ArrayList<Item>();
59 List<Item> items = parseJson(jsonObject);
64 private List<Item> parseJson(JSONObject json) {
65 List<Item> result = new ArrayList<Item>();
69 JSONObject item = items.getJSONObject(i); local
70 Item parsed = new Item();
120 Item item = (Item) getItem(position); local
    [all...]
  /external/emma/core/java12/com/vladium/emma/report/
PackageItem.java 16 final class PackageItem extends Item
62 private static final Item.ItemMetadata METADATA; // set in <clinit>
66 METADATA = new Item.ItemMetadata (IItemMetadata.TYPE_ID_PACKAGE, "package",
  /external/tensorflow/tensorflow/core/framework/
op_segment.h 70 struct Item {
73 ~Item();
76 // session handle -> item.
78 typedef std::unordered_map<string, Item*> SessionMap;
  /external/llvm/include/llvm/DebugInfo/CodeView/
ModuleSubstreamVisitor.h 34 LineColumnEntry &Item) const {
53 Item.NameIndex = BlockHeader->NameIndex;
54 if (auto EC = Reader.readArray(Item.LineNumbers, BlockHeader->NumLines))
57 if (auto EC = Reader.readArray(Item.Columns, BlockHeader->NumLines))
76 FileChecksumEntry &Item) const {
81 Item.FileNameOffset = Header->FileNameOffset;
82 Item.Kind = static_cast<FileChecksumKind>(Header->ChecksumKind);
83 if (auto EC = Reader.readBytes(Item.Checksum, Header->ChecksumSize))

Completed in 2318 milliseconds

1 23 4 5 6 7 8 91011>>