HomeSort by: relevance | last modified time | path
    Searched defs:FindAndConstruct (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
ValueMap.h 203 value_type& FindAndConstruct(const KeyT &Key) {
204 return Map.FindAndConstruct(Wrap(Key));
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_dense_map.h 207 value_type &FindAndConstruct(const KeyT &Key) {
215 ValueT &operator[](const KeyT &Key) { return FindAndConstruct(Key).second; }
217 value_type &FindAndConstruct(KeyT &&Key) {
226 return FindAndConstruct(__sanitizer::move(Key)).second;
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
DenseMap.h 321 value_type& FindAndConstruct(const KeyT &Key) {
330 return FindAndConstruct(Key).second;
333 value_type& FindAndConstruct(KeyT &&Key) {
342 return FindAndConstruct(std::move(Key)).second;

Completed in 29 milliseconds