HomeSort by relevance Sort by last modified time
    Searched refs:getData (Results 201 - 225 of 890) sorted by null

1 2 3 4 5 6 7 891011>>

  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_characterdatareplacedataexceedslengthofarg.java 78 childData = child.getData();
hc_characterdatareplacedataexceedslengthofdata.java 76 childData = child.getData();
hc_characterdatareplacedatamiddle.java 77 childData = child.getData();
hc_characterdatasetnodevalue.java 35 * method, call "getData()" and compare.
72 childData = child.getData();
nodeprocessinginstructionsetnodevalue.java 32 * nodeValue and ProcessingInstruction.getData.
71 piValue = ((ProcessingInstruction) /*Node */piNode).getData();
processinginstructiongetdata.java 31 * The "getData()" method returns the content of the
38 * child nodes of this document. Invoke the "getData()"
74 data = piNode.getData();
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
ProcessingInstructionImpl.java 46 public String getData() {
  /packages/apps/Browser/src/com/android/browser/
DataUri.java 71 public byte[] getData() {
  /packages/apps/Dialer/src/com/android/dialer/calllog/
CallLogReceiver.java 40 CallLogNotificationsService.EXTRA_NEW_VOICEMAIL_URI, intent.getData());
  /packages/apps/PackageInstaller/src/com/android/packageinstaller/
RemoveReceiver.java 30 Uri uri = intent.getData();
  /sdk/emulator/opengl/host/libs/Translator/include/GLcommon/
GLESbuffer.h 29 GLvoid* getData(){ return m_data;}
GLESpointer.h 34 const GLvoid* getData() const;
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppReceiver.java 116 Uri uri = intent.getData();
125 notMgr.cancel((int)ContentUris.parseId(intent.getData()));
137 Log.v(TAG, "Receiver open for " + intent.getData());
139 Log.v(TAG, "Receiver list for " + intent.getData());
144 Uri uri = intent.getData();
167 notMgr.cancel((int)ContentUris.parseId(intent.getData()));
193 if (V) Log.v(TAG, "Receiver hide for " + intent.getData());
194 Cursor cursor = context.getContentResolver().query(intent.getData(), null, null, null,
209 context.getContentResolver().update(intent.getData(), values, null, null);
222 if (V) Log.v(TAG, "Receiver Transfer Complete Intent for " + intent.getData());
    [all...]
  /external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/
EncodeHtmlDataUriTest.java 18 private String getData(String dataUri) {
25 String data = getData(dataUri);
  /external/chromium_org/third_party/flot/
jquery.flot.threshold.min.js 1 (function(B){var A={series:{threshold:null}};function C(D){function E(L,S,M){if(!S.threshold){return }var F=M.pointsize,I,O,N,G,K,H=B.extend({},S);H.datapoints={points:[],pointsize:F};H.label=null;H.color=S.threshold.color;H.threshold=null;H.originSeries=S;H.data=[];var P=S.threshold.below,Q=M.points,R=S.lines.show;threspoints=[];newpoints=[];for(I=0;I<Q.length;I+=F){O=Q[I];N=Q[I+1];K=G;if(N<P){G=threspoints}else{G=newpoints}if(R&&K!=G&&O!=null&&I>0&&Q[I-F]!=null){var J=(O-Q[I-F])/(N-Q[I-F+1])*(P-N)+O;K.push(J);K.push(P);for(m=2;m<F;++m){K.push(Q[I+m])}G.push(null);G.push(null);for(m=2;m<F;++m){G.push(Q[I+m])}G.push(J);G.push(P);for(m=2;m<F;++m){G.push(Q[I+m])}}G.push(O);G.push(N)}M.points=newpoints;H.datapoints.points=threspoints;if(H.datapoints.points.length>0){L.getData().push(H)}}D.hooks.processDatapoints.push(E)}B.plot.plugins.push({init:C,options:A,name:"threshold (…)
  /external/jmonkeyengine/engine/src/core/com/jme3/texture/
Image.java 479 if (getData(0) != null)
663 * <code>getData</code> returns the data for this image. If the data is
668 public List<ByteBuffer> getData() {
673 * <code>getData</code> returns the data for this image. If the data is
678 public ByteBuffer getData(int index) {
740 if (this.getData() != null && !this.getData().equals(that.getData()))
742 if (this.getData() == null && that.getData() != null
    [all...]
  /external/jmonkeyengine/engine/src/desktop/com/jme3/util/
Screenshots.java 16 int[] cpuArray = db.getData();
40 byte[] cpuArray = db.getData();
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/piff/
ProtectionSpecificHeader.java 62 public ByteBuffer getData() {
71 ByteBuffer data = getData().duplicate();
  /external/sonivox/jet_tools/JetCreator/
img_Copy.py 8 def getData():
44 stream = cStringIO.StringIO(getData())
img_Find.py 8 def getData():
78 stream = cStringIO.StringIO(getData())
  /frameworks/base/drm/java/android/drm/
DrmRights.java 123 mData = data.getData();
140 public byte[] getData() {
  /frameworks/base/tests/BrowserPowerTest/src/com/android/browserpowertest/
PowerMeasurement.java 54 msg.getData().putString(PowerTestActivity.MSG_NAV_URL, TESTING_URL);
55 msg.getData().putBoolean(PowerTestActivity.MSG_NAV_LOGTIME, true);
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/func/
CipherSymmetricKeyThread.java 37 byte[] input = getData().getBytes();
71 checkEncodedData(getData().getBytes(), decrypted);
  /libcore/luni/src/test/java/tests/security/cert/
CertificateCertificateRepTest.java 37 rep.getData()));
50 assertTrue(Arrays.equals(TestUtils.getX509Certificate_v3(), rep1.getData()));
  /sdk/emulator/opengl/host/libs/Translator/GLcommon/
GLESpointer.cpp 48 return m_buffer ? static_cast<unsigned char*>(m_buffer->getData()) + m_buffOffset : NULL;
51 const GLvoid* GLESpointer::getData() const{

Completed in 623 milliseconds

1 2 3 4 5 6 7 891011>>