HomeSort by relevance Sort by last modified time
    Searched defs:List (Results 201 - 225 of 461) sorted by null

1 2 3 4 5 6 7 891011>>

  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/Support/
Error.h 158 // class to add to the error list.
340 /// Special ErrorInfo subclass representing a list of ErrorInfos.
343 // handleErrors needs to be able to iterate the payload list of an
864 ErrorList &List = static_cast<ErrorList &>(*Payload);
866 for (auto &P : List.Payloads)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/MC/
MCRegisterInfo.h 110 // Offset into MCRI::SubRegIndices of a list of sub-register indices for each
114 // RegUnits - Points to the list of register units. The low 4 bits holds the
118 /// Index into list with lane mask sequences. The sequence contains a lanemask
195 const MCPhysReg *List = nullptr;
203 /// responsible for skipping the seed value if it is not part of the list.
206 List = DiffList;
209 /// advance - Move to the next list position, return the applied
210 /// differential. This function does not detect the end of the list, that
213 assert(isValid() && "Cannot move off the end of the list.");
214 MCPhysReg D = *List++
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/Support/
Error.h 158 // class to add to the error list.
340 /// Special ErrorInfo subclass representing a list of ErrorInfos.
343 // handleErrors needs to be able to iterate the payload list of an
864 ErrorList &List = static_cast<ErrorList &>(*Payload);
866 for (auto &P : List.Payloads)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/MC/
MCRegisterInfo.h 110 // Offset into MCRI::SubRegIndices of a list of sub-register indices for each
114 // RegUnits - Points to the list of register units. The low 4 bits holds the
118 /// Index into list with lane mask sequences. The sequence contains a lanemask
195 const MCPhysReg *List = nullptr;
203 /// responsible for skipping the seed value if it is not part of the list.
206 List = DiffList;
209 /// advance - Move to the next list position, return the applied
210 /// differential. This function does not detect the end of the list, that
213 assert(isValid() && "Cannot move off the end of the list.");
214 MCPhysReg D = *List++
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/Support/
Error.h 158 // class to add to the error list.
340 /// Special ErrorInfo subclass representing a list of ErrorInfos.
343 // handleErrors needs to be able to iterate the payload list of an
864 ErrorList &List = static_cast<ErrorList &>(*Payload);
866 for (auto &P : List.Payloads)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/MC/
MCRegisterInfo.h 110 // Offset into MCRI::SubRegIndices of a list of sub-register indices for each
114 // RegUnits - Points to the list of register units. The low 4 bits holds the
118 /// Index into list with lane mask sequences. The sequence contains a lanemask
195 const MCPhysReg *List = nullptr;
203 /// responsible for skipping the seed value if it is not part of the list.
206 List = DiffList;
209 /// advance - Move to the next list position, return the applied
210 /// differential. This function does not detect the end of the list, that
213 assert(isValid() && "Cannot move off the end of the list.");
214 MCPhysReg D = *List++
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/Support/
Error.h 158 // class to add to the error list.
340 /// Special ErrorInfo subclass representing a list of ErrorInfos.
343 // handleErrors needs to be able to iterate the payload list of an
864 ErrorList &List = static_cast<ErrorList &>(*Payload);
866 for (auto &P : List.Payloads)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/compiler/
ast.py 11 if t is tuple or t is list:
503 def __init__(self, assign, list, body, else_, lineno=None):
505 self.list = list
513 children.append(self.list)
521 nodelist.append(self.list)
528 return "For(%s, %s, %s, %s)" % (repr(self.assign), repr(self.list), repr(self.body), repr(self.else_))
818 class List(Node):
832 return "List(%s)" % (repr(self.nodes),)
856 def __init__(self, assign, list, ifs, lineno=None)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/compiler/
ast.py 11 if t is tuple or t is list:
503 def __init__(self, assign, list, body, else_, lineno=None):
505 self.list = list
513 children.append(self.list)
521 nodelist.append(self.list)
528 return "For(%s, %s, %s, %s)" % (repr(self.assign), repr(self.list), repr(self.body), repr(self.else_))
818 class List(Node):
832 return "List(%s)" % (repr(self.nodes),)
856 def __init__(self, assign, list, ifs, lineno=None)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
ast.py 11 if t is tuple or t is list:
503 def __init__(self, assign, list, body, else_, lineno=None):
505 self.list = list
513 children.append(self.list)
521 nodelist.append(self.list)
528 return "For(%s, %s, %s, %s)" % (repr(self.assign), repr(self.list), repr(self.body), repr(self.else_))
818 class List(Node):
832 return "List(%s)" % (repr(self.nodes),)
856 def __init__(self, assign, list, ifs, lineno=None)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
ast.py 11 if t is tuple or t is list:
503 def __init__(self, assign, list, body, else_, lineno=None):
505 self.list = list
513 children.append(self.list)
521 nodelist.append(self.list)
528 return "For(%s, %s, %s, %s)" % (repr(self.assign), repr(self.list), repr(self.body), repr(self.else_))
818 class List(Node):
832 return "List(%s)" % (repr(self.nodes),)
856 def __init__(self, assign, list, ifs, lineno=None)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_weakref.py 311 class List(list): pass
312 lyst = List()
342 "list of refs does not match")
349 "list of refs does not match")
353 "list of refs not cleared")
357 "list of refs does not match for int")
400 # when the second attempt to remove the instance from the "list
888 objects2 = list(objects)
897 objects2 = list(objects)
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/StrGather/
StrGather.c 52 // We keep a linked list of these for the source files we process
71 // Here's all our globals. We need a linked list of include paths, a linked
72 // list of source files, a linked list of subdirectories (appended to each
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/BdsDxe/BootMaint/
BootOption.c 181 Get the Menu Entry from the list in Menu Entry List.
184 Entry in the list, then ASSERT.
186 @param MenuOption The Menu Entry List to read the menu entry.
200 LIST_ENTRY *List;
204 List = MenuOption->Head.ForwardLink;
206 List = List->ForwardLink;
209 NewMenuEntry = CR (List, BM_MENU_ENTRY, Link, BM_MENU_ENTRY_SIGNATURE);
215 This function build the FsOptionMenu list which records all
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/IpSecDxe/
Ike.h 39 // For Algorithm search in support list.Last two types are for IKEv2 only.
201 LIST_ENTRY List;
  /device/linaro/bootloader/edk2/ShellPkg/Application/Shell/
Shell.c 370 // Initialize the LIST ENTRY objects...
732 CONST ALIAS_LIST *List;
738 List = ShellCommandGetInitAliasList();
741 // for each command in the List
743 for ( Node = (ALIAS_LIST*)GetFirstNode(&List->Link)
744 ; !IsNull (&List->Link, &Node->Link)
745 ; Node = (ALIAS_LIST *)GetNextNode(&List->Link, &Node->Link)
    [all...]
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellLib/
UefiShellLib.c 142 // now parse the list of returned handles
    [all...]
  /external/llvm/lib/TableGen/
Record.cpp 142 return "list<" + Ty->getAsString() + ">";
522 // Verify that all of the elements of the list are subclasses of the
549 assert(i < NumValues && "List element index out of range!");
552 PrintFatalError("Expected record in list!");
723 assert(!LHSl->empty() && "Empty list in head");
730 assert(!LHSl->empty() && "Empty list in tail");
1024 // First, replace the foreach variable with the list item
1031 // Now run the operator and use its result as the new list item
    [all...]
TGParser.cpp 184 // Since everything went well, we can now set the "superclass" list for the
300 ListInit *List = dyn_cast<ListInit>(CurLoop.ListValue);
301 if (!List) {
302 Error(Loc, "Loop list is not a list");
307 for (unsigned i = 0; i < List->size(); ++i) {
308 Init *ItemVal = List->resolveListElementReference(*CurRec, nullptr, i);
464 // If there is no template arg list, we're done.
472 TokError("subclass reference requires a non-empty list of template values");
479 Result.Rec = nullptr; // Error parsing value list
    [all...]
  /external/pdfium/core/fxcrt/css/
cfx_css.h 31 List,
  /external/python/cpython2/Lib/test/
test_weakref.py 335 class List(list): pass
336 lyst = List()
366 "list of refs does not match")
373 "list of refs does not match")
377 "list of refs not cleared")
381 "list of refs does not match for int")
424 # when the second attempt to remove the instance from the "list
922 list(it)
    [all...]
  /external/swiftshader/third_party/subzero/src/
IceTargetLoweringX8632Traits.h 427 /// SizeOf is used to obtain the size of an initializer list as a constexpr
627 const RegisterList &List = I.second;
628 RegisterList Shuffled(List);
631 Permutation[List[SI]] = Shuffled[SI];
644 const RegisterList &List = I.second;
646 for (RegNumT Register : List) {
668 // relative to the other arguments in the argument list, are placed in
    [all...]
  /external/v8/src/regexp/
regexp-ast.h 96 static inline ZoneList<CharacterRange>* List(Zone* zone,
98 ZoneList<CharacterRange>* list = local
100 list->Add(range, zone);
101 return list;
114 // Whether a range list is in canonical form: Ranges ordered by from value,
117 // Convert range list to canonical form. The characters covered by the ranges
119 // adjacent ranges are merged. The resulting list may be shorter than the
  /frameworks/base/services/core/jni/BroadcastRadio/
convert.cpp 110 } List;
286 auto len = (jList == nullptr) ? 0 : env->CallIntMethod(jList, gjni.List.size);
287 hidl_vec<hidl_string> list(len);
291 jList, gjni.List.get, i)));
292 list[i] = StringFromJava(env, jString);
295 return list;
699 auto listClass = FindClassOrDie(env, "java/util/List");
700 gjni.List.get = GetMethodIDOrDie(env, listClass, "get", "(I)Ljava/lang/Object;");
701 gjni.List.size = GetMethodIDOrDie(env, listClass, "size", "()I");
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
DIE.h 140 /// A list of all the unique abbreviations in use.
310 /// Represents a pointer to a location list in the debug_loc
570 /// A list of DIE values.
572 /// This is a singly-linked list, but instead of reversing the order of
573 /// insertion, we keep a pointer to the back of the list so we can push in
576 /// There are two main reasons to choose a linked list over a customized
580 /// linked list here makes this way easier to accomplish.
584 /// linked-list node.
592 ListTy List;
634 List.push_back(*new (Alloc) Node(V))
    [all...]

Completed in 3712 milliseconds

1 2 3 4 5 6 7 891011>>