/third_party/python/Lib/idlelib/ |
D | stackviewer.py | 53 sublist = [] 56 sublist.append(item) 57 return sublist 86 sublist = [] 89 sublist.append(item) 91 sublist.append(item) 92 return sublist 114 sublist = [] 123 sublist.append(item) 124 return sublist
|
D | debugobj.py | 45 sublist = [] 56 sublist.append(item) 57 return sublist 63 sublist = ObjectTreeItem.GetSubList(self) 69 sublist.insert(0, item) 70 return sublist 82 sublist = [] 91 sublist.append(item) 92 return sublist
|
D | pathbrowser.py | 35 sublist = [] 38 sublist.append(item) 39 return sublist 66 sublist = [] 69 sublist.append(item) 72 sublist.append(item) 73 return sublist
|
D | tree.py | 210 sublist = self.item._GetSubList() 211 if not sublist: 214 for item in sublist: 367 sublist = self.GetSubList() 368 if not sublist: 370 return sublist 430 sublist = [] 433 sublist.append(item) 434 return sublist
|
/third_party/protobuf/ruby/tests/ |
D | well_known_types_test.rb | 43 sublist = ["abc", 123, {"deepkey" => "deepval"}] 51 struct["sublist"] = sublist 60 assert_equal(Google::Protobuf::ListValue.from_a(sublist), 93 struct["sublist"] = Google::Protobuf::ListValue.from_a(sublist)
|
/third_party/python/Modules/ |
D | _lsprof.c | 506 PyObject *sublist; member 527 err = PyList_Append(collect->sublist, sinfo); in statsForSubEntry() 542 collect->sublist = PyList_New(0); in statsForEntry() 543 if (collect->sublist == NULL) in statsForEntry() 547 Py_DECREF(collect->sublist); in statsForEntry() 553 collect->sublist = Py_None; in statsForEntry() 563 collect->sublist); in statsForEntry() 564 Py_DECREF(collect->sublist); in statsForEntry()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/copts/ |
D | generate_copts.py | 24 return [item for sublist in lists for item in sublist]
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
D | gen_format_map.py | 154 combo_data = [combo for sublist in es3_combo_data.values() for combo in sublist]
|
/third_party/skia/third_party/externals/freetype/src/tools/ |
D | glnames.py | 4947 def dump_sublist( self, file, table_name, macro_name, sublist ): argument 4949 write( "#define " + macro_name + " " + repr( len( sublist ) ) + "\n\n" ) 4970 for name in sublist:
|
/third_party/python/Lib/idlelib/idle_test/ |
D | test_browser.py | 238 sublist = cb.GetSubList() 239 queue.extend(sublist) 242 self.assertIs(cb.IsExpandable(), sublist != [])
|
/third_party/ltp/doc/ |
D | network-c-api.txt | 298 const struct tst_rtnl_attr_list *sublist; 316 list and sublist defined using this structure is terminated by item with 324 set +len+ to 0. The last item in a list or sublist must have negative length. 326 - +sublist+ contains a nested attribute list which will be appended after 328 calculated automatically with proper alignment, do _not_ add the sublist size 330 +sublist+ to +NULL+.
|
D | C-Test-Network-API.asciidoc | 300 const struct tst_rtnl_attr_list *sublist; 318 list and sublist defined using this structure is terminated by item with 326 set +len+ to 0. The last item in a list or sublist must have negative length. 328 - +sublist+ contains a nested attribute list which will be appended after 330 calculated automatically with proper alignment, do _not_ add the sublist size 332 +sublist+ to +NULL+.
|
/third_party/ltp/include/ |
D | tst_rtnetlink.h | 14 const struct tst_rtnl_attr_list *sublist; member
|
/third_party/ltp/lib/ |
D | tst_rtnetlink.c | 338 if (list[i].sublist) { in tst_rtnl_add_attr_list() 342 list[i].sublist); in tst_rtnl_add_attr_list()
|
/third_party/nghttp2/src/ |
D | util.cc | 977 auto sublist = split_str(s, delim); in parse_config_str_list() local 979 res.reserve(sublist.size()); in parse_config_str_list() 980 for (const auto &s : sublist) { in parse_config_str_list()
|
/third_party/python/Doc/extending/ |
D | newtypes_tutorial.rst | 808 >>> import sublist 809 >>> s = sublist.SubList(range(3)) 818 .. literalinclude:: ../includes/sublist.c
|
/third_party/skia/third_party/externals/angle2/tools/flex-bison/third_party/skeletons/ |
D | bison.m4 | 918 # is a list of sublists of strings. For each sublist, the first string is the 919 # name of a %define variable, and all remaining strings in that sublist are the
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/ |
D | input.py | 313 def LoadBuildFileIncludesIntoList(sublist, sublist_path, data, aux_data, check): argument 314 for item in sublist:
|
/third_party/node/tools/gyp/pylib/gyp/ |
D | input.py | 313 def LoadBuildFileIncludesIntoList(sublist, sublist_path, data, aux_data, check): argument 314 for item in sublist:
|
/third_party/skia/third_party/externals/angle2/tools/flex-bison/third_party/m4sugar/ |
D | m4sugar.m4 | 1194 # If LIST contains an empty sublist, m4_map skips the expansion of 1200 # an empty list behaves like an empty sublist and gets ignored; for 1217 # separator. For each empty sublist, m4_map_sep skips the expansion 1225 # list element is an empty sublist, so we must define a self-modifying
|
/third_party/python/Doc/library/ |
D | tkinter.tix.rst | 509 one named option (this list will be identical to the corresponding sublist of
|
/third_party/json/tools/cpplint/ |
D | cpplint.py | 6116 include_dict = dict([item for sublist in include_state.include_list 6117 for item in sublist])
|
/third_party/python/Doc/whatsnew/ |
D | 2.0.rst | 282 sublist = filter( lambda s, substring=S: 290 sublist = [ s for s in L if string.find(s, S) != -1 ]
|
/third_party/python/Lib/test/ |
D | test_descr.py | 2954 class sublist(list): class 2956 a = sublist(range(5))
|
/third_party/pulseaudio/src/modules/rtp/ |
D | rfc3550.txt | 4917 not currently in the sender sublist of the member list, 0 4924 the sender sublist of the member list.
|