Home
last modified time | relevance | path

Searched refs:pj (Results 1 – 25 of 72) sorted by relevance

123

/third_party/node/deps/npm/node_modules/npm-bundled/
Dindex.js75 const pj = path.resolve(this.path, 'package.json')
76 if (this.packageJsonCache.has(pj))
77 this.onPackage(this.packageJsonCache.get(pj))
79 this.readPackageJson(pj)
83 readPackageJson (pj) { argument
84 fs.readFile(pj, (er, data) =>
85 er ? this.done() : this.onPackageJson(pj, data))
88 onPackageJson (pj, data) { argument
94 this.packageJsonCache.set(pj, this.package)
172 readPackageJson (pj) { argument
[all …]
/third_party/boost/boost/geometry/algorithms/detail/overlay/
Dget_relative_order.hpp62 Point1 const& pi, Point1 const& pj, in apply()
67 int const side_ri_p = strategy.apply(pi, pj, ri); in apply()
68 int const side_si_p = strategy.apply(pi, pj, si); in apply()
71 int const side_rj_p = strategy::apply(pi, pj, rj); in apply()
72 int const side_sj_p = strategy::apply(pi, pj, sj); in apply()
Dless_by_segment_ratio.hpp105 point_type pi, pj, ri, rj, si, sj; in consider_relative_order() local
109 pi, pj); in consider_relative_order()
117 int const side_rj_p = m_strategy.apply(pi, pj, rj); in consider_relative_order()
118 int const side_sj_p = m_strategy.apply(pi, pj, sj); in consider_relative_order()
/third_party/quickjs/
Dcutils.c515 uint8_t *ptr, *pi, *pj, *plt, *pgt, *top, *m; in rqsort() local
550 pj = pgt = top = ptr + nmemb * size; in rqsort()
552 while (pi < pj && (c = cmp(ptr, pi, opaque)) >= 0) { in rqsort()
561 while (pi < (pj -= size) && (c = cmp(ptr, pj, opaque)) <= 0) { in rqsort()
565 swap(pgt, pj, size); in rqsort()
568 if (pi >= pj) in rqsort()
570 swap(pi, pj, size); in rqsort()
625 for (pj = pi; pj > ptr && cmp(pj - size, pj, opaque) > 0; pj -= size) in rqsort()
626 swap(pj, pj - size, size); in rqsort()
/third_party/boost/libs/histogram/test/
Dcheck_build_system.py14 pj = os.path.join variable
21 for dir in (pj(project_path, "test"), pj(project_path, "examples")):
/third_party/boost/boost/geometry/srs/projections/proj/
Dob_tran.hpp84 Parameters pj = par; in o_proj_parameters() local
87 pj.id = pj_get_param_s(params, "o_proj"); in o_proj_parameters()
88 if (pj.id.is_unknown()) in o_proj_parameters()
92 if( pj.id.name == "ob_tran") in o_proj_parameters()
100 return pj; in o_proj_parameters()
108 Parameters pj = par; in o_proj_parameters() local
114 pj.id = static_cast<srs::dpar::value_proj>(it->template get_value<int>()); in o_proj_parameters()
119 if( pj.id.id == srs::dpar::proj_ob_tran) in o_proj_parameters()
127 return pj; in o_proj_parameters()
135 Parameters pj = par; in o_proj_parameters() local
[all …]
/third_party/e2fsprogs/lib/support/
Dsort_r.h105 char *pi, *pj; in sort_r_simple() local
107 for(pj = pi; pj > b && sort_r_cmpswap(pj-w,pj,w,compar,arg); pj -= w) {} in sort_r_simple()
/third_party/ejdb/src/util/
Dsort_r.h113 char *pi, *pj; in sort_r_simple() local
115 for (pj = pi; pj > b && sort_r_cmpswap(pj - w, pj, w, compar, arg); pj -= w) { in sort_r_simple()
/third_party/node/deps/npm/test/tap/
Dci-permissions.js12 const pj = resolve(pkg, 'package', 'package.json')
13 writeFileSync(pj, JSON.stringify({
17 chmodSync(pj, 0o640)
Dspawn-enoent.js8 var pj = JSON.stringify({ variable
17 fs.writeFileSync(pkg + '/package.json', pj)
Dnested-extraneous.js9 var pj = { variable
32 fs.writeFileSync(path.resolve(pkg, 'package.json'), JSON.stringify(pj))
Dumask-lifecycle.js17 var pj = JSON.stringify({ variable
38 fs.writeFileSync(pkg + '/package.json', pj)
Dbundled-dependencies-nonarray.js16 var pj = JSON.stringify({ variable
63 fs.writeFileSync(path.resolve(pkg, 'package.json'), pj)
Duninstall-package.js69 const pj = path.resolve(scopePkg, 'package.json')
70 fs.writeFileSync(pj, JSON.stringify({
Dadd-remote-git-file.js59 var pj = JSON.parse(fs.readFileSync('package.json', 'utf-8'))
60 var dep = pj.dependencies.child
/third_party/boost/boost/geometry/algorithms/detail/buffer/
Dline_line_intersection.hpp32 apply(Point const& pi, Point const& pj, Point const& qi, Point const& qj) in apply()
37 line_type const p = detail::make::make_infinite_line<ct>(pi, pj); in apply()
/third_party/node/deps/npm/test/need-npm5-update/
Doutdated-depth-integer.js13 var pj = JSON.stringify({ variable
32 fs.writeFileSync('package.json', pj)
Doutdated-depth-deep.js13 var pj = JSON.stringify({ variable
33 fs.writeFileSync(path.resolve(pkg, 'package.json'), pj)
/third_party/boost/libs/geometry/test/algorithms/overlay/
Drelative_order.cpp46 P pj = bg::make<P>(pj_x, pj_y); in test_with_point() local
57 …int order = bg::detail::overlay::get_relative_order::apply(pi, pj, ri, rj, si, sj, strategy_type()… in test_with_point()
Dget_turn_info.cpp71 P pj = bg::make<P>(pj_x, pj_y); in test_with_point() local
94 sub_range_from_points<P> sub_range_p(pi, pj, pk); in test_with_point()
158 bg::model::linestring<P> p; p.push_back(pi); p.push_back(pj); p.push_back(pk); in test_with_point()
168 mapper.text(pj, "pj", "fill:rgb(0,192,0)" + style, offset, offset); in test_with_point()
186 … mapper.text(at_j ? pj : pk, op, "fill:rgb(255,128,0)" + style + align, offset * factor, -offset); in test_with_point()
/third_party/boost/libs/geometry/test/robustness/overlay/areal_areal/
Dticket_9081.cpp85 int pj; in main() local
125 pj = j; in main()
228 << " in " << operation << " at " << pj << std::endl in main()
/third_party/flutter/skia/src/gpu/ops/
DGrAAConvexPathRenderer.cpp77 SkPoint pj; in center_of_mass() local
81 pj = segments[1].endPt() - p0; in center_of_mass()
83 pi = pj; in center_of_mass()
84 pj = segments[i + 1].endPt() - p0; in center_of_mass()
86 SkScalar t = SkPoint::CrossProduct(pi, pj); in center_of_mass()
88 center.fX += (pi.fX + pj.fX) * t; in center_of_mass()
89 center.fY += (pi.fY + pj.fY) * t; in center_of_mass()
/third_party/skia/src/gpu/ops/
DAAConvexPathRenderer.cpp80 SkPoint pj; in center_of_mass() local
84 pj = segments[1].endPt() - p0; in center_of_mass()
86 pi = pj; in center_of_mass()
87 pj = segments[i + 1].endPt() - p0; in center_of_mass()
89 SkScalar t = SkPoint::CrossProduct(pi, pj); in center_of_mass()
91 center.fX += (pi.fX + pj.fX) * t; in center_of_mass()
92 center.fY += (pi.fY + pj.fY) * t; in center_of_mass()
/third_party/flutter/skia/third_party/externals/harfbuzz/src/
Dhb-algs.hh680 char *pi, *pj; in sort_r_simple() local
682 for(pj = pi; pj > b && sort_r_cmpswap(pj-w,pj,w,compar,arg); pj -= w) {} in sort_r_simple()
/third_party/toybox/toys/pending/
Dfdisk.c1223 struct partition *px, *py, temp, *pj, *pjj, tmp; in fix_order() local
1258 pj = partitions[j].part; in fix_order()
1259 set_levalue(pj->start4, swap_le32toh(pj->start4)+oj-ojj); in fix_order()
1269 pj = partitions[j].part; in fix_order()
1271 sj = swap_le32toh(pj->start4); in fix_order()
1276 tmp = *pj; in fix_order()
1277 *pj = *pjj; in fix_order()
1279 set_levalue(pj->start4, ojj+sjj-oj); in fix_order()

123