/third_party/python/Lib/collections/ |
H A D | __init__.py | 144 # Traverse the linked list in reverse order. 618 return sorted(self.items(), key=_itemgetter(1), reverse=True) 1312 def reverse(self): member in UserList 1313 self.data.reverse()
|
/third_party/decimal.js/ |
H A D | decimal.js | 1349 d.reverse(); 1351 d.reverse(); 1602 // Prepend zeros to equalise exponents. Note: Faster to use reverse then do unshifts. 1603 d.reverse(); 1605 d.reverse(); 2632 return arr.reverse();
|
/third_party/python/Lib/test/ |
H A D | test_bytes.py | 265 input.reverse() 1271 self.assertEqual(b.reverse(), None) 1274 b.reverse() 1277 b.reverse() 1439 data.reverse() 1971 # Test reverse, calling join on subclass
|
H A D | test_queue.py | 474 seq.reverse()
|
/third_party/jinja2/ |
H A D | lexer.py | 249 return [x[1:] for x in sorted(rules, reverse=True)]
|
/third_party/node/deps/v8/third_party/jinja2/ |
H A D | lexer.py | 243 return [x[1:] for x in sorted(rules, reverse=True)]
|
/third_party/node/tools/inspector_protocol/jinja2/ |
H A D | lexer.py | 216 return [x[1:] for x in sorted(rules, reverse=True)]
|
/third_party/nghttp2/doc/_exts/rubydomain/ |
H A D | rubydomain.py | 492 ignores = sorted(ignores, key=len, reverse=True)
|
/third_party/node/deps/v8/src/torque/ |
H A D | cc-generator.cc | 120 std::reverse(args.begin(), args.end()); in ProcessArgumentsCommon()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/MCJIT/ |
H A D | MCJIT.cpp | 643 auto I = find(reverse(EventListeners), L); in UnregisterJITEventListener()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Orc/ |
H A D | OrcCBindingsStack.h | 439 auto I = find(reverse(EventListeners), L); in UnregisterJITEventListener()
|
/third_party/skia/third_party/externals/spirv-tools/source/opt/ |
H A D | loop_fusion.cpp | 475 std::reverse(std::begin(loops), std::end(loops)); in IsLegal()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/ |
H A D | loop_fusion.cpp | 475 std::reverse(std::begin(loops), std::end(loops)); in IsLegal()
|
/third_party/skia/third_party/externals/jinja2/ |
H A D | lexer.py | 243 return [x[1:] for x in sorted(rules, reverse=True)]
|
/third_party/python/Lib/concurrent/futures/ |
H A D | process.py | 603 element.reverse()
|
/third_party/python/Lib/ |
H A D | locale.py | 162 groups.reverse()
|
H A D | tokenize.py | 120 # Sorting in reverse order puts the long operators before their prefixes. 123 Special = group(*map(re.escape, sorted(EXACT_TOKEN_TYPES, reverse=True)))
|
H A D | bdb.py | 542 stack.reverse()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
H A D | SpeculateAroundPHIs.cpp | 427 // First, establish a reverse mapping from immediate users of the PHI nodes in findProfitablePHIs() 698 // needs to be in reverse so that we don't think there are users when we'll in speculatePHIs() 701 for (auto *OrigI : llvm::reverse(SpecList)) { in speculatePHIs()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
H A D | LowerSwitch.cpp | 236 // Remove incoming values in the reverse order to prevent invalidating in fixPhis() 238 for (unsigned III : llvm::reverse(Indices)) in fixPhis()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/MCTargetDesc/ |
H A D | MipsELFObjectWriter.cpp | 525 // them in reverse order. in sortRelocs() 527 for (const auto &R : reverse(Sorted)) in sortRelocs()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
H A D | CGSCCPassManager.h | 239 /// This worklist is in reverse post-order, as we pop off the back in order 241 /// them in reverse post-order. 254 /// This worklist is in reverse post-order, as we pop off the back in order 256 /// in reverse post-order. 798 // Push the initial SCCs in reverse post-order as we'll pop off the in run() 800 for (LazyCallGraph::SCC &C : llvm::reverse(*RC)) in run()
|
/third_party/protobuf/src/google/protobuf/ |
H A D | message_lite.cc | 542 std::reverse(functions.begin(), functions.end()); in ~ShutdownData()
|
/third_party/spirv-tools/source/opt/ |
H A D | loop_fusion.cpp | 477 std::reverse(std::begin(loops), std::end(loops)); in IsLegal()
|
/third_party/icu/icu4c/source/test/cintltst/ |
H A D | cbiditst.c | 2311 /* reverse visual from RTL to LTR */ in _testInverseBidi() 2364 UChar reverse[10]; in _testWriteReverse() local 2371 reverse, UPRV_LENGTHOF(reverse), in _testWriteReverse() 2374 if(U_FAILURE(errorCode) || length!=UPRV_LENGTHOF(reverseKeepCombining) || memcmp(reverse, reverseKeepCombining, length*U_SIZEOF_UCHAR)!=0) { in _testWriteReverse() 2379 memset(reverse, 0xa5, UPRV_LENGTHOF(reverse)*U_SIZEOF_UCHAR); in _testWriteReverse() 2382 reverse, UPRV_LENGTHOF(reverse), in _testWriteReverse() 2385 if(U_FAILURE(errorCode) || length!=UPRV_LENGTHOF(reverseRemoveControlsKeepCombiningDoMirror) || memcmp(reverse, reverseRemoveControlsKeepCombiningDoMirro in _testWriteReverse() [all...] |