OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:needscleanup
(Results
1 - 7
of
7
) sorted by null
/external/clang/lib/AST/
APValue.cpp
215
bool APValue::
needsCleanup
() const {
226
return getInt().
needsCleanup
();
228
return getFloat().
needsCleanup
();
230
assert(getComplexFloatImag().
needsCleanup
() ==
231
getComplexFloatReal().
needsCleanup
() &&
234
return getComplexFloatReal().
needsCleanup
();
236
assert(getComplexIntImag().
needsCleanup
() ==
237
getComplexIntReal().
needsCleanup
() &&
240
return getComplexIntReal().
needsCleanup
();
Decl.cpp
[
all
...]
/external/clang/unittests/AST/
DeclTest.cpp
53
// FIXME: Once this test starts breaking we can test APValue::
needsCleanup
/external/clang/include/clang/AST/
APValue.h
173
/// If APValues are constructed via placement new, \c
needsCleanup
()
176
bool
needsCleanup
() const;
/external/llvm/include/llvm/ADT/
APFloat.h
204
bool
needsCleanup
() const { return partCount() > 1; }
APInt.h
296
if (
needsCleanup
())
307
bool
needsCleanup
() const { return !isSingleWord(); }
[
all
...]
/external/llvm/lib/Support/
APFloat.cpp
589
if (
needsCleanup
())
[
all
...]
Completed in 657 milliseconds