/third_party/node/deps/v8/src/codegen/arm/ |
H A D | assembler-arm.h | 9 // this list of conditions and the following disclaimer. 12 // notice, this list of conditions and the following disclaimer in the 268 // Class NeonListOperand represents a list of NEON registers 981 void vtbl(DwVfpRegister dst, const NeonListOperand& list, 983 void vtbx(DwVfpRegister dst, const NeonListOperand& list, 1377 // When the scope ends, the Assembler's list will be restored to its original 1378 // state, even if the list is modified by some other means. Note that this scope 1386 // Take a register from the list and return it.
|
/third_party/node/deps/v8/src/heap/ |
H A D | heap.h | 588 // Traverse all the allocaions_sites [nested_site and weak_next] in the list 591 Object list, const std::function<void(AllocationSite)>& visitor); 731 void SetBasicBlockProfilingData(Handle<ArrayList> list); 941 // FinalizationRegistries with {context} from the dirty list when the context 942 // e.g. navigates away or is detached. If the dirty list is empty afterwards, 1029 // Iterates over entries in the smi roots list. Only interesting to the 1506 // Adds an allocation site to the list of sites to be pretenured during the 2250 // Weak list heads, threaded through the objects. 2257 // Weak list tails. 2687 // HeapObjectIterator can skip free list node [all...] |
/third_party/node/deps/v8/src/maglev/ |
H A D | maglev-ir.h | 11 #include "src/base/threaded-list.h" 506 void assign_temporaries(RegList list) { in assign_temporaries() argument 515 temporaries_ = list; in assign_temporaries() 1321 // Represents either a direct BasicBlock pointer, or an entry in a list of 1340 // in the ref list. 1346 // Construct a new ref-list mode BasicBlockRef and add it to the given ref 1347 // list. 1367 // Reset this ref list to null, returning the old ref list (i.e. the old 1377 // Move this ref to the given ref list, returnin [all...] |
/third_party/python/Tools/c-analyzer/c_parser/ |
H A D | info.py | 270 colnames = list(columns) 523 columns = list(columns or cls.FIELDS) 1468 return f'{type(self).__name__}({list(self)})'
|
/third_party/python/Lib/test/support/ |
H A D | __init__.py | 184 junit_xml_list = None # list of testsuite XML elements 1033 is_true = list(guards.values())[0] 1034 assert list(guards.values()) == [is_true] * len(guards) # all True or all False 1123 # Function used by support.run_unittest() and regrtest --list-cases 1394 """Return a list of command-line arguments reproducing the current 1400 """Return a list of command-line arguments reproducing the current 1553 defined list of items to be ignored in this check.
|
/third_party/python/Lib/test/ |
H A D | string_tests.py | 44 elif isinstance(obj, list): 1227 # Test extended slicing by comparing with list slicing. 1234 L = list(s)[start:stop:step]
|
H A D | test_coroutines.py | 571 list(coro) 642 list(foo()) 971 with self.assertRaisesRegex(TypeError, "object list can.t.*await"):
|
/third_party/python/Lib/test/test_asyncio/ |
H A D | test_locks.py | 1142 self.assertListEqual(sorted(results), list(range(self.N))) 1236 self.assertListEqual(sorted(res), list(range(self.N)))
|
/third_party/python/Lib/asyncio/ |
H A D | base_events.py | 159 """Interleave list of addrinfo tuples by family.""" 167 addrinfos_lists = list(addrinfos_by_family.values()) 548 closing_agens = list(self._asyncgens) 1049 raise OSError('getaddrinfo() returned empty list') 1057 raise OSError('getaddrinfo() returned empty list') 1336 raise OSError('getaddrinfo() returned empty list') 1427 raise OSError(f'getaddrinfo({host!r}) returned empty list')
|
/third_party/python/Lib/idlelib/ |
H A D | editor.py | 452 * mainmenu.menudefs - a list of tuples, one for each menubar item. 453 Each tuple pairs a lower-case name and list of dropdown items. 993 "Load and update the recent files list and menus" 1006 # clean and save the recent files list 1023 message="Cannot save Recent Files list to disk.\n" 1107 return list(map(int, m.groups())) 1156 for ins in list(self.extensions.values()):
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
H A D | LegacyPassManager.cpp | 65 typedef llvm::cl::list<const llvm::PassInfo *, bool, PassNameParser> 93 static cl::list<std::string> 431 /// Add RequiredPass into list of lower level passes required by pass P. 1149 // Print list of passes that are last used by P. 1266 /// Add RequiredPass into list of lower level passes required by pass P. 1625 /// Add RequiredPass into list of lower level passes required by pass P.
|
/third_party/skia/third_party/externals/brotli/research/ |
H A D | brotlidump.py | 287 splitSymbols = defaultdict(list) 290 #set length, and remove from todo list 1258 """Word list. 1400 #build result backwards in a list 1480 if len(codeLengths)==1: codeLengths[list(codeLengths.keys())[0]] = 0 1827 #word list value 1867 #to make sure distance is not put in last distance list 1943 >>> list(a) 1962 >>> list(a)
|
/third_party/python/Lib/tkinter/ |
H A D | tix.py | 90 """Tix maintains a list of directories under which 94 adds directory into this list. By using this 112 command returns a list describing the one named option (this list 280 1) It is possible to give a list of options which must be part of 298 # a list of keywords (or None). 307 for k,v in list(cnf.items()): 325 # use the children list because the public Tix names may not be the 460 for c in list(self.children.values()): c.destroy() 643 """DirList - displays a list vie [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
H A D | FileCheck.cpp | 22 #include <list> 1593 // A sorted list of ranges for non-overlapping CHECK-DAG matches. Match in CheckDag() 1594 // ranges are erased from this list once they are no longer in the search in CheckDag() 1596 std::list<MatchRange> MatchRanges; in CheckDag() 1660 // Insert non-overlapping match into list. in CheckDag() 1734 // I don't think there's a way to specify an initial value for cl::list, in buildCheckPrefixRegex()
|
/third_party/vixl/src/ |
H A D | utils-vixl.h | 8 // this list of conditions and the following disclaimer. 10 // this list of conditions and the following disclaimer in the documentation 49 #include <list> 85 using List = std::list<T>;
|
/third_party/typescript/tests/baselines/reference/ |
H A D | keyofAndIndexedAccess.js | 512 declare function head<T extends Array<any>>(list: T): T[0]; 1332 declare function head<T extends Array<any>>(list: T): T[0];
|
/third_party/python/Lib/test/test_warnings/ |
H A D | __init__.py | 140 self.assertEqual(list(__warningregistry__), ['version']) 342 "the beginning of list" 358 "simplefilter did not promote filter to the beginning of list" 1031 self.assertIs(type(w), list)
|
/third_party/python/Lib/unittest/test/ |
H A D | test_case.py | 681 self.assertIsInstance(thing, list) 689 thing, list)
|
/third_party/python/Lib/test/test_import/ |
H A D | __init__.py | 210 # Create a file with a list of 65000 elements. 700 constants = list(code.co_consts) 1314 for key in list(sys.modules.keys()):
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/ap/ |
H A D | gas_serv.c | 204 list) { in get_anqp_elem() 629 struct fils_realm, list) { in anqp_add_fils_realm_info() 1212 wpa_printf(MSG_DEBUG, "ANQP: %u Info IDs requested in Query list", in rx_anqp_query_list() 1252 set_anqp_req(ANQP_REQ_OSU_PROVIDERS_LIST, "OSU Providers list", in rx_anqp_hs_query_list()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/ap/ |
H A D | gas_serv.c | 201 list) { in get_anqp_elem() 626 struct fils_realm, list) { in anqp_add_fils_realm_info() 1209 wpa_printf(MSG_DEBUG, "ANQP: %u Info IDs requested in Query list", in rx_anqp_query_list() 1249 set_anqp_req(ANQP_REQ_OSU_PROVIDERS_LIST, "OSU Providers list", in rx_anqp_hs_query_list()
|
/third_party/eudev/ |
H A D | ltmain.sh | 458 # warnings, or a space delimited list of some subset of 856 # ...make a list in topmost first order. Use a colon delimited 857 # list incase some portion of path contains whitespace. 860 # If the last portion added has no slash in it, the list is done 1364 # CATEGORY must be in the warning_categories list! 1526 # to the main code. A hook is just a named list of of function, that can 1560 # Remove HOOK_FUNC from the list of functions called by FUNC_NAME. 1572 # It is assumed that the list of hook functions contains nothing more 1573 # than a whitespace-delimited list of legal shell function names, and 1590 # store returned options list bac [all...] |
/third_party/curl/ |
H A D | ltmain.sh | 501 # warnings, or a space delimited list of some subset of 887 # ...make a list in topmost first order. Use a colon delimited 888 # list incase some portion of path contains whitespace. 891 # If the last portion added has no slash in it, the list is done 1466 # CATEGORY must be in the warning_categories list! 1624 # in the main code. A hook is just a list of function names that can be 1658 # Remove HOOK_FUNC from the list of hook functions to be called by 1689 # It's assumed that the list of hook functions contains nothing more 1690 # than a whitespace-delimited list of legal shell function names, and 1723 # full positional parameter list fro [all...] |
/third_party/lame/ |
H A D | ltmain.sh | 458 # warnings, or a space delimited list of some subset of 856 # ...make a list in topmost first order. Use a colon delimited 857 # list incase some portion of path contains whitespace. 860 # If the last portion added has no slash in it, the list is done 1317 # CATEGORY must be in the warning_categories list! 1479 # to the main code. A hook is just a named list of of function, that can 1513 # Remove HOOK_FUNC from the list of functions called by FUNC_NAME. 1525 # It is assumed that the list of hook functions contains nothing more 1526 # than a whitespace-delimited list of legal shell function names, and 1543 # store returned options list bac [all...] |
/third_party/node/deps/cares/ |
H A D | ltmain.sh | 501 # warnings, or a space delimited list of some subset of 887 # ...make a list in topmost first order. Use a colon delimited 888 # list incase some portion of path contains whitespace. 891 # If the last portion added has no slash in it, the list is done 1466 # CATEGORY must be in the warning_categories list! 1624 # in the main code. A hook is just a list of function names that can be 1658 # Remove HOOK_FUNC from the list of hook functions to be called by 1689 # It's assumed that the list of hook functions contains nothing more 1690 # than a whitespace-delimited list of legal shell function names, and 1723 # full positional parameter list fro [all...] |