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

/frameworks/base/tools/aapt2/
H A DNameMangler.h85 size_t pivot = outName->find(u'$'); local
86 if (pivot == std::string::npos) {
90 outPackage->assign(outName->data(), pivot);
91 outName->assign(outName->data() + pivot + 1, outName->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/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) {
627 inline int getClosestUmbraIndex(const Vector2& pivot, const Vector2* polygon, int polygonLength) { argument
637 float currentLengthSquared = (pivot - polygon[currentIndex]).lengthSquared();

Completed in 4866 milliseconds