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

1 2 3 45 6 7 8 91011>>

  /external/nanohttpd/core/src/test/java/fi/iki/elonen/
HttpHeadRequestTest.java 13 * list of conditions and the following disclaimer.
16 * this list of conditions and the following disclaimer in the documentation
41 import java.util.List;
57 assertTrue(this.testServer.decodedParamters.get("foo") instanceof List);
59 assertTrue(this.testServer.decodedParamters.get("bar") instanceof List);
67 assertTrue(this.testServer.decodedParamters.get("foo") instanceof List);
71 assertTrue(this.testServer.decodedParamters.get("zot") instanceof List);
73 assertTrue(this.testServer.decodedParamters.get("zim") instanceof List);
91 assertTrue(this.testServer.decodedParamters.get("foo") instanceof List);
94 assertTrue(this.testServer.decodedParamters.get("baz") instanceof List);
    [all...]
  /external/pdfium/xfa/fxfa/parser/
cxfa_object.h 18 List,
  /external/python/cpython2/Lib/test/
test_bisect.py 237 for insorted in (list(), UserList()):
251 class List(list):
256 lst = List()
  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
MachinePassRegistry.h 32 /// registration list.
46 /// MachinePassRegistryNode - Machine pass node stored in registration list.
53 MachinePassRegistryNode *Next; // Next function pass in list.
87 MachinePassRegistryNode *List; // List of registry nodes.
89 MachinePassRegistryListener* Listener;// Listener for list adds are removes.
98 MachinePassRegistryNode *getList() { return List; }
103 /// Add - Adds a function pass to the registration list.
107 /// Remove - Removes a function pass from the registration list.
137 // Make sure we listen for list changes
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
MachineRegisterInfo.cpp 35 "Vreg use list non-empty still?");
119 /// VRegInfo info list and it reallocated. Update the use/def lists info
126 MachineOperand *List = VRegInfo[Reg].second;
127 if (!List) continue;
129 List->Contents.Reg.Prev = &VRegInfo[Reg].second;
  /external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
ilist_node.h 1 //==-- llvm/ADT/ilist_node.h - Intrusive Linked List Helper ------*- C++ -*-==//
104 /// An intrusive list node.
108 /// \a value_type for the list.
113 /// By default, an \a ilist_node knows whether it is the list sentinel (an
123 /// list. (ilist_sentinel_tracking<false> turns sentinel tracking off all the
128 /// multiple lists simultaneously, where each list is given the same tag.
238 /// An ilist node that can access its parent list.
241 /// \c ParentTy to have \a getSublistAccess() to get a reference to the list.
260 /// \brief Get the previous node, or \c nullptr for the list head.
263 // (and would need the type of the list)
    [all...]
  /external/v8/src/
v8threads.h 19 enum List {FREE_LIST, IN_USE_LIST};
21 void LinkInto(List list);
106 // In the following two lists there is always at least one object on the list.
109 // Head of linked list of free states.
111 // Head of linked list of states in use.
  /libcore/ojluni/src/main/java/java/util/
List.java 32 * interface has precise control over where in the list each element is
34 * the list), and search for elements in the list.<p>
40 * that someone might wish to implement a list that prohibits duplicates, by
44 * The <tt>List</tt> interface places additional stipulations, beyond those
50 * The <tt>List</tt> interface provides four methods for positional (indexed)
51 * access to list elements. Lists (like Java arrays) are zero based. Note
54 * example). Thus, iterating over the elements in a list is typically
58 * The <tt>List</tt> interface provides a special iterator, called a
62 * list iterator that starts at a specified position in the list.<p
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
ilist_node.h 1 //==-- llvm/ADT/ilist_node.h - Intrusive Linked List Helper ------*- C++ -*-==//
104 /// An intrusive list node.
108 /// \a value_type for the list.
113 /// By default, an \a ilist_node knows whether it is the list sentinel (an
123 /// list. (ilist_sentinel_tracking<false> turns sentinel tracking off all the
128 /// multiple lists simultaneously, where each list is given the same tag.
238 /// An ilist node that can access its parent list.
241 /// \c ParentTy to have \a getSublistAccess() to get a reference to the list.
260 /// \brief Get the previous node, or \c nullptr for the list head.
263 // (and would need the type of the list)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
ilist_node.h 1 //==-- llvm/ADT/ilist_node.h - Intrusive Linked List Helper ------*- C++ -*-==//
104 /// An intrusive list node.
108 /// \a value_type for the list.
113 /// By default, an \a ilist_node knows whether it is the list sentinel (an
123 /// list. (ilist_sentinel_tracking<false> turns sentinel tracking off all the
128 /// multiple lists simultaneously, where each list is given the same tag.
238 /// An ilist node that can access its parent list.
241 /// \c ParentTy to have \a getSublistAccess() to get a reference to the list.
260 /// \brief Get the previous node, or \c nullptr for the list head.
263 // (and would need the type of the list)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
storport.h 50 STOR_SCATTER_GATHER_ELEMENT List[0];
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_bisect.py 237 for insorted in (list(), UserList()):
251 class List(list):
256 lst = List()
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_bisect.py 237 for insorted in (list(), UserList()):
251 class List(list):
256 lst = List()
  /prebuilts/go/darwin-x86/test/ken/
rob2.go 7 // Test general operation using s-list.
22 type List struct {
32 list List
38 return this.list.car
42 return this.list.cdr
80 var list *Slist
84 list = Parse()
85 if list == nil {
88 r := list.Print(
    [all...]
  /prebuilts/go/linux-x86/test/ken/
rob2.go 7 // Test general operation using s-list.
22 type List struct {
32 list List
38 return this.list.car
42 return this.list.cdr
80 var list *Slist
84 list = Parse()
85 if list == nil {
88 r := list.Print(
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_bisect.py 237 for insorted in (list(), UserList()):
251 class List(list):
256 lst = List()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_bisect.py 237 for insorted in (list(), UserList()):
251 class List(list):
256 lst = List()
  /development/vndk/tools/header-checker/tests/input/
example1.h 86 class List
90 * One element in the list.
100 friend class List;
110 typedef List<float> float_list;
113 typedef List<int> int_list;
115 List<float>::_Node node(2);
119 List<IChild> castInterface(List<IParent> parent, const char *childIndicator, bool emitError) {return List<IChild>();}
122 castInterface<float, float, float , float>(List<float>(), "foo", true)
    [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Drivers/PciHostBridgeDxe/
PciHostBridge.c 645 LIST_ENTRY *List;
650 List = HostBridgeInstance->Head.ForwardLink;
652 while (List != &HostBridgeInstance->Head) {
653 RootBridgeInstance = DRIVER_INSTANCE_FROM_LIST_ENTRY (List);
668 List = List->ForwardLink;
681 LIST_ENTRY *List;
688 List = HostBridgeInstance->Head.ForwardLink;
689 while (List != &HostBridgeInstance->Head) {
690 RootBridgeInstance = DRIVER_INSTANCE_FROM_LIST_ENTRY (List);
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/
VfrCompiler.cpp 37 va_list List;
38 va_start (List, MsgFmt);
39 PrintMessage ((CHAR8 *) "ERROR", FileName, LineNumber, MessageCode, (CHAR8 *) Text, (CHAR8 *) MsgFmt, List);
40 va_end (List);
817 // Record List Adjust Failed
939 DebugError (NULL, 0, 0001, "Error opening the record list file", mOptions.RecordListFile);
953 fprintf (pOutFile, "\n//\n// All Opcode Record List \n//\n");
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Ata/AtaBusDxe/
AtaPassThruExecute.c 606 LIST_ENTRY *List;
614 List = &AtaDevice->AtaTaskList;
615 for (Entry = GetFirstNode (List); !IsNull (List, Entry);) {
695 // Remove the SubTask from the Task list.
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/EbcDxe/Ipf/
EbcSupport.c 78 @param ... The variable arguments list.
97 VA_LIST List;
122 VA_START (List, Arg1);
123 Arg2 = VA_ARG (List, UINT64);
124 Arg3 = VA_ARG (List, UINT64);
125 Arg4 = VA_ARG (List, UINT64);
126 Arg5 = VA_ARG (List, UINT64);
127 Arg6 = VA_ARG (List, UINT64);
128 Arg7 = VA_ARG (List, UINT64);
129 Arg8 = VA_ARG (List, UINT64);
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/DnsDxe/
DnsDriver.c 483 // Create the timer event to update DNS cache list.
741 LIST_ENTRY *List;
773 List = &DnsSb->Dns4ChildrenList;
778 List,
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/Ip6Dxe/
Ip6Common.c 377 LIST_ENTRY *List;
382 List = &IpSb->Children;
386 List,
394 Remove the IPv6 address from the address list node points to IP6_ADDRESS_INFO.
396 This function removes the matching IPv6 addresses from the address list and
397 adjusts the address count of the address list. If IpSb is not NULL, this function
399 its solicited-node multicast MAC address from the filter list and sends out
400 a Multicast Listener Done. If Prefix is NULL, all address in the address list
402 with PrefixLength in the address list will be removed.
405 @param[in, out] AddressList Address list array.
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/TcpDxe/
TcpDriver.c 435 LIST_ENTRY *List;
468 List = &TcpServiceData->SocketList;
473 List,
842 // Remove this node from the list.

Completed in 1076 milliseconds

1 2 3 45 6 7 8 91011>>