/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/algorithms/alg.nonmodifying/alg.equal/ |
H A D | ranges.equal.pass.cpp | 305 auto proj = [&](int i) { ++projCount; return i; }; in test() local 317 auto proj = [&](int i) { ++projCount; return i; }; in test() local 332 auto proj = [&](int i) { ++projCount; return i; }; in test() local 344 auto proj = [&](int i) { ++projCount; return i; }; in test() local 361 auto proj = [&](int i) { ++projCount; return i; }; in test() local 373 auto proj = [&](int i) { ++projCount; return i; }; in test() local
|
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/algorithms/alg.nonmodifying/alg.adjacent.find/ |
H A D | ranges.adjacent_find.pass.cpp | 110 auto proj = [&](int i) { ++projectionCount; return i; }; in test() local 121 auto proj = [&](int i) { ++projectionCount; return i; }; in test() local 135 auto proj = [&](int i) { ++projectionCount; return i; }; in test() local 146 auto proj = [&](int i) { ++projectionCount; return i; }; in test() local
|
/aosp_15_r20/tools/external_updater/ |
H A D | notifier.py | 66 def _read_owner_file(proj): argument 74 def _send_email(proj, latest_ver, recipient, upgrade_log): argument 180 def _upgrade(proj): argument
|
/aosp_15_r20/packages/providers/TelephonyProvider/src/com/android/providers/telephony/ |
D | TelephonyProvider.java | 1179 String[] proj = {"_id"}; in onUpgrade() local 1373 String[] proj = {"_id"}; in onUpgrade() local 1394 String[] proj = {Telephony.SimInfo.COLUMN_UNIQUE_KEY_SUBSCRIPTION_ID}; in onUpgrade() local 1440 String[] proj = {Telephony.SimInfo.COLUMN_UNIQUE_KEY_SUBSCRIPTION_ID, in onUpgrade() local 1442 try (Cursor c = db.query(SIMINFO_TABLE, proj, null, null, null, null, null)) { in onUpgrade() argument 1469 String[] proj = {"_id"}; in onUpgrade() local 1742 String[] proj = {Telephony.SimInfo.COLUMN_UNIQUE_KEY_SUBSCRIPTION_ID, in onUpgrade() local 1744 try (Cursor c = db.query(SIMINFO_TABLE, proj, null, null, null, null, null)) { in onUpgrade() argument 1951 String[] proj = {Telephony.SimInfo.COLUMN_UNIQUE_KEY_SUBSCRIPTION_ID, in onUpgrade() local 1953 try (Cursor c = db.query(SIMINFO_TABLE, proj, null, null, null, null, null)) { in onUpgrade() argument [all …]
|
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/algorithms/alg.modifying.operations/alg.remove/ |
H A D | ranges.remove.pass.cpp | 136 auto proj = [&](CompCounter i) { in test() local 150 auto proj = [&](CompCounter i) { in test() local
|
H A D | ranges.remove_if.pass.cpp | 151 auto proj = [&](int i) { in test() local 168 auto proj = [&](int i) { in test() local
|
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/algorithms/alg.modifying.operations/alg.replace/ |
H A D | ranges.replace.pass.cpp | 165 auto proj = [&](int i) { ++projectionCount; return i; }; in test() local 173 auto proj = [&](int i) { ++projectionCount; return i; }; in test() local
|
H A D | ranges.replace_if.pass.cpp | 145 auto proj = [&](int i) { ++projectionCount; return i; }; in test() local 156 auto proj = [&](int i) { ++projectionCount; return i; }; in test() local
|
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/algorithms/alg.nonmodifying/alg.none_of/ |
H A D | ranges.none_of.pass.cpp | 94 auto proj = [&](int i) { ++projectionCount; return i; }; in test_iterators() local 104 auto proj = [&](int i) { ++projectionCount; return i; }; in test_iterators() local
|
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/algorithms/alg.nonmodifying/alg.all_of/ |
H A D | ranges.all_of.pass.cpp | 94 auto proj = [&](int i) { ++projectionCount; return i; }; in test_iterators() local 104 auto proj = [&](int i) { ++projectionCount; return i; }; in test_iterators() local
|
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/algorithms/alg.nonmodifying/alg.any_of/ |
H A D | ranges.any_of.pass.cpp | 94 auto proj = [&](int i) { ++projectionCount; return i; }; in test_iterators() local 104 auto proj = [&](int i) { ++projectionCount; return i; }; in test_iterators() local
|
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/algorithms/alg.modifying.operations/alg.copy/ |
H A D | ranges.copy_if.pass.cpp | 189 auto proj = [&](int i) { ++projectionCount; return i; }; in test() local 201 auto proj = [&](int i) { ++projectionCount; return i; }; in test() local
|
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/algorithms/alg.modifying.operations/alg.transform/ |
H A D | ranges.transform.unary.pass.cpp | 154 auto proj = [&](int) { ++projCount; return 0; }; in test_iterators() local 166 auto proj = [&](int) { ++projCount; return 0; }; in test_iterators() local
|
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/algorithms/alg.sorting/alg.min.max/ |
H A D | ranges.min.pass.cpp | 127 auto proj = [](int i) { return i == 5 ? -100 : i; }; in test_initializer_list() local 211 auto proj = [](int& i) { return i == 5 ? -100 : i; }; in test_range() local
|
H A D | ranges.max.pass.cpp | 128 auto proj = [](int i) { return i == 5 ? 100 : i; }; in test_initializer_list() local 215 auto proj = [](int& i) { return i == 5 ? 100 : i; }; in test_range() local
|
H A D | ranges.minmax.pass.cpp | 132 auto proj = [](int i) { return i == 5 ? -100 : i; }; in test_initializer_list() local 212 auto proj = [](int& i) { return i == 5 ? -100 : i; }; in test_range_types() local
|
/aosp_15_r20/external/oboe/samples/RhythmGame/third_party/glm/gtx/ |
H A D | projection.inl | 7 GLM_FUNC_QUALIFIER vecType proj(vecType const & x, vecType const & Normal) function
|
/aosp_15_r20/hardware/google/gfxstream/third-party/glm/include/glm/gtx/ |
D | projection.inl | 7 GLM_FUNC_QUALIFIER vecType proj(vecType const & x, vecType const & Normal) function
|
/aosp_15_r20/packages/apps/Camera2/src/com/android/camera/data/ |
D | DataUtils.java | 30 String[] proj = { in getPathFromURI() local
|
/aosp_15_r20/external/cronet/third_party/libc++/src/test/support/ |
H A D | counting_projection.h | 26 constexpr counting_projection(Proj proj, int& count) : proj_(std::move(proj)), count_(&count) {} in counting_projection()
|
/aosp_15_r20/external/cronet/base/ranges/ |
H A D | algorithm_unittest.cc | 995 const auto proj = [](const Int& i) { return 2 - i.value; }; in TEST() local 1020 const auto proj = [](const Int& i) { return 2 - i.value; }; in TEST() local 1052 const auto proj = [](const Int& i) { return 2 - i.value; }; in TEST() local 1082 const auto proj = [](const Int& i) { return 2 - i.value; }; in TEST() local
|
/aosp_15_r20/external/angle/src/compiler/translator/hlsl/ |
H A D | TextureFunctionHLSL.h | 52 bool proj; member
|
/aosp_15_r20/external/mesa3d/src/gallium/frontends/nine/ |
H A D | nine_ff.h | 92 … unsigned proj = !!(context->ff.tex_stage[s][D3DTSS_TEXTURETRANSFORMFLAGS] & D3DTTFF_PROJECTED); in nine_ff_get_projected_key() local
|
/aosp_15_r20/external/eigen/test/ |
H A D | geo_homogeneous.cpp | 78 Transform<Scalar, Size, Projective> proj; in homogeneous() local
|
/aosp_15_r20/external/skia/gm/ |
H A D | crbug_224618.cpp | 53 SkM44 proj{1.f, 0.f, 0.f, 0.f, in onDraw() local
|