/external/ims/rcs/presencepolling/src/com/android/service/ims/presence/ |
PollingAction.java | 124 List<Contacts.Item> contacts = mPollingTask.mContacts; 126 Contacts.Item item = contacts.get(i); local 127 uriList.add(getCompleteUri(item.number()));
|
/external/protobuf/java/core/src/test/java/com/google/protobuf/ |
WireFormatTest.java | 407 RawMessageSet.Item.newBuilder() 415 RawMessageSet.Item.newBuilder() 423 RawMessageSet.Item.newBuilder() 472 RawMessageSet.Item.newBuilder() 511 RawMessageSet.Item.newBuilder() 553 RawMessageSet.Item.newBuilder() 566 List<RawMessageSet.Item> items = raw.getItemList(); 568 RawMessageSet.Item item = items.get(i); local 570 output.writeBytes(3, item.getMessage()) [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/CodeView/ |
CVRecord.h | 114 codeview::CVRecord<Kind> &Item) { 118 Item = *ExpectedRec;
|
DebugInlineeLinesSubsection.h | 55 codeview::InlineeSourceLine &Item);
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-pdbutil/ |
LinePrinter.h | 135 inline raw_ostream &operator<<(LinePrinter &Printer, const T &Item) { 136 Printer.getStream() << Item;
|
/frameworks/av/services/camera/libcameraservice/api2/ |
DepthCompositeStream.h | 29 using dynamic_depth::Item; 62 void onFrameAvailable(const BufferItem& item) override; 98 std::vector<std::unique_ptr<Item>>* items /*out*/);
|
/cts/hostsidetests/devicepolicy/app/IntentSender/src/com/android/cts/intent/sender/ |
CopyPasteTest.java | 89 ClipData.Item item = clip.getItemAt(0); local 90 if (item == null) { 93 CharSequence text = item.getText();
|
/cts/tests/tests/content/src/android/content/cts/ |
ImageCaptureActivity.java | 20 import android.content.ClipData.Item;
|
/dalvik/dexgen/src/com/android/dexgen/dex/file/ |
FieldIdsSection.java | 50 public Collection<? extends Item> items() { 129 FieldIdItem item = fieldIds.get(ref); local 131 if (item == null) { 135 return item.getIndex();
|
MethodIdsSection.java | 50 public Collection<? extends Item> items() { 129 MethodIdItem item = methodIds.get(ref); local 131 if (item == null) { 135 return item.getIndex();
|
ProtoIdsSection.java | 50 public Collection<? extends Item> items() { 121 ProtoIdItem item = protoIds.get(prototype); local 123 if (item == null) { 127 return item.getIndex();
|
/dalvik/dx/src/com/android/dx/dex/file/ |
FieldIdsSection.java | 49 public Collection<? extends Item> items() { 128 FieldIdItem item = fieldIds.get(ref); local 130 if (item == null) { 134 return item.getIndex();
|
MethodIdsSection.java | 49 public Collection<? extends Item> items() { 128 MethodIdItem item = methodIds.get(ref); local 130 if (item == null) { 134 return item.getIndex();
|
ProtoIdsSection.java | 50 public Collection<? extends Item> items() { 136 ProtoIdItem item = protoIds.get(prototype); local 138 if (item == null) { 142 return item.getIndex();
|
/device/linaro/bootloader/edk2/OvmfPkg/Include/Library/ |
QemuFwCfgLib.h | 108 Selects a firmware configuration item for reading.
110 Following this call, any data read from this item will start from
111 the beginning of the configuration item's data.
113 @param[in] QemuFwCfgItem - Firmware Configuration item to read
128 item where the previous read ended.
147 item where the previous write ended.
164 @return Value of Firmware Configuration item read
177 @return Value of Firmware Configuration item read
190 @return Value of Firmware Configuration item read
203 @return Value of Firmware Configuration item read [all...] |
/external/dynamic_depth/internal/dynamic_depth/ |
const.cc | 17 constexpr char kItem[] = "Item"; 54 const char* DynamicDepthConst::Item() { return kItem; }
|
depth_map.cc | 5 #include "dynamic_depth/item.h" 9 using ::dynamic_depth::Item; 211 const DepthMapParams& params, std::vector<std::unique_ptr<Item>>* items) { 241 items->emplace_back(Item::FromData(depth_item_params)); 249 items->emplace_back(Item::FromData(confidence_item_params));
|
/external/icu/icu4c/source/tools/toolutil/ |
package.cpp | 377 return (int32_t)strcmp(((Item *)left)->name, ((Item *)right)->name); 509 /* check that the itemCount fits, then the ToC table, then at least the header of the last item */ 523 /* offset of the last item plus at least 20 bytes for its header */ 532 /* do not modify the package length variable until the last item's length is set */ 548 /* swap the item name strings */ 552 // don't include padding bytes at the end of the item names 558 fprintf(stderr, "icupkg: total length of item name strings too long\n"); 565 fprintf(stderr, "icupkg failed to swap the input .dat package item name strings\n"); 570 // reset the Item entrie [all...] |
/external/llvm/lib/Target/ARM/MCTargetDesc/ |
ARMELFStreamer.cpp | 293 // Look for existing attribute item 294 if (AttributeItem *Item = getAttributeItem(Attribute)) { 297 Item->Type = AttributeItem::NumericAttribute; 298 Item->IntValue = Value; 302 // Create new attribute item 303 AttributeItem Item = { 309 Contents.push_back(Item); 314 // Look for existing attribute item 315 if (AttributeItem *Item = getAttributeItem(Attribute)) { 318 Item->Type = AttributeItem::TextAttribute [all...] |
/external/setupdesign/main/src/com/google/android/setupdesign/items/ |
SwitchItem.java | 28 * An item that is displayed with a switch, with methods to manipulate and listen to the checked 33 public class SwitchItem extends Item implements CompoundButton.OnCheckedChangeListener { 35 /** Listener for check state changes of this switch item. */ 43 void onCheckedChange(SwitchItem item, boolean isChecked); 49 /** Creates a default switch item. */ 55 * Creates a switch item. This constructor is used for inflation from XML. 57 * @param context The context which this item is inflated in. 58 * @param attrs The XML attributes defined on the item. 67 /** Sets whether this item should be checked. */ 78 /** @return True if this switch item is currently checked. * [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARM/MCTargetDesc/ |
ARMELFStreamer.cpp | 322 // Look for existing attribute item 323 if (AttributeItem *Item = getAttributeItem(Attribute)) { 326 Item->Type = AttributeItem::NumericAttribute; 327 Item->IntValue = Value; 331 // Create new attribute item 332 AttributeItem Item = { 338 Contents.push_back(Item); 343 // Look for existing attribute item 344 if (AttributeItem *Item = getAttributeItem(Attribute)) { 347 Item->Type = AttributeItem::TextAttribute [all...] |
/external/tensorflow/tensorflow/python/grappler/ |
item.py | 27 class Item(object): 34 """Creates an Item.
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/ |
MetaDataParser.py | 121 for Item in CommentList:
122 Line = Item[0]
123 LineNo = Item[1]
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/GenFds/ |
Capsule.py | 249 for Item in self.TokensDict.keys():
251 Item + \
253 self.TokensDict.get(Item) + \
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Workspace/ |
BuildClassObject.py | 81 for Item in self.SkuInfoList.values():
82 Rtn = Rtn + 'SkuId=' + Item.SkuId + ', ' + 'SkuIdName=' + Item.SkuIdName
|