HomeSort by relevance Sort by last modified time
    Searched full:key_func (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/tools/telemetry/telemetry/value/
merge_values.py 70 def _MergeLikeValuesCommon(all_values, key_func, merge_func):
71 """Groups all_values by key_func then applies merge_func to the groups.
74 provided by key_func. This produces groups of values with like keys. Thes are
91 merge_groups = GroupStably(all_values, key_func)
101 def GroupStably(all_values, key_func):
102 """Groups an array by key_func, with the groups returned in a stable order.
111 key = key_func(value)
  /external/chromium_org/net/socket/
ssl_session_cache_openssl.h 56 // |key_func| is a function used at runtime to retrieve the unique cache key
63 GetSessionKeyFunction* key_func; member in struct:net::SSLSessionCacheOpenSSL::Config
73 // |key_func| is a function that will be used at runtime to retrieve the
107 // configuration's |key_func| function with the |ssl| as parameter.
ssl_session_cache_openssl.cc 153 // operations. |key_func| is used to map a SSL handle to a unique cache
198 std::string cache_key = config_.key_func(ssl);
206 // the cache key. Avoid a call to the configuration's |key_func| function.
210 DCHECK_EQ(config_.key_func(ssl), cache_key);
386 std::string cache_key = config_.key_func(ssl);
ssl_session_cache_openssl_unittest.cc 153 &SSLKeyHelper::Get, // key_func
ssl_client_socket_openssl.cc 319 &GetSessionCacheKey, // key_func
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/
refactor.py 269 key_func = operator.attrgetter("run_order")
270 pre_order_fixers.sort(key=key_func)
271 post_order_fixers.sort(key=key_func)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/
refactor.py 269 key_func = operator.attrgetter("run_order")
270 pre_order_fixers.sort(key=key_func)
271 post_order_fixers.sort(key=key_func)

Completed in 3732 milliseconds