Searched refs:pivot (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/tools/aapt2/
H A DNameMangler.h83 size_t pivot = out_name->find('$'); local
84 if (pivot == std::string::npos) {
88 out_package->assign(out_name->data(), pivot);
89 out_name->assign(out_name->data() + pivot + 1,
90 out_name->size() - (pivot + 1));
/frameworks/base/core/java/android/widget/
H A DStackView.java921 float pivot = 0.4f;
922 if (r < pivot) {
923 return 0.85f * cubic(r / pivot);
925 return 0.85f * cubic(1 - (r - pivot) / (1 - pivot));
930 float pivot = 0.3f;
931 if (r > pivot) {
932 return (r - pivot) / (1 - pivot);
939 float pivot
[all...]
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/shadowutil/
H A DSpotShadow.java300 float pivot = angle(points[p * 2], points[p * 2 + 1], ctr);
302 while (angle(points[i * 2 + 0], points[i * 2 + 1], ctr) < pivot) {
305 while (angle(points[j * 2 + 0], points[j * 2 + 1], ctr) > pivot) {
333 float pivot = points[p * 2];
335 while (points[i * 2 + 0] < pivot) {
338 while (points[j * 2 + 0] > pivot) {
/frameworks/base/libs/hwui/
H A DSpotShadow.cpp258 float pivot = angle(points[p], center); local
260 while (angle(points[i], center) > pivot) {
263 while (angle(points[j], center) < pivot) {
612 inline int getClosestUmbraIndex(const Vector2& pivot, const Vector2* polygon, int polygonLength) { argument
622 float currentLengthSquared = (pivot - polygon[currentIndex]).lengthSquared();
/frameworks/native/libs/vr/libpdx_uds/
H A Dremote_method_tests.cpp47 const char pivot = std::isupper(c) ? 'A' : 'a'; local
48 return (c - pivot + 13) % 26 + pivot;

Completed in 915 milliseconds