HomeSort by relevance Sort by last modified time
    Searched refs:LIST (Results 26 - 50 of 82) sorted by null

12 3 4

  /external/llvm/utils/lit/lit/
TestRunner.py 109 # Empty the list and note that we've done a pass over the list
110 self._procs = [] # Python2 doesn't have list.clear()
123 self.outputFiles = list(outputFiles)
219 # from a file are represented with a list [file, mode, file-object]
297 args = list(j.args)
550 Parse the commands in an integrated test script file into a list of
671 # Note Python 3 map() gives an iterator rather than a list so explicitly
672 # convert to list before returning.
673 return list(map(processLine, script)
    [all...]
  /external/libchrome/base/
values.cc 29 "string", "binary", "dictionary", "list"};
31 static_cast<size_t>(Value::Type::LIST) + 1,
39 std::unique_ptr<Value> CopyListWithoutEmptyChildren(const Value& list) {
40 Value copy(Value::Type::LIST);
41 for (const auto& entry : list.GetList()) {
66 case Value::Type::LIST:
126 case Type::LIST:
174 Value::Value(const ListStorage& in_list) : type_(Type::LIST), list_() {
181 : type_(Type::LIST), list_(std::move(in_list)) {}
206 case Type::LIST
    [all...]
values_unittest.cc 138 EXPECT_EQ(Value::Type::LIST, value.type());
146 EXPECT_EQ(Value::Type::LIST, value.type());
155 EXPECT_EQ(Value::Type::LIST, value.type());
366 EXPECT_EQ(Value::Type::LIST, moved_value.type());
371 EXPECT_EQ(Value::Type::LIST, blank.type());
415 storage.emplace("list", std::make_unique<Value>(Value::Type::LIST));
425 EXPECT_EQ(nullptr, dict.FindKeyOfType("null", Value::Type::LIST));
434 EXPECT_EQ(nullptr, dict.FindKeyOfType("bool", Value::Type::LIST));
443 EXPECT_EQ(nullptr, dict.FindKeyOfType("int", Value::Type::LIST));
844 ListValue list; local
855 ListValue list; local
868 ListValue list; local
875 ListValue list; local
    [all...]
value_iterators_unittest.cc 276 storage.emplace("list", std::make_unique<Value>(Value::Type::LIST));
309 storage.emplace("list", std::make_unique<Value>(Value::Type::LIST));
values.h 19 // (should be flat_map), Value::LIST (should be std::vector), et cetera.
95 LIST
160 bool is_list() const { return type() == Type::LIST; }
433 // DEPRECATED, use Value::SetPath(path, Value(Type::LIST)) instead.
591 // This type of Value represents a list of other Value values.
597 // Returns |value| if it is a list, nullptr otherwise.
608 // Returns the number of Values in this list.
612 // Returns whether the list is empty.
620 // Sets the list item at the given index to be the Value specified by
621 // the value given. If the index beyond the current end of the list, nul
    [all...]
  /bionic/libc/upstream-netbsd/lib/libc/include/isc/
list.h 1 /* $NetBSD: list.h,v 1.5 2009/04/12 17:07:16 christos Exp $ */
24 #define LIST(type) struct { type *head, *tail; }
25 #define INIT_LIST(list) \
26 do { (list).head = NULL; (list).tail = NULL; } while (/*CONSTCOND*/0)
39 #define HEAD(list) ((list).head)
40 #define TAIL(list) ((list).tail)
41 #define EMPTY(list) ((list).head == NULL
    [all...]
  /external/libchrome/base/json/
json_writer.cc 121 case Value::Type::LIST: {
126 const ListValue* list = nullptr; local
128 bool result = node.GetAsList(&list);
130 for (const auto& value : *list) {
  /external/libchrome/mojo/public/cpp/base/
values_mojom_traits.h 87 case base::Value::Type::LIST:
  /external/llvm/utils/lit/tests/unit/
TestRunner.py 58 IntegratedTestKeywordParser("MY_LIST:", ParserKind.LIST),
77 assert isinstance(script, list)
  /external/mesa3d/src/compiler/glsl/
s_expression.cpp 111 s_list *list = new(ctx) s_list; local
115 list->subexpressions.push_tail(expr);
124 return list;
182 case LIST: if (expr->is_list()) *p_list = (s_list *) expr; break;
199 s_list *list = SX_AS_LIST(top); local
200 if (list == NULL)
204 foreach_in_list(s_expression, expr, &list->subexpressions) {
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/
FakeFtpServer.java 28 import java.util.List;
184 setCommandHandler(CommandNames.LIST, new ListCommandHandler());
267 * @param userAccountList - the List of UserAccount objects to add
269 public void setUserAccounts(List userAccountList) {
  /external/autotest/client/site_tests/firmware_TouchMTB/
firmware_constants.py 38 AXIS.LIST = [AXIS.X, AXIS.Y]
46 DEV.DEVICE_TYPE_LIST = list(DEV.__dict__.values())
156 # GESTURE_PLAY_MODE is a list of all attributes above
157 MODE.GESTURE_PLAY_MODE = list(MODE.__dict__.values())
202 PLATFORM.LIST = [PLATFORM.ALEX, PLATFORM.LUMPY, PLATFORM.LINK]
255 # SEGMENT_LIST is a list of all attributes above
256 VAL.SEGMENT_LIST = list(VAL.__dict__.values())
firmware_log.py 267 AXIS.LIST,
273 AXIS.LIST,
480 @param metrics: a list of Metric objects.
483 self.metrics_values = defaultdict(list)
484 self.metrics_dict = defaultdict(list)
518 self._table = defaultdict(list)
528 A key is a list of attributes.
584 # Convert set to list below
585 self.fws = sorted(list(self.fws))
586 self.gestures = sorted(list(self.gestures)
    [all...]
  /external/libchrome/dbus/
values_util.cc 82 case base::Value::Type::LIST:
279 case base::Value::Type::LIST: {
280 const base::ListValue* list = nullptr; local
281 value.GetAsList(&list);
284 for (const auto& value : *list) {
  /external/mdnsresponder/mDNSShared/
DebugServices.h     [all...]
  /external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/stub/
StubFtpServerIntegrationTest.java 113 * Test the LIST and SYST commands.
119 ListCommandHandler listCommandHandler = (ListCommandHandler) stubFtpServer.getCommandHandler(CommandNames.LIST);
123 // LIST
128 verifyReplyCode("list", 226);
132 * Test the LIST, PASV and SYST commands, transferring a directory listing in passive mode
140 ListCommandHandler listCommandHandler = (ListCommandHandler) stubFtpServer.getCommandHandler(CommandNames.LIST);
143 // LIST
146 verifyReplyCode("list", 226);
  /external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/stub/
StubFtpServerIntegrationTest.java 131 * Test the LIST and SYST commands.
137 ListCommandHandler listCommandHandler = (ListCommandHandler) stubFtpServer.getCommandHandler(CommandNames.LIST);
141 // LIST
146 verifyReplyCode("list", 226);
150 * Test the LIST, PASV and SYST commands, transferring a directory listing in passive mode
158 ListCommandHandler listCommandHandler = (ListCommandHandler) stubFtpServer.getCommandHandler(CommandNames.LIST);
161 // LIST
164 verifyReplyCode("list", 226);
  /external/u-boot/scripts/
docproc.c 22 * Scans the template file and list all files
71 #define LIST "-list"
101 fprintf(stderr, "depend: generate list of files referenced within file\n");
138 /* Types used to create list of all exported symbols in a number of files */
161 /* Add a filename to the list */
168 /* Check if file already are present in the list */
179 * List all files referenced within the template file.
357 char *vec[4]; /* kerneldoc -list file NULL */
366 vec[1] = LIST;
    [all...]
  /bionic/libc/upstream-netbsd/lib/libc/isc/
eventlib_p.h 45 #include <isc/list.h>
223 LIST(evAccept) accepts;
  /external/protobuf/src/google/protobuf/util/internal/
default_value_objectwriter.h 10 // notice, this list of conditions and the following disclaimer.
12 // copyright notice, this list of conditions and the following disclaimer
129 LIST = 2,
206 // Whether this node is a placeholder for an object or list automatically
  /external/python/cpython3/Modules/
main.c 89 -c cmd : program passed in as string (terminates option list)\n\
98 -m mod : run library module as a script (terminates option list)\n\
127 PYTHONPATH : '%lc'-separated list of directories prefixed to the\n\
511 clear_wstrlist(int len, wchar_t **list)
514 PyMem_RawFree(list[i]);
516 PyMem_RawFree(list);
701 wstrlist_append(int *len, wchar_t ***list, const wchar_t *str)
708 size_t size = (*len + 1) * sizeof(list[0]);
709 wchar_t **list2 = (wchar_t **)PyMem_RawRealloc(*list, size);
715 *list = list2
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/EbcDxe/Ia32/
EbcLowLevel.asm 26 .LIST
  /external/antlr/runtime/Ruby/test/functional/ast-output/
hetero-nodes.rb 286 tokens {LIST;}
304 a : id (',' id)* -> ^(LIST<W>["LIST"] id+);
638 example "token with list label" do
650 example "token root with list label" do
700 result.should == '(LIST<W> a<V> b<V> c<V>)'
710 example "tree parser rewrite flat list" do
  /external/webp/src/mux/
muxread.c 23 #define SWITCH_ID_LIST(INDEX, LIST) \
25 const WebPChunk* const chunk = ChunkSearchList((LIST), nth, \
258 // Add this to mux->images_ list.
273 MuxGetChunkListFromId(mux, id); // List to add this chunk.
  /external/libcxx/utils/libcxx/test/
format.py 49 IntegratedTestKeywordParser('MODULES_DEFINES:', ParserKind.LIST,
197 # TODO: Only list actually needed files in file_deps.

Completed in 1318 milliseconds

12 3 4