/external/icu/icu4c/source/tools/toolutil/ |
pkgitems.cpp | 18 * Companion file to package.cpp. Deals with details of ICU data item formats. 19 * Used for item dependencies. 40 /* item formats in common */ 57 // a data item in native-platform form ------------------------------------- *** 64 NativeItem(const Item *item, UDataSwapFn *swap) : swapped(NULL) { 65 setItem(item, swap); 80 void setItem(const Item *item, UDataSwapFn *swap) { 81 pItem=item; 325 Resource item=res_getTableItemByIndex(pResData, res, i, &itemKey); local 346 Resource item=res_getArrayItem(pResData, res, i); local [all...] |
/external/llvm/include/llvm/DebugInfo/CodeView/ |
StreamArray.h | 29 /// Item appropriately to represent the current record. 37 Error operator()(StreamRef Stream, uint32_t &Len, T &Item) const = delete;
|
/external/tensorflow/tensorflow/compiler/xla/service/ |
pattern_matcher.h | 142 // If true, actually capture matched item into the user pointer. 237 template <typename Item, typename... Patterns> 242 bool Match(const Item* item, MatchOption option) const { 243 bool matched = MatchImpl(item, option, std::integral_constant<size_t, 0>()); 249 bool Match(Item* item, MatchOption option) const { 250 bool matched = MatchImpl(item, option, std::integral_constant<size_t, 0>()); 265 bool MatchImpl(ItemType* item, MatchOption option, 269 return std::get<index>(patterns_).Match(item, option) & [all...] |
/external/tensorflow/tensorflow/python/grappler/ |
graph_placer.py | 28 from tensorflow.python.grappler import item as gitem 64 item = gitem.Item(optimized_metagraph) 68 _, original_run_time, _ = cluster.MeasureCosts(item) 86 hparams, item, cluster)
|
/external/webrtc/webrtc/base/ |
winfirewall.cc | 94 hr = apps->Item(bfilename, &app);
|
/dalvik/dx/src/com/android/dx/dex/cf/ |
AttributeTranslator.java | 303 InnerClassList.Item foundThisClass = null; 307 InnerClassList.Item item = list.get(i); local 308 CstType innerClass = item.getInnerClass(); 310 foundThisClass = item; 311 } else if (thisClass.equals(item.getOuterClass())) {
|
/development/samples/HoneycombGallery/src/com/example/android/hcgallery/ |
ContentFragment.java | 22 import android.content.ClipData.Item; 77 // Handle drag events when a list item is dragged into the view 159 // is restored, it selects the appropriate item and sends the event 175 public boolean onOptionsItemSelected(MenuItem item) { 177 switch (item.getItemId()) { 185 return super.onOptionsItemSelected(item); 244 Item item = data.getItemAt(0); local 245 String textData = (String) item.getText();
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/ |
StringExtras.h | 336 const Arg &Item) { 337 Result += Item;
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/PDB/ |
UDTLayout.cpp | 294 [](uint32_t Off, const LayoutItemBase *Item) { 295 return (Off < Item->getOffsetInParent());
|
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/MnpDxe/ |
MnpConfig.c | 1019 Check whether the token specified by Arg matches the token in Item.
1022 @param[in] Item Pointer to the NET_MAP_ITEM.
1027 token in Item.
1029 Item.
1036 IN NET_MAP_ITEM *Item,
1044 TokenInItem = (EFI_MANAGED_NETWORK_COMPLETION_TOKEN *) Item->Key;
1058 Cancel the token specified by Arg if it matches the token in Item.
1061 @param[in, out] Item Pointer to the NET_MAP_ITEM.
1065 @retval EFI_SUCCESS The Arg is NULL, and the token in Item is cancelled,
1066 or the Arg isn't NULL, and the token in Item is [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/ |
CFLAndersAliasAnalysis.cpp | 633 static void processWorkListItem(const WorkListItem &Item, const CFLGraph &Graph, 636 auto FromNode = Item.From; 637 auto ToNode = Item.To; 695 switch (Item.State) { 793 for (const auto &Item : WorkList) 794 processWorkListItem(Item, Graph, ReachSet, MemSet, NextList); [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/Support/ |
BinaryStreamTest.cpp | 470 Error operator()(BinaryStreamRef Stream, uint32_t &Len, StringRef &Item) { 482 Item = 792 static size_t length(const BinaryItemStreamObject &Item) { 793 return Item.Bytes.size(); 796 static ArrayRef<uint8_t> bytes(const BinaryItemStreamObject &Item) { 797 return Item.Bytes;
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-rc/ |
ResourceFileWriter.cpp | 739 // RESDIRENTRY structure, stripped from the last item. Stripping made 849 for (auto Item : Res->ItemEntries) { 850 writeObject(Item); [all...] |
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/ |
VfrUtilityLib.cpp | 398 SConfigItem *Item;
406 for (Item = mItemListHead; Item != NULL; Item = Item->mNext) {
407 if (Item->mId != NULL || Item->mInfoStrList == NULL) {
410 fprintf (pFile, "\nunsigned char %s%sBlockName[] = {", BaseName, Item->mName);
413 for (Info = Item->mInfoStrList; Info != NULL; Info = Info->mNext) {
418 for (Info = Item->mInfoStrList; Info != NULL; Info = Info->mNext) { [all...] |
/external/antlr/runtime/Delphi/Sources/Antlr3.Runtime/ |
Antlr.Runtime.Tools.pas | 170 function BinarySearch(const Item: T; out Index: Integer): Boolean; overload; 171 function BinarySearch(const Item: T; out Index: Integer; const AComparer: IComparer<T>): Boolean; overload; 389 function InCircularRange(Bottom, Item, TopInc: Integer): Boolean; 500 Item: T; 502 for Item in List do 504 Insert(Index, Item); 721 item: TPair<TKey,TValue>; 724 for item in Collection do 725 AddOrSetValue(item.Key, item.Value) [all...] |
Antlr.Runtime.Collections.pas | 63 procedure Push(const Item: T); 127 procedure Push(const Item: T); 328 procedure TStackList<T>.Push(const Item: T); 330 Add(Item);
|
/external/protobuf/csharp/src/Google.Protobuf.Test/TestProtos/ |
UnittestIssues.cs | 58 new pbr::GeneratedClrTypeInfo(typeof(global::UnitTest.Issues.TestProtos.ItemField), global::UnitTest.Issues.TestProtos.ItemField.Parser, new[]{ "Item" }, null, null, null), 805 /// <summary>Field number for the "item" field.</summary> 808 public int Item { 826 if (Item != other.Item) return false; 832 if (Item != 0) hash ^= Item.GetHashCode(); 841 if (Item != 0) { 843 output.WriteInt32(Item); 849 if (Item != 0) [all...] |
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/ |
Check.py | 383 for Item in RecordDict[Key]:
384 Path = mws.relpath(Item[1], EccGlobalData.gWorkspace)
386 EccGlobalData.gDb.TblReport.Insert(ERROR_INCLUDE_FILE_CHECK_NAME, OtherMsg="The file name for [%s] is duplicate" % Path, BelongsToTable='File', BelongsToItem=Item[0])
[all...] |
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Library/ |
Misc.py | 193 for Item in SkipList:
194 if Item in Dirs:
195 Dirs.remove(Item)
196 if Item in Files:
197 Files.remove(Item)
786 # Judge two lists are identical(contain same item).
810 # Convert item in ArchList if the start character is lower case.
[all...] |
/external/protobuf/src/google/protobuf/util/ |
message_differencer_unittest.cc | 1034 protobuf_unittest::TestDiffMessage::Item* item = msg1.add_item(); local 1066 protobuf_unittest::TestDiffMessage::Item* item = msg1.add_item(); local 1126 protobuf_unittest::TestDiffMessage::Item* item = msg1.add_item(); local 1247 protobuf_unittest::TestDiffMessage::Item* item = msg1.add_item(); local 1324 protobuf_unittest::TestDiffMessage::Item* item = msg1.add_item(); local 1406 protobuf_unittest::TestDiffMessage::Item* item = msg1.add_item(); local 1528 protobuf_unittest::TestDiffMessage::Item* item = msg1.add_item(); local 1646 protobuf_unittest::TestDiffMessage::Item* item; local 1736 protobuf_unittest::TestDiffMessage::Item* item; local 1756 protobuf_unittest::TestDiffMessage::Item* item; local 1792 protobuf_unittest::TestDiffMessage::Item* item; local 1829 protobuf_unittest::TestDiffMessage::Item* item; local 2226 protobuf_unittest::TestDiffMessage::Item* item = msg1.add_item(); local 2269 protobuf_unittest::TestDiffMessage::Item* item = msg1.add_item(); local 2306 protobuf_unittest::TestDiffMessage::Item* item = msg1.add_item(); local 2333 protobuf_unittest::TestDiffMessage::Item* item = msg1.add_item(); local 2886 protobuf_unittest::TestDiffMessage::Item* item = msg1.add_item(); local 2912 protobuf_unittest::TestDiffMessage::Item* item; local 2982 protobuf_unittest::TestDiffMessage::Item* item; local [all...] |
/external/protobuf/python/google/protobuf/pyext/ |
repeated_composite_container.cc | 401 static PyObject* Item(RepeatedCompositeContainer* self, Py_ssize_t index) { 409 PyObject* item = PyList_GetItem(self->child_messages, index); local 410 if (item == NULL) { 413 Py_INCREF(item); 414 return item; 423 PyObject* item = Item(self, index); local 424 if (item == NULL) { 434 return item; 544 (ssizeargfunc)Item /* sq_item * [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-xray/ |
xray-stacks.cpp | 123 Converter->SymbolOrNumber(Item.FuncId), Item.TId, 124 DecodeRecordType(Item.RecordType));
|
/frameworks/av/services/camera/libcameraservice/common/ |
DepthPhotoProcessor.cpp | 59 using dynamic_depth::Item; 335 ExifOrientation exifOrientation, std::vector<std::unique_ptr<Item>> *items /*out*/, 420 std::vector<std::unique_ptr<Item>> items;
|
/external/mesa3d/src/gallium/drivers/r300/compiler/ |
r500_fragprog.c | 66 writer = list_ptr->Item; 131 writer = list_ptr->Item;
|
/external/swiftshader/third_party/subzero/src/ |
IceGlobalContext.h | 333 /// This is the first work item sequence number that the parser produces, and 343 void optQueueBlockingPush(std::unique_ptr<OptWorkItem> Item); 363 void emitQueueBlockingPush(std::unique_ptr<EmitterWorkItem> Item);
|