/external/webrtc/webrtc/tools/loopback_test/ |
loopback_test.js | 110 var pc2 = new RTCPeerConnection(pcConfig, pcConstraints); 111 constrainTurnCandidates(pc2); 112 constrainBitrateAnswer(pc2); 113 pc2StatTracker = new StatTracker(pc2, 50); 118 var call = new Call(pc1, pc2); 149 // var c = new Call(pc1, pc2); 153 function Call(pc1, pc2) { 154 pc1.onicecandidate = applyIceCandidate.bind(pc2); 155 pc2.onicecandidate = applyIceCandidate.bind(pc1); 180 pc2.setRemoteDescription(desc) [all...] |
/external/curl/src/ |
tool_operhlp.c | 132 const char *pc, *pc2; local 143 pc2 = strrchr(pc, '\\'); 145 if(pc2 && (!pc || pc < pc2)) 146 pc = pc2;
|
/external/webrtc/webrtc/tools/rtcbot/test/ |
oneWayVideoStreamingWithDownloadingFile.js | 34 function onPeerConnectionCreated(pc1, pc2) { 37 pc2.addEventListener('addstream', onAddStream); 38 pc1.addEventListener('icecandidate', onIceCandidate.bind(pc2)); 39 pc2.addEventListener('icecandidate', onIceCandidate.bind(pc1)); 48 createOfferAndAnswer(pc1, pc2); 69 function createOfferAndAnswer(pc1, pc2) { 76 pc2.setRemoteDescription(offer, onSetSessionDescriptionSuccess, 79 pc2.createAnswer(gotAnswer, test.fail); 84 pc2.setLocalDescription(answer, onSetSessionDescriptionSuccess, 102 report.collectStatsFromPeerConnection("bot2", pc2); [all...] |
two_way_video_streaming.js | 45 function onPeerConnectionCreated(pc1, pc2) { 48 pc2.addEventListener('addstream', onAddStream.bind(bot2)); 49 pc1.addEventListener('icecandidate', onIceCandidate.bind(pc2)); 50 pc2.addEventListener('icecandidate', onIceCandidate.bind(pc1)); 52 createOfferAndAnswer(pc1, pc2); 72 function createOfferAndAnswer(pc1, pc2) { 79 pc2.setRemoteDescription(offer, onSetSessionDescriptionSuccess, 82 pc2.createAnswer(gotAnswer, test.fail); 87 pc2.setLocalDescription(answer, onSetSessionDescriptionSuccess, 100 report.collectStatsFromPeerConnection("bot2", pc2); [all...] |
webrtc_video_streaming.js | 30 function onPeerConnectionCreated(pc1, pc2) { 33 pc2.addEventListener('addstream', onAddStream); 34 pc1.addEventListener('icecandidate', onIceCandidate.bind(pc2)); 35 pc2.addEventListener('icecandidate', onIceCandidate.bind(pc1)); 44 createOfferAndAnswer(pc1, pc2); 65 function createOfferAndAnswer(pc1, pc2) { 72 pc2.setRemoteDescription(offer, onSetSessionDescriptionSuccess, 75 pc2.createAnswer(gotAnswer, test.fail); 80 pc2.setLocalDescription(answer, onSetSessionDescriptionSuccess, 93 report.collectStatsFromPeerConnection("bot2", pc2); [all...] |
three_bots_video_conference.js | 68 function establichCall(pc1, pc2) { 69 pc1.addEventListener('icecandidate', onIceCandidate.bind(pc2)); 70 pc2.addEventListener('icecandidate', onIceCandidate.bind(pc1)); 72 createOfferAndAnswer(pc1, pc2); 91 function createOfferAndAnswer(pc1, pc2) { 98 pc2.setRemoteDescription(offer, onSetSessionDescriptionSuccess, 101 pc2.createAnswer(gotAnswer, test.fail); 106 pc2.setLocalDescription(answer, onSetSessionDescriptionSuccess,
|
simple_offer_answer.js | 18 function run(pc1, pc2) { 26 pc2.setRemoteDescription(offer, expectedCall, test.fail); 27 pc2.createAnswer(gotAnswer, test.fail); 33 pc2.setLocalDescription(answer, expectedCall, test.fail);
|
/frameworks/base/core/tests/coretests/src/android/view/ |
PinchZoomAction.java | 76 final MotionEvent.PointerCoords pc2 = new MotionEvent.PointerCoords(); local 77 pc2.x = secondFingerStartCoords[0]; 78 pc2.y = secondFingerEndCoords[1]; 79 pc2.pressure = 1; 80 pc2.size = 1; 84 final MotionEvent.PointerCoords[] pointerCoords = new MotionEvent.PointerCoords[]{pc1, pc2}; 128 pc2.x = stepsSecondFinger[i][0]; 129 pc2.y = stepsSecondFinger[i][1];
|
/libcore/luni/src/test/java/tests/security/cert/ |
PKIXCertPathCheckerTest.java | 55 PKIXCertPathChecker pc2 = (PKIXCertPathChecker) pc1.clone(); local 56 assertNotSame("notSame", pc1, pc2);
|
/external/libcups/cups/ |
testpwg.c | 414 _ppd_cache_t *pc2; /* Loaded data */ local 435 if ((pc2 = _ppdCacheCreateWithFile("test.pwg", NULL)) == NULL) 443 if (pc2->num_sizes != pc->num_sizes) 448 printf(" SAVED num_sizes=%d, ORIG num_sizes=%d\n", pc2->num_sizes, 455 for (i = pc->num_sizes, size = pc->sizes, size2 = pc2->sizes; 508 for (i = pc->num_sources, map = pc->sources, map2 = pc2->sources; 531 for (i = pc->num_types, map = pc->types, map2 = pc2->types; 558 _ppdCacheDestroy(pc2);
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
d3dx9math.inl | 885 static inline D3DXCOLOR* D3DXColorAdd(D3DXCOLOR *pout, const D3DXCOLOR *pc1, const D3DXCOLOR *pc2) 887 if ( !pout || !pc1 || !pc2 ) return NULL; 888 pout->r = (pc1->r) + (pc2->r); 889 pout->g = (pc1->g) + (pc2->g); 890 pout->b = (pc1->b) + (pc2->b); 891 pout->a = (pc1->a) + (pc2->a); 895 static inline D3DXCOLOR* D3DXColorLerp(D3DXCOLOR *pout, const D3DXCOLOR *pc1, const D3DXCOLOR *pc2, FLOAT s) 897 if ( !pout || !pc1 || !pc2 ) return NULL; 898 pout->r = (1-s) * (pc1->r) + s *(pc2->r); 899 pout->g = (1-s) * (pc1->g) + s *(pc2->g) [all...] |
/external/valgrind/none/tests/mips64/ |
cvm_atomic_thread.c | 312 pid_t child, pc2; local 406 pc2 = waitpid(child, &status, 0); 407 assert(pc2 == child);
|
/external/clang/test/SemaCXX/ |
namespace-alias.cpp | 109 N::C2 *pc2 = 0;
|
/external/javassist/src/main/javassist/compiler/ |
CodeGen.java | 385 int pc2 = 0; local 397 pc2 = bytecode.currentPc(); 406 bytecode.write16bit(pc2, bytecode.currentPc() - pc2 + 1); 428 int pc2 = bytecode.currentPc(); local 437 bytecode.addIndex(pc2 - bytecode.currentPc() + 1); 471 int pc2 = 0; local 474 pc2 = bytecode.currentPc(); 490 bytecode.write16bit(pc2, pc4 - pc2 + 1) 669 int pc2 = bc.currentPc(); local 923 int pc2 = bytecode.currentPc(); local [all...] |
/prebuilts/go/darwin-x86/src/debug/gosym/ |
pclntab_test.go | 273 pc2, fn2, err := tab.LineToPC(file, lookupline) 277 t.Errorf("expected no PC at line %d, got %#x (%s)", lookupline, pc2, fn2.Name) 281 } else if pc != pc2 { 282 t.Errorf("expected PC %#x (%s) at line %d, got PC %#x (%s)", pc, fn.Name, line, pc2, fn2.Name)
|
/prebuilts/go/linux-x86/src/debug/gosym/ |
pclntab_test.go | 273 pc2, fn2, err := tab.LineToPC(file, lookupline) 277 t.Errorf("expected no PC at line %d, got %#x (%s)", lookupline, pc2, fn2.Name) 281 } else if pc != pc2 { 282 t.Errorf("expected PC %#x (%s) at line %d, got PC %#x (%s)", pc, fn.Name, line, pc2, fn2.Name)
|
/external/clang/test/CodeGenCXX/ |
member-function-pointers.cpp | 34 // GLOBAL-LP64: @pc2 = global { i64, i64 } { i64 ptrtoint (void (%struct.A*)* @_ZN1A1fEv to i64), i64 16 }, align 8 35 void (C::*pc2)() = &C::f; variable
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/estimation/ |
LevenbergMarquardtEstimator.java | 398 double pc2 = previousCost * previousCost; local 399 coeff1 = coeff1 / pc2; 400 double coeff2 = lmPar * lmNorm * lmNorm / pc2;
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/general/ |
LevenbergMarquardtOptimizer.java | 399 double pc2 = previousCost * previousCost; local 400 coeff1 = coeff1 / pc2; 401 double coeff2 = lmPar * lmNorm * lmNorm / pc2; [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/ |
DESEngine.java | 140 private static final byte[] pc2 = field in class:DESEngine 366 if (pcr[pc2[j]]) 371 if (pcr[pc2[j + 24]])
|
/external/libvncserver/common/ |
d3des.c | 68 static unsigned char pc2[48] = { variable 102 if( pcr[pc2[j]] ) kn[m] |= bigbyte[j]; 103 if( pcr[pc2[j+24]] ) kn[n] |= bigbyte[j];
|
/external/wpa_supplicant_8/src/crypto/ |
des-internal.c | 80 static const u8 pc2[48] = { variable 307 if ((int) pcr[(int) pc2[j]] != 0) 309 if ((int) pcr[(int) pc2[j + 24]] != 0)
|
/external/clang/test/CXX/drs/ |
dr15xx.cpp | 246 char *pc2 = f({1, 2}); // #2 also member in namespace:dr1591::core_reflector_28543
|
/external/libvncserver/webclients/java-applet/ |
VncViewer.jar | |
/prebuilts/tools/common/m2/repository/com/jayway/android/robotium/robotium-solo/5.5.3/ |
robotium-solo-5.5.3.jar | |