OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ScopeGuard
(Results
1 - 2
of
2
) sorted by null
/bionic/libc/private/
ScopeGuard.h
24
class
ScopeGuard
{
26
ScopeGuard
(F f) : f_(f), active_(true) {}
28
ScopeGuard
(
ScopeGuard
&& that) : f_(that.f_), active_(that.active_) {
32
~
ScopeGuard
() {
45
DISALLOW_IMPLICIT_CONSTRUCTORS(
ScopeGuard
);
49
ScopeGuard
<T> make_scope_guard(T f) {
50
return
ScopeGuard
<T>(f);
/bionic/tests/
math_test.cpp
56
#include <private/
ScopeGuard
.h>
[
all
...]
Completed in 657 milliseconds