Searched defs:pivot (Results 1 - 3 of 3) 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/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;
/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();

Completed in 641 milliseconds