Home
last modified time | relevance | path

Searched refs:_v (Results 1 – 3 of 3) sorted by relevance

/ndk/tests/device/test-gnustl-full/unit/
Dmfunptr_test.cpp181 V(int _v) : in V()
182 v(_v) in V()
185 bool f( int _v ) const { return (v == _v); } in f()
/ndk/tests/device/test-stlport/unit/
Dmfunptr_test.cpp181 V(int _v) : in V()
182 v(_v) in V()
185 bool f( int _v ) const { return (v == _v); } in f()
/ndk/sources/host-tools/make-3.81/
Dmake.h600 #define EINTRLOOP(_v,_c) while (((_v)=_c)==-1 && errno==EINTR) argument
609 #define ENULLLOOP(_v,_c) do{ errno = 0; \ argument
610 while (((_v)=_c)==0 && errno==EINTR); }while(0)