/external/guava/guava-tests/benchmark/com/google/common/cache/ |
MapMakerComparisonBenchmark.java | 36 private static final Function<Object, Object> IDENTITY = Functions.identity(); 39 private final Map<Object, Object> computingMap = new MapMaker().makeComputingMap(IDENTITY); 41 CacheBuilder.newBuilder().recordStats().build(CacheLoader.from(IDENTITY)); 43 CacheBuilder.newBuilder().build(CacheLoader.from(IDENTITY));
|
/external/skia/src/ports/ |
SkRemotableFontMgr_win_dw.cpp | 29 IUnknown* fLoader; // In COM only IUnknown pointers may be safely used for identity. 181 SkFontIdentity identity = { SkFontIdentity::kInvalidDataId }; variable 186 identity); 193 identity); 195 HR_GENERAL(FontToIdentity(font.get(), &identity), nullptr, identity); variable 197 return identity; 243 SkFontIdentity identity = { SkFontIdentity::kInvalidDataId }; variable 247 HR_GENERAL(getDefaultFontFamilyName(&dwFamilyName), nullptr, identity); variable 249 HR_GENERAL(sk_cstring_to_wchar(familyName, &dwFamilyName), nullptr, identity); variable 394 SkFontIdentity identity = { SkFontIdentity::kInvalidDataId }; variable 407 HR_GENERAL(getDefaultFontFamilyName(&dwFamilyName), nullptr, identity); variable 409 HR_GENERAL(sk_cstring_to_wchar(familyName, &dwFamilyName), nullptr, identity); variable 418 HR_GENERAL(sk_cstring_to_wchar(bcp47[bcp47Count-1], &dwBcp47Local), nullptr, identity); variable [all...] |
/external/wpa_supplicant_8/src/eap_server/ |
eap_server_aka.c | 35 IDENTITY, CHALLENGE, REAUTH, NOTIFICATION, SUCCESS, FAILURE 63 case IDENTITY: 64 return "IDENTITY"; 105 wpa_printf(MSG_DEBUG, "EAP-AKA: Unknown reauth identity - " 106 "request full auth identity"); 107 /* Remain in IDENTITY state for another round */ 136 /* Check if we already know the identity from EAP-Response/Identity */ 138 username = sim_get_username(sm->identity, sm->identity_len); 145 * Since re-auth username was recognized, skip AKA/Identity [all...] |
/external/guava/guava-tests/test/com/google/common/base/ |
EquivalenceTest.java | 50 .addEqualityGroup(Equivalence.identity().pairwise()) 92 SerializableTester.reserializeAndAssert(Equivalence.identity()); 117 Equivalence.identity().onResultOf(Functions.toStringFunction()), 118 Equivalence.identity().onResultOf(Functions.toStringFunction())) 120 .addEqualityGroup(Equivalence.identity().onResultOf(Functions.identity())) 137 .addEqualityGroup(Equivalence.identity().equivalentTo("1")) 148 EquivalenceTester.of(Equivalence.identity()) 158 .addEqualityGroup(Equivalence.identity(), Equivalence.identity()) [all...] |
/external/webrtc/webrtc/base/ |
stringutils_unittest.cc | 43 // EXPECT_EQ(0, ascii_string_compare(NULL, NULL, 1, identity)); 48 EXPECT_EQ(-1, ascii_string_compare(L"Test", "Test1", 5, identity)); 54 EXPECT_EQ(0, ascii_string_compare(L"Test", "Test1", 3, identity)); 59 EXPECT_EQ(0, ascii_string_compare(L"Test", "Test", 10, identity)); 64 EXPECT_EQ(0, ascii_string_compare(L"Test", "Test", 5, identity)); 70 EXPECT_EQ(-1, ascii_string_compare(L"abc", "abd", 4, identity)); 76 EXPECT_EQ(1, ascii_string_compare(L"xyz", "xy", 5, identity));
|
/external/clang/test/SemaObjCXX/ |
arc-templates.mm | 111 template<typename T> struct identity { }; 113 template<typename T> identity<T> accept_strong_ptr(__strong T*); 114 template<typename T> identity<T> accept_strong_ref(__strong T&); 116 template<typename T> identity<T> accept_any_ptr(T*); 117 template<typename T> identity<T> accept_any_ref(T&); 125 identity<id> res1 = accept_strong_ptr(sip); 126 identity<__strong id> res2 = accept_any_ptr(sip); 132 identity<id> res3 = accept_strong_ref(si); 133 identity<__strong id> res4 = accept_any_ref(si); 134 identity<__weak id> res5 = accept_any_ref(wi) [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/cognito/identity/ |
layer1.py | 28 from boto.cognito.identity import exceptions 37 with a consistent identity over the lifetime of an application. 40 more third-party identity providers (Facebook, Google, or Login 49 identity providers, set the `Logins` map with the identity 61 DefaultRegionEndpoint = "cognito-identity.us-east-1.amazonaws.com" 99 Creates a new identity pool. The identity pool is a store of 100 user identity information that is specific to your AWS 101 account. The limit on identity pools is 60 per account [all...] |
__init__.py | 28 Get all available regions for the Amazon Cognito Identity service. 33 from boto.cognito.identity.layer1 import CognitoIdentityConnection 34 return get_regions('cognito-identity',
|
/external/fonttools/Lib/fontTools/misc/ |
transform.py | 14 Identity -- Transform instance set to the identity transformation 42 >>> t = Identity.scale(0.5).translate(100, 200).skew(0.1, 0.2) 51 __all__ = ["Transform", "Identity", "Offset", "Scale"] 228 >>> t = Identity.translate(2, 3).scale(4, 5) 246 >>> t = Identity.scale(2, 3).translate(4, 5) 255 >>> len(Identity) 263 >>> list(Identity) 265 >>> tuple(Identity) 275 >>> t1 = Identity.scale(2, 3).translate(4, 6 [all...] |
/external/emma/ |
test.sh | 38 return identity(a + 1) 47 boolean identity(int a) { 65 return identity(a) && identity(b) || identity(b) 70 boolean identity(int a) { 81 FN:12,SubBunny::identity (int): boolean 82 FNDA:1,SubBunny::identity (int): boolean 93 FN:27,Bunny::identity (int): boolean 94 FNDA:1,Bunny::identity (int): boolea [all...] |
/external/v8/test/mjsunit/ |
codegen-coverage.js | 30 function identity(x) { function 54 x = identity(1); 67 x = identity(1); 75 x = identity(1); 84 x = identity(1); 95 x = identity(-1073741824); // Least (31-bit) smi. 106 x = identity(-1073741824); 114 x = identity(-1073741824); 122 x = identity(-1073741824); 130 x = identity(-1073741824) [all...] |
/packages/providers/CalendarProvider/src/com/android/providers/calendar/ |
SQLiteContentProvider.java | 98 final long identity = clearCallingIdentityInternal(); local 106 restoreCallingIdentityInternal(identity); 126 final long identity = clearCallingIdentityInternal(); local 137 restoreCallingIdentityInternal(identity); 153 final long identity = clearCallingIdentityInternal(); local 162 restoreCallingIdentityInternal(identity); 186 final long identity = clearCallingIdentityInternal(); local 194 restoreCallingIdentityInternal(identity); 227 final long identity = clearCallingIdentityInternal(); local 244 restoreCallingIdentityInternal(identity); [all...] |
/external/clang/test/CodeGenCXX/ |
mangle-variadic-templates.cpp | 6 template<typename T> struct identity { using type = T; }; struct 55 template<typename R, typename ...ArgTypes> identity<R(ArgTypes...)> f5() {} 57 template identity<int(int, float, double)> f5(); 68 template template_tuple<identity, add_reference> f7(); 72 template void f8<int, identity<int>, identity<float>>(int (&)[6]);
|
/external/eigen/test/ |
inverse.cpp | 28 identity = MatrixType::Identity(rows, rows); local 35 VERIFY_IS_APPROX(identity, m1.inverse() * m1 ); 36 VERIFY_IS_APPROX(identity, m1 * m1.inverse() ); 55 VERIFY_IS_APPROX(identity, m1*m2); 61 VERIFY_IS_APPROX(identity, m1*m2);
|
/external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d10tri/ |
d3d10tri.vcxproj | 81 <Command Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">"$(DXSDK_DIR)\Utilities\bin\x86\fxc.exe" /Fh%(Identity).ps.h /Eps /Tps_4_0 %(Identity)
82 "$(DXSDK_DIR)\Utilities\bin\x86\fxc.exe" /Fh%(Identity).vs.h /Evs /Tvs_4_0 %(Identity)</Command>
83 <Outputs Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(Identity).ps.h;%(Identity).vs.h;%(Outputs)</Outputs>
|
/external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11gears/ |
d3d11gears.vcxproj | 87 <Command Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">"$(DXSDK_DIR)\Utilities\bin\x86\fxc.exe" /Fh%(Identity).ps.h /Eps /Tps_4_0 %(Identity)
88 "$(DXSDK_DIR)\Utilities\bin\x86\fxc.exe" /Fh%(Identity).vs.h /Evs /Tvs_4_0 %(Identity)</Command>
89 <Outputs Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(Identity).ps.h;%(Identity).vs.h;%(Outputs)</Outputs>
|
/external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11spikysphere/ |
d3d11spikysphere.vcxproj | 87 <Command Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">"$(DXSDK_DIR)\Utilities\bin\x86\fxc.exe" /Fh%(Identity).ps.h /Eps /Tps_4_0 %(Identity)
88 "$(DXSDK_DIR)\Utilities\bin\x86\fxc.exe" /Fh%(Identity).vs.h /Evs /Tvs_4_0 %(Identity)</Command>
89 <Outputs Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(Identity).ps.h;%(Identity).vs.h;%(Outputs)</Outputs>
|
/external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11tex/ |
d3d11tex.vcxproj | 81 <Command Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">"$(DXSDK_DIR)\Utilities\bin\x86\fxc.exe" /Fh%(Identity).ps.h /Eps /Tps_4_0 %(Identity)
82 "$(DXSDK_DIR)\Utilities\bin\x86\fxc.exe" /Fh%(Identity).vs.h /Evs /Tvs_4_0 %(Identity)</Command>
83 <Outputs Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">%(Identity).ps.h;%(Identity).vs.h;%(Outputs)</Outputs>
|
/frameworks/base/libs/hwui/tests/unit/ |
DamageAccumulatorTests.cpp | 32 TEST(DamageAccumulator, identity) { 35 da.pushTransform(&Matrix4::identity()); 38 da.pushTransform(&Matrix4::identity()); 70 da.pushTransform(&Matrix4::identity()); 72 da.pushTransform(&Matrix4::identity()); 75 da.pushTransform(&Matrix4::identity());
|
/frameworks/native/libs/ui/tests/ |
mat_test.cpp | 99 const mat4 identity; local 107 EXPECT_EQ(identity, m0); 111 const mat4 identity; local 121 EXPECT_EQ(identity, inverse(identity)); 136 EXPECT_EQ(m1, m1*identity);
|
/frameworks/native/services/sensorservice/ |
BatteryService.cpp | 66 int64_t identity = IPCThreadState::self()->clearCallingIdentity(); local 68 IPCThreadState::self()->restoreCallingIdentity(identity); 75 int64_t identity = IPCThreadState::self()->clearCallingIdentity(); local 77 IPCThreadState::self()->restoreCallingIdentity(identity); 85 int64_t identity = IPCThreadState::self()->clearCallingIdentity(); local 94 IPCThreadState::self()->restoreCallingIdentity(identity);
|
/prebuilts/go/darwin-x86/src/net/smtp/ |
auth.go | 42 identity, username, password string 49 // on TLS connections to host and act as identity. Usually identity will be 51 func PlainAuth(identity, username, password, host string) Auth { 52 return &plainAuth{identity, username, password, host} 71 resp := []byte(a.identity + "\x00" + a.username + "\x00" + a.password)
|
/prebuilts/go/linux-x86/src/net/smtp/ |
auth.go | 42 identity, username, password string 49 // on TLS connections to host and act as identity. Usually identity will be 51 func PlainAuth(identity, username, password, host string) Auth { 52 return &plainAuth{identity, username, password, host} 71 resp := []byte(a.identity + "\x00" + a.username + "\x00" + a.password)
|
/art/test/StaticLeafMethods/ |
StaticLeafMethods.java | 20 static byte identity(byte x) { method in class:StaticLeafMethods 23 static int identity(int x) { method in class:StaticLeafMethods 38 static double identity(double x) { method in class:StaticLeafMethods
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/ |
DTMDefaultBaseTraversers.java | 37 * identity indices within their logic, for efficiency's sake. Be very 48 * @param dtmIdentity The DTM identity ID for this DTM. 70 * @param dtmIdentity The DTM identity ID for this DTM. 339 * @param axisRoot The root identity of the axis. 431 int identity = makeNodeIdentity(context); local 433 int firstMatch = getNextIndexed(identity, _firstch(identity), 519 * @param axisRoot The root identity of the axis. 520 * @param identity The node in question. 524 protected abstract boolean isAfterAxis(int axisRoot, int identity); 684 int identity = getSubtreeRoot(context); local 1661 int identity = 0; local 1732 int identity = 0; local [all...] |