Home
last modified time | relevance | path

Searched defs:NoSwap (Results 1 – 1 of 1) sorted by relevance

/system/libbase/
Dexpected_test.cpp398 struct NoSwap { in TEST() struct
399 NoSwap(int val) : val(val) {} in TEST() function
400 NoSwap(const NoSwap& other) : val(other.val) {} in TEST() function
401 NoSwap(NoSwap&& other) : val(other.val) {} in TEST() argument
402 int val; in TEST()