Home
last modified time | relevance | path

Searched defs:view (Results 1 – 4 of 4) sorted by relevance

/system/libbase/
Dfunction_ref_test.cpp57 function_ref<int(int)> view = [](int i) { return i + 1; }; in TEST() local
75 function_ref<int(int)> view = [](int i) { return i + 1; }; in TEST() local
/system/extras/power_profile/camera_avg/Application/src/main/java/com/example/android/powerprofile/cameraavg/
DCameraAvgFragment.java429 public void onViewCreated(final View view, Bundle savedInstanceState) { in onViewCreated()
898 public void onClick(View view) { in onClick()
/system/libcppbor/include/cppbor/
Dcppbor.h486 const std::span<const uint8_t>& view() const { return mView; } in view() function
585 const std::string_view& view() const { return mView; } in view() function
/system/libcppbor/tests/
Dcppbor_test.cpp973 span<const uint8_t> view(vec.data(), vec.size()); in TEST() local
990 auto toVec = [](span<const uint8_t> view) { in TEST()