#include "llvm/ADT/STLExtras.h"
#include "llvm/ADT/iterator_range.h"
#include "llvm/Support/Compiler.h"
#include <algorithm>
#include <cassert>
#include <cstddef>
#include <cstring>
#include <limits>
#include <string>
#include <type_traits>
#include <utility>
Go to the source code of this file.
|
| llvm |
| This class represents lattice values for constants.
|
|
|
bool | llvm::getAsUnsignedInteger (StringRef Str, unsigned Radix, unsigned long long &Result) |
| Helper functions for StringRef::getAsInteger. More...
|
|
bool | llvm::getAsSignedInteger (StringRef Str, unsigned Radix, long long &Result) |
|
bool | llvm::consumeUnsignedInteger (StringRef &Str, unsigned Radix, unsigned long long &Result) |
|
bool | llvm::consumeSignedInteger (StringRef &Str, unsigned Radix, long long &Result) |
|
LLVM_NODISCARD hash_code | llvm::hash_value (StringRef S) |
| Compute a hash_code for a StringRef. More...
|
|
|
LLVM_ATTRIBUTE_ALWAYS_INLINE bool | llvm::operator== (StringRef LHS, StringRef RHS) |
|
LLVM_ATTRIBUTE_ALWAYS_INLINE bool | llvm::operator!= (StringRef LHS, StringRef RHS) |
|
bool | llvm::operator< (StringRef LHS, StringRef RHS) |
|
bool | llvm::operator<= (StringRef LHS, StringRef RHS) |
|
bool | llvm::operator> (StringRef LHS, StringRef RHS) |
|
bool | llvm::operator>= (StringRef LHS, StringRef RHS) |
|
std::string & | llvm::operator+= (std::string &buffer, StringRef string) |
|