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

<<11121314151617181920>>

  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/Support/
FormatVariadicTest.cpp 529 for (auto &Item : Ts) {
530 Stream << llvm::apply_tuple(format_tuple(Line), Item) << "\n";
599 void format(raw_ostream &S, StringRef Options) override { S << -Item; }
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/MetaFileWorkspace/
MetaFileParser.py 288 for Item in GetSplitValueList(self._CurrentLine[1:-1], TAB_COMMA_SPLIT):
289 if Item == '':
291 ItemList = GetSplitValueList(Item, TAB_SPLIT)
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Object/Parser/
InfDefineObject.py 477 for Item in TypeList:
478 if Item not in DT.MODULE_LIST:
479 ErrorInInf(ST.ERR_INF_PARSER_DEFINE_FROMAT_INVALID%(Item),
    [all...]
  /external/protobuf/src/google/protobuf/
wire_format_unittest.cc 445 raw.item(0).type_id());
448 raw.item(1).type_id());
449 EXPECT_EQ(kUnknownTypeId, raw.item(2).type_id());
452 EXPECT_TRUE(message1.ParseFromString(raw.item(0).message()));
456 EXPECT_TRUE(message2.ParseFromString(raw.item(1).message()));
459 EXPECT_EQ("bar", raw.item(2).message());
518 unittest::RawMessageSet::Item* item = raw.add_item(); local
519 item->set_type_id(
523 message.SerializeToString(item->mutable_message())
527 unittest::RawMessageSet::Item* item = raw.add_item(); local
536 unittest::RawMessageSet::Item* item = raw.add_item(); local
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/ObjectYAML/
CodeViewYAMLDebugSections.cpp 425 for (const auto &Item : zip(LC.Lines, LC.Columns)) {
426 auto &L = std::get<0>(Item);
427 auto &C = std::get<1>(Item);
696 // First item is a single null string, skip it.
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/AutoGen/
GenPcdDb.py 277 # The class holds the Pcd database items. ItemSize if not zero should match the item datum type in the C structure.
393 # The only variable table is stringtable, it is not Composite item, should not reach here
610 ## Find the index in two list where the item matches the key separately
    [all...]
  /external/tensorflow/tensorflow/contrib/verbs/
rdma.h 361 // Re-item:
499 void EnqueueItem(string Item);
  /external/webrtc/webrtc/modules/audio_device/win/
audio_device_core_win.cc     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
CodeGenPrepare.cpp 3076 ValueInBB item = { PV, isa<Instruction>(PV) ? B : nullptr }; local
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/BPDG/
GenVpd.py 220 ValueList = [item.strip() for item in ValueList]
236 "The value item %s in byte array %s is an invalid HEX value.(File: %s Line: %s)" % \
244 "The value item %s in byte array %s is an invalid DECIMAL value.(File: %s Line: %s)" % \
249 "The value item %s in byte array %s do not in range 0 ~ 0xFF(File: %s Line: %s)" % \
583 # Delete the item's offset that has been fixed and added into fixed offset list
586 # After item added, should enlarge the length of fixed pcd offset list
631 # Delete the item's offset that has been fixed and added into fixed offset list
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Library/
String.py 630 # Replace "'" with "''" in each item of StringList
657 for Item in List:
658 Str = Str + Item + Split
  /device/linaro/bootloader/edk2/MdeModulePkg/Include/Library/
NetLib.h 861 Allocate an item to save the <Key, Value> pair to the head of the netmap.
863 Allocate an item to save the <Key, Value> pair and add corresponding node entry
873 @retval EFI_OUT_OF_RESOURCES Failed to allocate the memory for the item.
874 @retval EFI_SUCCESS The item is inserted to the head.
886 Allocate an item to save the <Key, Value> pair to the tail of the netmap.
888 Allocate an item to save the <Key, Value> pair and add corresponding node entry
898 @retval EFI_OUT_OF_RESOURCES Failed to allocate the memory for the item.
899 @retval EFI_SUCCESS The item is inserted to the tail.
911 Finds the key in the netmap and returns the point to the item containing the Key.
913 Iterate the Used doubly linked list of the netmap to get every item. Compare the key of every
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/Ip6Dxe/
Ip6Input.c     [all...]
  /external/guava/guava-testlib/src/com/google/common/testing/
ClassSanityTester.java 40 import com.google.common.testing.RelationshipTester.Item;
585 // Each group is a List of items, each item has a list of factory args.
589 @Override String reportItem(Item<?> item) {
590 List<Object> factoryArgs = argGroups.get(item.groupNumber).get(item.itemNumber);
    [all...]
  /external/jarjar/lib/
asm-4.0.jar 
asm-commons-4.0.jar 
  /external/owasp/sanitizer/tools/findbugs/lib/
asm-3.3.jar 
asm-commons-3.3.jar 
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-rc/
ResourceScriptParser.cpp 498 ASSIGN_OR_RETURN(Item, readIntOrString());
499 Data.push_back(*Item);
613 // Read a set of items. Each item is of one of three kinds:
  /frameworks/av/media/libstagefright/httplive/
M3UParser.cpp 108 Media &item = mMediaItems.editItemAt(mMediaItems.size() - 1); local
110 item.mName = name;
113 item.mURI = uri;
117 item.mLanguage = language;
120 item.mFlags = flags;
217 const Media &item = mMediaItems.itemAt(index); local
218 const char *lang = item.mLanguage.empty() ? "und" : item.mLanguage.c_str();
224 format->setInt32("auto", !!(item.mFlags & MediaGroup::FLAG_AUTOSELECT));
225 format->setInt32("default", !!(item.mFlags & MediaGroup::FLAG_DEFAULT))
235 const Media &item = mMediaItems.itemAt(i); local
696 Item *item = &mItems.editItemAt(mItems.size() - 1); local
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/X86/
X86ISelLowering.cpp     [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/GenFds/
FdfParser.py 531 Item = ItemList[0]
532 if Item == '' or Item == 'RULE':
535 if Item == 'DEFINES':
537 elif Item == 'VTF' and len(ItemList) == 3:
715 for Item in IfList:
716 if Item[1] == False:
    [all...]
  /art/dexlayout/
compact_dex_writer.cc 108 dex_ir::Item* item,
112 item_(item),
120 // After having written, maybe dedupe the whole code item (excluding padding).
127 // Update the IR offset to the offset of the deduped item.
129 // Clear the written data for the item so that the stream write doesn't abort in the future.
172 // In case the instruction goes past the end of the code item, make sure to not process it.
194 // item.
227 // Failed to insert means we deduped, return the existing item offset.
357 *error_msg = android::base::StringPrintf("Conflicting code item for method id %u"
    [all...]
  /dalvik/dx/src/com/android/dx/dex/cf/
CfTranslator.java 171 BootstrapMethodsList.Item bootstrapMethod = cf.getBootstrapMethods().get(index);
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Include/
EfiPxe.h     [all...]

Completed in 2380 milliseconds

<<11121314151617181920>>