/third_party/boost/libs/bimap/test/ |
D | test_bimap_range.cpp | 72 for_each( bm.left.range( 1.0 < _key, _key < 5.0 ), in test_bimap_range() 75 for_each( bm.right.range( unbounded, _key <= 2 ), in test_bimap_range() 82 bm_type::left_range_type r = bm.left.range( 2.0 < _key, _key < 4.0 ); in test_bimap_range() 92 bm_type::right_range_type r = bm.right.range( 2 <= _key, _key <= 3 ); in test_bimap_range() 102 bm_type:: left_const_range_type lr = bm. left.range( unbounded, _key < 4.0 ); in test_bimap_range() 103 bm_type::right_const_range_type rr = bm.right.range( 2 < _key , unbounded ); in test_bimap_range() 121 bm_type::right_const_range_type r = cbm.right.range( 1 < _key, _key < 1 ); in test_bimap_range()
|
D | test_bimap_lambda.cpp | 36 BOOST_TEST( b.left.modify_key ( b.left.begin(), _key = 2 ) ); in test_bimap_lambda() 38 BOOST_TEST( b.left.range( _key >= 1, _key < 3 ).first == b.left.begin() ); in test_bimap_lambda()
|
D | test_bimap_sequenced.cpp | 143 c.remove_if(_key<=bm_type::value_type("1",1)); in test_bimap() 151 c.left.remove_if(_key<="1"); in test_bimap() 159 c.right.remove_if(_key<=1); in test_bimap() 199 c.remove_if(_key<=bm_type::value_type("1",1)); in test_bimap() 207 c.left.remove_if(_key<="1"); in test_bimap() 215 c.right.remove_if(_key<=1); in test_bimap() 258 c.remove_if(_key<=bm_type::value_type("1",1)); in test_bimap()
|
/third_party/boost/libs/bimap/example/ |
D | tutorial_range.cpp | 74 r = bm.left.range( 20 <= _key, _key <= 50 ); // [20,50] in using_range() 76 r = bm.left.range( 20 < _key, _key < 50 ); // (20,50) in using_range() 78 r = bm.left.range( 20 <= _key, _key < 50 ); // [20,50) in using_range() 83 r = bm.left.range( 20 <= _key, unbounded ); // [20,inf) in using_range() 85 r = bm.left.range( unbounded , _key < 50 ); // (-inf,50) in using_range()
|
D | unconstrained_collection.cpp | 71 const_range r = m.range( "one" <= _key, _key <= "two" ); in main() 77 m.modify_key( m.begin(), _key = "1" ); in main()
|
/third_party/boost/boost/pending/ |
D | fibonacci_heap.hpp | 42 : _key(n) in fibonacci_heap() 69 _key[v] = d; in push() 85 if (_compare(d, _key[_root])) in push() 90 T& top() { return _key[_root]; } in top() 91 const T& top() const { return _key[_root]; } in top() 146 if (_compare(_key[u], _key[v])) in add_tree_to_new_roots() 187 d = _key[u]; in rebuild_root_list() 195 if (_compare(_key[w], d)) in rebuild_root_list() 198 d = _key[w]; in rebuild_root_list() 211 assert(!_compare(_key[v], d)); in update() [all …]
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/ |
D | Extension.java | 13 private char _key; field in Extension 17 _key = key; in Extension() 21 _key = key; in Extension() 26 return _key; in getKey() 34 return _key + LanguageTag.SEP + _value; in getID()
|
D | AsciiUtil.java | 165 private String _key; field in AsciiUtil.CaseInsensitiveKey 169 _key = key; in CaseInsensitiveKey() 179 return AsciiUtil.caseIgnoreMatch(_key, ((CaseInsensitiveKey)o)._key); in equals()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/locale/ |
D | Extension.java | 17 private char _key; field in Extension 21 _key = key; in Extension() 25 _key = key; in Extension() 30 return _key; in getKey() 38 return _key + LanguageTag.SEP + _value; in getID()
|
D | AsciiUtil.java | 172 private String _key; field in AsciiUtil.CaseInsensitiveKey 176 _key = key; in CaseInsensitiveKey() 186 return AsciiUtil.caseIgnoreMatch(_key, ((CaseInsensitiveKey)o)._key); in equals()
|
/third_party/node/deps/npm/node_modules/es6-promisify/dist/ |
D | promisify.js | 40 for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) { 41 args[_key] = arguments[_key];
|
/third_party/node/deps/npm/node_modules/sshpk/lib/ |
D | dhe.js | 28 this._key = key; 94 return (this._key.toPublic()); 95 return (this._key); 100 return (this._key); 156 this._key = pk; 206 parts.push({name: 'q', data: this._key.part.q.data}); 210 this._key = new PrivateKey({ 215 return (this._key); 225 this._key = new PrivateKey({ 231 return (this._key); [all …]
|
/third_party/node/deps/npm/node_modules/readable-stream/lib/internal/streams/ |
D | pipeline.js | 71 for (var _len = arguments.length, streams = new Array(_len), _key = 0; _key < _len; _key++) { 72 streams[_key] = arguments[_key];
|
D | end-of-stream.js | 13 for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) { 14 args[_key] = arguments[_key];
|
/third_party/boost/libs/bimap/example/bimap_and_boost/ |
D | lambda.cpp | 40 bm.right.range( 5 < _key, _key < 10 ); in main() 42 bm.left.modify_key( bm.left.find("one"), _key = "1" ); in main()
|
D | range.cpp | 110 for_each( bm.right.range( 2 <= _key, _key < 6 ), pair_printer(std::cout) ); in main() 115 count_if( bm.left.range( 2.3 < _key, _key < 5.4 ), in main()
|
D | foreach.cpp | 91 ( bm.left.range( std::string("1") <= _key, _key < std::string("3") ) )) in main() 97 ( bm.left.range( std::string("1") <= _key, _key < std::string("3") ) )) in main()
|
/third_party/python/Lib/multiprocessing/ |
D | util.py | 200 self._key = (exitpriority, next(_finalizer_counter)) 203 _finalizer_registry[self._key] = self 214 del _finalizer_registry[self._key] 226 self._kwargs = self._key = None 234 del _finalizer_registry[self._key] 239 self._kwargs = self._key = None 245 return self._key in _finalizer_registry 263 if self._key[0] is not None: 264 x += ', exitpriority=' + str(self._key[0])
|
D | resource_sharer.py | 64 self._key = 0 77 self._key += 1 78 self._cache[self._key] = (send, close) 79 return (self._address, self._key)
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/ |
D | ICUResourceBundleImpl.java | 34 protected final ICUResourceBundle createBundleObject(String _key, in createBundleObject() argument 41 return new ICUResourceBundleImpl.ResourceString(this, _key, _resource); in createBundleObject() 43 return new ICUResourceBundleImpl.ResourceBinary(this, _key, _resource); in createBundleObject() 45 return getAliasedResource(this, null, 0, _key, _resource, aliasesVisited, requested); in createBundleObject() 47 return new ICUResourceBundleImpl.ResourceInt(this, _key, _resource); in createBundleObject() 49 return new ICUResourceBundleImpl.ResourceIntVector(this, _key, _resource); in createBundleObject() 52 return new ICUResourceBundleImpl.ResourceArray(this, _key, _resource); in createBundleObject() 56 return new ICUResourceBundleImpl.ResourceTable(this, _key, _resource); in createBundleObject()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | ICUResourceBundleImpl.java | 33 protected final ICUResourceBundle createBundleObject(String _key, in createBundleObject() argument 40 return new ICUResourceBundleImpl.ResourceString(this, _key, _resource); in createBundleObject() 42 return new ICUResourceBundleImpl.ResourceBinary(this, _key, _resource); in createBundleObject() 44 return getAliasedResource(this, null, 0, _key, _resource, aliasesVisited, requested); in createBundleObject() 46 return new ICUResourceBundleImpl.ResourceInt(this, _key, _resource); in createBundleObject() 48 return new ICUResourceBundleImpl.ResourceIntVector(this, _key, _resource); in createBundleObject() 51 return new ICUResourceBundleImpl.ResourceArray(this, _key, _resource); in createBundleObject() 55 return new ICUResourceBundleImpl.ResourceTable(this, _key, _resource); in createBundleObject()
|
/third_party/mesa3d/src/util/ |
D | hash_table.c | 660 _mesa_hash_string(const void *_key) in _mesa_hash_string() argument 663 const char *key = _key; in _mesa_hash_string() 797 struct hash_key_u64 *_key = (struct hash_key_u64 *)entry->key; in _mesa_hash_table_u64_delete_key() local 799 if (_key) in _mesa_hash_table_u64_delete_key() 800 free(_key); in _mesa_hash_table_u64_delete_key() 842 struct hash_key_u64 *_key = CALLOC_STRUCT(hash_key_u64); in _mesa_hash_table_u64_insert() local 844 if (!_key) in _mesa_hash_table_u64_insert() 846 _key->value = key; in _mesa_hash_table_u64_insert() 848 _mesa_hash_table_insert(ht->table, _key, data); in _mesa_hash_table_u64_insert() 858 struct hash_key_u64 _key = { .value = key }; in hash_table_u64_search() local [all …]
|
/third_party/python/Lib/xml/sax/ |
D | __init__.py | 65 _key = "python.xml.sax.parser" variable 66 if sys.platform[:4] == "java" and sys.registry.containsKey(_key): 67 default_parser_list = sys.registry.getProperty(_key).split(",")
|
/third_party/python/Lib/http/ |
D | cookies.py | 291 self._key = self._value = self._coded_value = None 299 return self._key 326 self._key == morsel._key and 356 self._key = key 362 'key': self._key, 368 self._key = state['key']
|
/third_party/pixman/pixman/ |
D | pixman-compiler.h | 189 static pthread_key_t tls_ ## name ## _key; \ 200 pthread_key_create (&tls_ ## name ## _key, \ 209 pthread_setspecific (tls_ ## name ## _key, value); \ 220 value = pthread_getspecific (tls_ ## name ## _key); \
|