Home
last modified time | relevance | path

Searched refs:IdentityFunction (Results 1 – 2 of 2) sorted by relevance

/external/compiler-rt/lib/interception/tests/
Dinterception_win_test.cc36 typedef int (*IdentityFunction)(int); typedef
257 IdentityFunction InterceptedRealFunction;
287 IdentityFunction identity = (IdentityFunction)identity_address; in TestIdentityFunctionPatching()
302 IdentityFunction real_identity = (IdentityFunction)real_identity_address; in TestIdentityFunctionPatching()
428 IdentityFunction identity1 = (IdentityFunction)identity_address1; in TEST()
429 IdentityFunction identity2 = (IdentityFunction)identity_address2; in TEST()
439 IdentityFunction real_identity = (IdentityFunction)real_identity_address; in TEST()
/external/guava/guava/src/com/google/common/base/
DFunctions.java80 return (Function<E, E>) IdentityFunction.INSTANCE; in identity()
84 private enum IdentityFunction implements Function<Object, Object> { enum in Functions