Searched refs:p2 (Results 126 - 150 of 705) sorted by relevance

1234567891011>>

/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.director_2.0.3.R36x_v20101117-1018.jar ... eclipse/equinox/ org/eclipse/equinox/internal/ org/eclipse/equinox/internal/p2/ org/eclipse/equinox/internal/p2/director/ org/eclipse/equinox/internal ...
H A Dorg.eclipse.equinox.p2.artifact.repository_1.1.1.R36x_v20100901.jar ... eclipse/equinox/ org/eclipse/equinox/internal/ org/eclipse/equinox/internal/p2/ org/eclipse/equinox/internal/p2/artifact/ org/eclipse/equinox/internal ...
H A Dorg.eclipse.equinox.p2.repository.tools_2.0.1.R36x_v20100823.jar ... jar org/ org/eclipse/ org/eclipse/equinox/ org/eclipse/equinox/p2/ org/eclipse/equinox/p2/internal/ org/eclipse/equinox/p2/internal ...
H A Dorg.eclipse.equinox.p2.touchpoint.eclipse_2.0.2.R36x_v20100823.jar ... eclipse/equinox/ org/eclipse/equinox/internal/ org/eclipse/equinox/internal/p2/ org/eclipse/equinox/internal/p2/touchpoint/ org/eclipse/equinox/internal ...
/external/libcxx/test/std/depr/depr.auto.ptr/auto.ptr/auto.ptr.cons/
H A Dconvert_assignment.fail.cpp27 A* p2 = new A(2); local
28 std::auto_ptr<A> ap2(p2);
32 assert(ap2.get() == p2);
H A Dconvert_assignment.pass.cpp27 A* p2 = new A(2); local
28 std::auto_ptr<A> ap2(p2);
32 assert(ap2.get() == p2);
/external/libcxx/test/std/depr/depr.auto.ptr/auto.ptr/auto.ptr.members/
H A Dreset.pass.cpp43 A* p2 = new A(2); local
44 ap.reset(p2);
45 assert(ap.get() == p2);
/external/v8/test/webkit/
H A Ddfg-patchable-get-by-id-after-watchpoint.js53 var p2 = new P2();
56 p2.f = 2;
59 var p = (i % 2) ? p1 : p2;
H A DtoString-prefix-postfix-preserve-parens.js131 function testToStringAndReturn(fn, p1, p2, retval)
137 shouldBe("" + fn + "(" + p1 + ", " + p2 +");", retval);
140 shouldBe("eval(unevalf("+fn+ "))" + "(" + p1 + ", " + p2 +");", retval);
/external/bison/lib/
H A Dstrverscmp.c64 const unsigned char *p2 = (const unsigned char *) s2; local
95 if (p1 == p2)
99 c2 = *p2++;
107 c2 = *p2++;
120 if (!ISDIGIT (*p2++))
123 return ISDIGIT (*p2) ? -1 : diff;
/external/blktrace/
H A Dstrverscmp.c92 const unsigned char *p2 = (const unsigned char *) s2; local
123 if (p1 == p2)
127 c2 = *p2++;
135 c2 = *p2++;
148 if (!isdigit (*p2++))
151 return isdigit (*p2) ? -1 : diff;
/external/boringssl/src/crypto/obj/
H A Dobj_xref.pl37 my ($xr, $p1, $p2) = /^(\S+)\s+(\S+)\s+(\S+)/;
40 check_oid($p2);
41 $xref_tbl{$xr} = [$p1, $p2, $ln];
87 my ($p1, $p2) = @{$xref_tbl{$_}};
88 print "\t{NID_$xr, NID_$p1, NID_$p2},\n";
101 my ($p1, $p2, $x) = @{$xref_tbl{$_}};
104 next if $p1 eq "undef" || $p2 eq "undef";
/external/apache-commons-math/src/main/java/org/apache/commons/math/util/
H A DContinuedFraction.java140 double p2 = a * p1 + b * p0;
143 if (Double.isInfinite(p2) || Double.isInfinite(q2)) {
147 * of p2, q2 still overflow.
163 p2 = p1 / lastScaleFactor + (b / scaleFactor * p0);
166 p2 = (a / scaleFactor * p1) + p0 / lastScaleFactor;
169 infinite = Double.isInfinite(p2) || Double.isInfinite(q2);
183 double r = p2 / q2;
193 c = p2 / q2;
195 p1 = p2;
/external/clang/test/Sema/
H A Dcompound-literal.c13 static int *p2 = (int []){2,x}; // expected-error {{initializer element is not a compile-time constant}} variable
25 int *l = (int []){x, *p, *p2};
H A Dx86-attr-force-align-arg-pointer.c18 typedef void (__attribute__((__force_align_arg_pointer__)) *p2)();
/external/libcxx/test/std/utilities/memory/unique.ptr/unique.ptr.create/
H A Dmake_unique.array.pass.cpp34 auto p2 = std::make_unique<std::string[]>(5); local
36 assert ( p2[i].size () == 0 );
/external/libcxx/test/std/utilities/memory/unique.ptr/unique.ptr.special/
H A Dswap.pass.cpp42 A* p2 = new A(2); local
43 std::unique_ptr<A, Deleter<A> > s2(p2, Deleter<A>(2));
47 assert(s2.get() == p2);
51 assert(s1.get() == p2);
63 A* p2 = new A[3]; local
64 std::unique_ptr<A[], Deleter<A[]> > s2(p2, Deleter<A[]>(2));
67 assert(s2.get() == p2);
70 assert(s1.get() == p2);
/external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.ownerless/
H A Downer_less.pass.cpp40 const std::shared_ptr<int> p2 = p1; local
43 const std::weak_ptr<int> w2(p2);
54 assert(!cs(p1, p2));
55 assert(!cs(p2, p1));
57 assert(cs(p3, p1) == cs(p3, p2));
60 assert(!cs(p2, w1));
77 assert(!cs(w1, p2));
80 assert(cs(w3, p1) == cs(w3, p2));
/external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.weak.obs/
H A Downer_before_weak_ptr.pass.cpp22 const std::shared_ptr<int> p2 = p1; local
25 const std::weak_ptr<int> w2(p2);
/external/v8/test/mjsunit/es6/debug-promises/
H A Dthrow-eventually-caught.js21 var p2 = p1.then(function() { }); variable
22 var p3 = p2.catch(function() { });
/external/v8/test/mjsunit/es6/
H A Dmicrotask-delivery.js93 var p2 = newPromise(2).then();
96 p2.resolve();
98 assertOrdering(['p1', 'p2', 'p1:1', 'p2:1']);
106 var p2 = newPromise(2);
119 p2.resolve();
122 assertOrdering(['p1', 'o1', 'o2', 'p2', 'o1', 'o3', 'p3']);
133 var p2 = newPromise(2);
141 p2.resolve();
144 assertOrdering(['p1', 'o1', 'o2', 'p2']);
[all...]
/external/jmonkeyengine/engine/src/desktop/jme3tools/navigation/
H A DNavCalculator.java65 * @param p2 destination position
67 public GCSailing greatCircleSailing(Position p1, Position p2) { argument
74 * @param p2 destination position
76 public RLSailing rhumbLineSailing(Position p1, Position p2) { argument
77 RLSailing rl = mercatorSailing(p1, p2);
84 * @param p2 destination position
86 public RLSailing mercatorSailing(Position p1, Position p2) { argument
88 double dLat = computeDLat(p1.getLatitude(), p2.getLatitude());
91 RLSailing rl = planeSailing(p1, p2);
95 double dLong = computeDLong(p1.getLongitude(), p2
118 planeSailing(Position p1, Position p2) argument
150 convertCourse(float tc, Position p1, Position p2) argument
533 computeBearing(Position p1, Position p2) argument
550 computeAngle(Position p1, Position p2) argument
561 computeHeading(Position p1, Position p2) argument
[all...]
/external/clang/test/Analysis/
H A DNewDelete-variadic.cpp18 void *p2 = operator new[](0, x); // no warn local
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.type.elab/
H A Dp2-0x.cpp5 struct X<int>* p2; // expected-error {{elaborated type refers to a type alias template}} variable in typeref:struct:X
/external/clang/test/CodeGenCXX/
H A Daddress-of-fntemplate.cpp10 void (*p2)() = f<int>;

Completed in 783 milliseconds

1234567891011>>