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

  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
Any.h 111 template <typename T> friend bool any_isa(const Any &Value);
119 template <typename T> bool any_isa(const Any &Value) { function in namespace:llvm
139 assert(Value && any_isa<T>(*Value) && "Bad any cast!");
140 if (!Value || !any_isa<U>(*Value))
147 assert(Value && any_isa<U>(*Value) && "Bad any cast!");
148 if (!Value || !any_isa<U>(*Value))
Any.h 111 template <typename T> friend bool any_isa(const Any &Value);
119 template <typename T> bool any_isa(const Any &Value) { function in namespace:llvm
139 assert(Value && any_isa<T>(*Value) && "Bad any cast!");
140 if (!Value || !any_isa<U>(*Value))
147 assert(Value && any_isa<U>(*Value) && "Bad any cast!");
148 if (!Value || !any_isa<U>(*Value))

Completed in 66 milliseconds