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

1 2 3 4 5 67 8 91011>>

  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/MnpDxe/
MnpConfig.c 723 // Add to MNP service list
869 // Remove from MnpDeviceData service list
917 LIST_ENTRY *List;
921 List = &MnpServiceData->ChildrenList;
924 List,
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/IpSecDxe/
IpSecImpl.h 41 #define IPSEC_UDP_SERVICE_FROM_LIST(a) BASE_CR (a, IKE_UDP_SERVICE, List)
42 #define IPSEC_SPD_ENTRY_FROM_LIST(a) BASE_CR (a, IPSEC_SPD_ENTRY, List)
43 #define IPSEC_SAD_ENTRY_FROM_LIST(a) BASE_CR (a, IPSEC_SAD_ENTRY, List)
44 #define IPSEC_PAD_ENTRY_FROM_LIST(a) BASE_CR (a, IPSEC_PAD_ENTRY, List)
88 LIST_ENTRY List;
110 LIST_ENTRY List;
117 LIST_ENTRY List;
164 @param[in, out] FragmentTable Pointer to a list of fragments in form of IPsec
202 @param[in, out] FragmentTable Pointer to a list of fragments to be protected by
231 @param[in] AddressInfo A list of EFI_IP_ADDRESS_INFO that is used to check
    [all...]
  /external/autotest/client/common_lib/cros/
textfsm.py 21 a list of records, containing values extracted from the input text.
119 """Returns a list of valid option names."""
163 # Go up the list from the end until we see a filled value.
175 class List(OptionBase):
176 """Value takes the form of a list."""
192 self.value.value = list(self._value)
210 options: (list), A list of current Value Options.
253 """Returns a list of option names for this Value."""
522 values: (str), List of FSMVariables
    [all...]
  /external/googletest/googletest/test/
gtest-port_test.cc 9 // notice, this list of conditions and the following disclaimer.
11 // copyright notice, this list of conditions and the following disclaimer
42 #include <list>
218 IteratorTraits< ::std::list<bool>::iterator>::value_type>();
405 // Defines StringTypes as the list of all string types that class RE
    [all...]
  /external/llvm/lib/Bitcode/Writer/
ValueEnumerator.cpp 143 // Predict use-list order for this one.
145 SmallVector<Entry, 64> List;
149 List.push_back(std::make_pair(&U, List.size()));
151 if (List.size() < 2)
156 std::sort(List.begin(), List.end(), [&](const Entry &L, const Entry &R) {
197 List.begin(), List.end(),
203 Stack.emplace_back(V, F, List.size())
    [all...]
  /external/llvm/lib/TableGen/
TGLexer.h 46 Bit, Bits, Class, Code, Dag, Def, Foreach, Defm, Field, In, Int, Let, List,
85 /// Dependencies - This is the list of all included files.
  /external/llvm/utils/TableGen/
CodeGenMapTable.cpp 41 // values. RowFields is a list of fields that are required to have the same
71 // same key-value as the key instruction from RowInstrMap. Iterate over the list
72 // of columns in ValueCols (it is defined as a list<list<string> >. Therefore,
110 // List of fields/attributes that need to be same across all the
114 // List of fields/attributes that are constant across all the instruction
122 // List of values for the fields/attributes listed in 'ColFields', one for
189 // InstrDefs - list of instructions filtered using FilterClass defined
197 // KeyInstrVec - list of key instructions.
515 ListInit *List = CurMap->getValueAsListInit("ValueCols")
    [all...]
  /external/opencv/cvaux/src/
_cvfacedetection.h 20 // this list of conditions and the following disclaimer.
23 // this list of conditions and the following disclaimer in the documentation
310 class List
313 List();
315 virtual ~List();
321 };//class List
344 List * m_pFaceList;
  /external/pdfium/third_party/lcms/src/
cmsnamed.c 505 // Grow the list to keep at least NumElements
522 NewPtr = (_cmsNAMEDCOLOR*) _cmsRealloc(v ->ContextID, v ->List, size * sizeof(_cmsNAMEDCOLOR));
526 v ->List = NewPtr;
531 // Allocate a list for n elements
538 v ->List = NULL;
558 // Free a list
562 if (v ->List) _cmsFree(v ->ContextID, v ->List);
586 memmove(NewNC->List, v ->List, v->nColors * sizeof(_cmsNAMEDCOLOR))
    [all...]
  /external/swiftshader/third_party/LLVM/lib/TableGen/
TGLexer.h 44 Bit, Bits, Class, Code, Dag, Def, Defm, Field, In, Int, Let, List,
75 /// Dependencies - This is the list of all included files.
  /external/v8/testing/gtest/test/
gtest-port_test.cc 9 // notice, this list of conditions and the following disclaimer.
11 // copyright notice, this list of conditions and the following disclaimer
42 #include <list>
218 IteratorTraits< ::std::list<bool>::iterator>::value_type>();
405 // Defines StringTypes as the list of all string types that class RE
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/test/
gtest-port_test.cc 9 // notice, this list of conditions and the following disclaimer.
11 // copyright notice, this list of conditions and the following disclaimer
42 #include <list>
218 IteratorTraits< ::std::list<bool>::iterator>::value_type>();
410 // Defines StringTypes as the list of all string types that class RE
    [all...]
  /system/security/keystore/
keystore_cli_v2.cpp 60 " list-brillo-tests\n"
68 " list [--prefix=<key_name_prefix>]\n"
353 int List(const std::string& prefix) {
587 } else if (args[0] == "list-brillo-tests") {
605 } else if (args[0] == "list") {
606 return List(command_line->GetSwitchValueASCII("prefix"));
  /development/vndk/tools/sourcedr/sourcedr/blueprint/
blueprint.py 80 """Iterate the list of enumerations."""
500 class List(Expr, list):
501 """List expression."""
504 """Evaluate list elements under an environment."""
505 return List(item.eval(env) for item in self)
523 """List/string/integer plus operator."""
529 """Create a list/string/integer plus expression."""
539 """Evaluate list/string/integer plus operator under an environment."""
542 if isinstance(lhs, List) and isinstance(rhs, List)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/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/EdkCompatibilityPkg/Sample/Tools/Source/MakeDeps/
MakeDeps.c 32 // Structure to maintain a linked list of strings
112 // Here's all our globals. We need a linked list of include paths, a linked
113 // list of source files, a linked list of subdirectories (appended to each
128 BOOLEAN NoDupes; // to not list duplicate dependency files (for timing purposes)
237 // Go through the list of source files and process each.
243 // Clear out our list of processed files
300 // Free up our processed files list
360 ProcessedFiles - list of processed files.
486 // and add it to the list.
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/LegacyBootMaintUiLib/
LegacyBootMaintUi.c 655 Get the Menu Entry from the list in Menu Entry List.
658 Entry in the list, then ASSERT.
660 @param MenuOption The Menu Entry List to read the menu entry.
674 LIST_ENTRY *List;
678 List = MenuOption->Head.ForwardLink;
680 List = List->ForwardLink;
683 NewMenuEntry = CR (List, LEGACY_MENU_ENTRY, Link, LEGACY_MENU_ENTRY_SIGNATURE);
765 // Create oneof option list
    [all...]
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellCommandLib/
UefiShellCommandLib.c 126 Frees list of file handles.
128 @param[in] List The list to free.
132 IN BUFFER_LIST *List
137 if (List == NULL){
141 // enumerate through the buffer list and free all memory
143 for ( BufferListEntry = ( BUFFER_LIST *)GetFirstNode(&List->Link)
144 ; !IsListEmpty (&List->Link)
145 ; BufferListEntry = (BUFFER_LIST *)GetFirstNode(&List->Link)
175 // enumerate throught the list and free all the memory
    [all...]
  /external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/model/typesystem/
ReferenceTypeTest.java 56 new ReflectionInterfaceDeclaration(List.class, typeSolver),
59 new ReflectionInterfaceDeclaration(List.class, typeSolver),
68 new ReflectionInterfaceDeclaration(List.class, typeSolver),
71 new ReflectionInterfaceDeclaration(List.class, typeSolver),
162 assertEquals("java.util.List<A>", listOfA.describe());
163 assertEquals("java.util.List<java.lang.String>", listOfStrings.describe());
322 List<ResolvedReferenceType> ancestors = right.getAllAncestors();
400 List<A> elements;
408 assertEquals(List.class.getCanonicalName(), ref.getFieldType("elements").get().asReferenceType().getQualifiedName());
419 assertEquals(List.class.getCanonicalName(), ref.getFieldType("elements").get().asReferenceType().getQualifiedName())
449 ResolvedInterfaceDeclaration list = new ReflectionInterfaceDeclaration(List.class, typeResolver); local
487 ResolvedInterfaceDeclaration list = new ReflectionInterfaceDeclaration(List.class, typeResolver); local
    [all...]
  /external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/reflectionmodel/
ReflectionClassDeclarationTest.java 172 List<ResolvedMethodDeclaration> methods = string.getDeclaredMethods().stream()
202 // Serializable, Cloneable, List<E>, RandomAccess
205 List.class.getCanonicalName(),
214 // Serializable, Cloneable, Iterable<E>, Collection<E>, List<E>, RandomAccess
217 List.class.getCanonicalName(),
296 assertEquals(new ReferenceTypeImpl(new ReflectionInterfaceDeclaration(List.class, typeResolver), ImmutableList.of(typeVariable), typeResolver), ancestors.get("java.util.List"));
445 List<ResolvedReferenceType> interfaces = constructorDeclaration.getAllInterfaces();
    [all...]
  /external/libmojo/third_party/jinja2/
nodes.py 167 of a field is a list all the nodes in that list are returned.
170 if isinstance(item, list):
277 :class:`Name` or :class:`Tuple`), `iter` the iterable. `body` is a list
278 of nodes that are used as loop-body, and `else_` a list of nodes for the
279 `else` block. If no else node exists it has to be an empty list.
292 """A macro definition. `name` is the name of the macro, `args` a list of
293 arguments and `defaults` a list of defaults if there are any. `body` is
294 a list of nodes for the macro body.
335 The list of names may contain tuples if aliases are wanted
    [all...]
  /external/llvm/include/llvm/CodeGen/
DIE.h 246 /// DIELocList - Represents a pointer to a location list in the debug_loc
505 /// A list of DIE values.
507 /// This is a singly-linked list, but instead of reversing the order of
508 /// insertion, we keep a pointer to the back of the list so we can push in
511 /// There are two main reasons to choose a linked list over a customized
515 /// linked list here makes this way easier to accomplish.
519 /// linked-list node.
527 ListTy List;
569 List.push_back(*new (Alloc) Node(V));
570 return value_iterator(ListTy::toIterator(List.back()))
    [all...]
  /external/llvm/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
194 const MCPhysReg *List;
198 DiffListIterator() : Val(0), List(nullptr) {}
202 /// responsible for skipping the seed value if it is not part of the list.
205 List = DiffList;
208 /// advance - Move to the next list position, return the applied
209 /// differential. This function does not detect the end of the list, that
212 assert(isValid() && "Cannot move off the end of the list.")
    [all...]
  /external/llvm/include/llvm/Support/
Error.h 137 // class to add to the error list.
305 /// Special ErrorInfo subclass representing a list of ErrorInfos.
309 // handleErrors needs to be able to iterate the payload list of an
505 ErrorList &List = static_cast<ErrorList &>(*Payload);
507 for (auto &P : List.Payloads)
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfCompileUnit.cpp 401 RangeSpanList List(Asm->createTempSymbol("debug_ranges"), std::move(Range));
406 addSectionDelta(ScopeDIE, dwarf::DW_AT_ranges, List.getSym(),
409 addSectionLabel(ScopeDIE, dwarf::DW_AT_ranges, List.getSym(),
412 // Add the range list to the set of ranges to be emitted.
413 (Skeleton ? Skeleton : this)->CURangeLists.push_back(std::move(List));
427 SmallVector<RangeSpan, 2> List;
428 List.reserve(Ranges.size());
430 List.push_back(RangeSpan(DD->getLabelBeforeInsn(R.first),
432 attachRangesOrLowHighPC(Die, std::move(List));
    [all...]

Completed in 1242 milliseconds

1 2 3 4 5 67 8 91011>>