OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:stripPointerCasts
(Results
1 - 3
of
3
) sorted by null
/external/llvm/include/llvm/IR/
Constant.h
181
Constant *
stripPointerCasts
() {
182
return cast<Constant>(Value::
stripPointerCasts
());
185
const Constant *
stripPointerCasts
() const {
186
return const_cast<Constant*>(this)->
stripPointerCasts
();
Value.h
402
Value *
stripPointerCasts
();
403
const Value *
stripPointerCasts
() const {
404
return const_cast<Value*>(this)->
stripPointerCasts
();
/external/llvm/lib/IR/
Value.cpp
427
Value *Value::
stripPointerCasts
() {
Completed in 2599 milliseconds