Home
last modified time | relevance | path

Searched defs:proj (Results 1 – 25 of 141) sorted by relevance

123456

/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/algorithms/alg.nonmodifying/alg.equal/
H A Dranges.equal.pass.cpp305 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 Dranges.adjacent_find.pass.cpp110 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 Dnotifier.py66 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/
DTelephonyProvider.java1179 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 Dranges.remove.pass.cpp136 auto proj = [&](CompCounter i) { in test() local
150 auto proj = [&](CompCounter i) { in test() local
H A Dranges.remove_if.pass.cpp151 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 Dranges.replace.pass.cpp165 auto proj = [&](int i) { ++projectionCount; return i; }; in test() local
173 auto proj = [&](int i) { ++projectionCount; return i; }; in test() local
H A Dranges.replace_if.pass.cpp145 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 Dranges.none_of.pass.cpp94 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 Dranges.all_of.pass.cpp94 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 Dranges.any_of.pass.cpp94 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 Dranges.copy_if.pass.cpp189 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 Dranges.transform.unary.pass.cpp154 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 Dranges.min.pass.cpp127 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 Dranges.max.pass.cpp128 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 Dranges.minmax.pass.cpp132 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 Dprojection.inl7 GLM_FUNC_QUALIFIER vecType proj(vecType const & x, vecType const & Normal) function
/aosp_15_r20/hardware/google/gfxstream/third-party/glm/include/glm/gtx/
Dprojection.inl7 GLM_FUNC_QUALIFIER vecType proj(vecType const & x, vecType const & Normal) function
/aosp_15_r20/packages/apps/Camera2/src/com/android/camera/data/
DDataUtils.java30 String[] proj = { in getPathFromURI() local
/aosp_15_r20/external/cronet/third_party/libc++/src/test/support/
H A Dcounting_projection.h26 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 Dalgorithm_unittest.cc995 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 DTextureFunctionHLSL.h52 bool proj; member
/aosp_15_r20/external/mesa3d/src/gallium/frontends/nine/
H A Dnine_ff.h92 … 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 Dgeo_homogeneous.cpp78 Transform<Scalar, Size, Projective> proj; in homogeneous() local
/aosp_15_r20/external/skia/gm/
H A Dcrbug_224618.cpp53 SkM44 proj{1.f, 0.f, 0.f, 0.f, in onDraw() local

123456