Home
last modified time | relevance | path

Searched refs:getContent (Results 1 – 25 of 235) sorted by relevance

12345678910

/external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/bdd/steps/
DCommentParsingSteps.java130 assertThat(lineCommentUnderTest.getContent(), is(expectedContent)); in thenLineCommentIs()
137 … assertThat(lineCommentUnderTest.getContent(), is(equalToIgnoringWhiteSpace(expectedContent))); in thenBlockCommentIs()
144 assertThat(commentUnderTest.getContent(), is(equalToIgnoringWhiteSpace(expectedContent))); in thenJavadocCommentIs()
213 assertThat(compilationUnit.getComment().get().getContent(), is(expectedContent)); in thenTheCompilationIsCommentedCompilationUnitComment()
229 assertThat(commentUnderTest.getContent(), is(equalToIgnoringWhiteSpace(expectedContent))); in thenTheCompilationUnitOrphanCommentIs()
247 assertThat(commentUnderTest.getContent(), is(equalToIgnoringWhiteSpace(expectedContent))); in thenCommentInCompilationUnitIs()
259 assertThat(classUnderTest.getComment().get().getContent(), is(expectedContent)); in thenClassIsCommented()
279 assertThat(commentUnderTest.getContent(), is(equalToIgnoringWhiteSpace(expectedContent))); in thenClassOrphanCommentIs()
287 …assertThat(methodUnderTest.getComment().get().getContent(), equalToIgnoringWhiteSpace(expectedCont… in thenMethodInClassIsCommented()
304 assertThat(commentUnderTest.getContent(), is(equalToIgnoringWhiteSpace(expectedContent))); in thenCommentInMethodInClassIs()
[all …]
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/sampleentry/
DTextSampleEntry.java92 protected void getContent(ByteBuffer byteBuffer) { in getContent() method in TextSampleEntry
101 boxRecord.getContent(byteBuffer); in getContent()
102 styleRecord.getContent(byteBuffer); in getContent()
234 public void getContent(ByteBuffer bb) { in getContent() method in TextSampleEntry.BoxRecord
287 public void getContent(ByteBuffer bb) { in getContent() method in TextSampleEntry.StyleRecord
/external/volley/src/test/java/com/android/volley/toolbox/
DAdaptedHttpStackTest.java69 assertNull(response.getContent()); in emptyResponse()
79 when(mHttpEntity.getContent()).thenReturn(mContent); in nonEmptyResponse()
87 assertSame(mContent, response.getContent()); in nonEmptyResponse()
97 when(mHttpEntity.getContent()).thenReturn(mContent); in responseTooBig()
119 assertNull(response.getContent()); in responseWithHeaders()
/external/apache-http/android/src/com/android/internal/http/multipart/
DStringPart.java112 private byte[] getContent() { in getContent() method in StringPart
127 out.write(getContent()); in sendData()
138 return getContent().length; in lengthOfData()
/external/opencensus-java/contrib/agent/src/integration-test/java/io/opencensus/contrib/agent/instrumentation/
DUrlInstrumentationIT.java61 public void getContent() throws Exception { in getContent() method in UrlInstrumentationIT
63 Object content = url.getContent(); in getContent()
79 url.getContent(); in getContent_fails()
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/threegpp26245/
DFontTableBox.java44 protected void getContent(ByteBuffer byteBuffer) { in getContent() method in FontTableBox
47 record.getContent(byteBuffer); in getContent()
77 public void getContent(ByteBuffer bb) { in getContent() method in FontTableBox.FontRecord
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
DCMSSignedData.java162 public Object getContent() in CMSSignedData()
164 return signedContent.getContent(); in CMSSignedData()
194 ASN1Encodable content = signedData.getEncapContentInfo().getContent(); in CMSSignedData()
218 return SignedData.getInstance(contentInfo.getContent()); in getSignedData()
280 …return signedData.getEncapContentInfo().getContent() == null && signedData.getSignerInfos().size()… in isDetachedSignature()
290 …return signedData.getEncapContentInfo().getContent() == null && signedData.getSignerInfos().size()… in isCertificateManagementMessage()
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
DItemLocationBox.java84 protected void getContent(ByteBuffer byteBuffer) { in getContent() method in ItemLocationBox
94 item.getContent(byteBuffer); in getContent()
225 public void getContent(ByteBuffer bb) { in getContent() method in ItemLocationBox.Item
240 extent.getContent(bb); in getContent()
312 public void getContent(ByteBuffer os) { in getContent() method in ItemLocationBox.Extent
DUserDataBox.java51 protected void getContent(ByteBuffer byteBuffer) { in getContent() method in UserDataBox
52 …super.getContent(byteBuffer); //To change body of overridden methods use File | Settings | File… in getContent()
DEditListBox.java96 protected void getContent(ByteBuffer byteBuffer) { in getContent() method in EditListBox
100 entry.getContent(byteBuffer); in getContent()
228 public void getContent(ByteBuffer bb) { in getContent() method in EditListBox.Entry
/external/testng/src/main/resources/
Dtestng-reports.js40 function getContent(t) { function
60 var w = getContent($(this));
68 var w = getContent($(this));
/external/jsilver/src/com/google/streamhtmlparser/util/
DCharacterRecorder.java82 sb.append(aCharacterRecorder.getContent()); in CharacterRecorder()
138 public String getContent() { in getContent() method in CharacterRecorder
/external/apache-http/src/org/apache/http/entity/
DHttpEntityWrapper.java99 public InputStream getContent() in getContent() method in HttpEntityWrapper
101 return wrappedEntity.getContent(); in getContent()
DBasicHttpEntity.java83 public InputStream getContent() in getContent() method in BasicHttpEntity
131 InputStream instream = getContent(); in writeTo()
DBufferedHttpEntity.java81 public InputStream getContent() throws IOException { in getContent() method in BufferedHttpEntity
85 return wrappedEntity.getContent(); in getContent()
/external/okhttp/repackaged/okhttp-urlconnection/src/main/java/com/android/okhttp/internal/huc/
DDelegatingHttpsURLConnection.java133 @Override public Object getContent() throws IOException { in getContent() method in DelegatingHttpsURLConnection
134 return delegate.getContent(); in getContent()
138 @Override public Object getContent(Class[] types) throws IOException { in getContent() method in DelegatingHttpsURLConnection
139 return delegate.getContent(types); in getContent()
/external/okhttp/okhttp-urlconnection/src/main/java/com/squareup/okhttp/internal/huc/
DDelegatingHttpsURLConnection.java132 @Override public Object getContent() throws IOException { in getContent() method in DelegatingHttpsURLConnection
133 return delegate.getContent(); in getContent()
137 @Override public Object getContent(Class[] types) throws IOException { in getContent() method in DelegatingHttpsURLConnection
138 return delegate.getContent(types); in getContent()
/external/testng/src/main/java/org/testng/reporters/jq/
DBaseMultiSuitePanel.java9 abstract String getContent(ISuite suite, XMLStringBuffer xsb); in getContent() method in BaseMultiSuitePanel
24 xsb.addString(getContent(s, xsb)); in generate()
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/basemediaformat/
DAvcNalUnitStorageBox.java85 protected void getContent(ByteBuffer byteBuffer) { in getContent() method in AvcNalUnitStorageBox
86 this.avcDecoderConfigurationRecord.getContent(byteBuffer); in getContent()
/external/apache-http/src/org/apache/http/conn/
DBasicManagedEntity.java103 public InputStream getContent() throws IOException { in getContent() method in BasicManagedEntity
105 return new EofSensorInputStream(wrappedEntity.getContent(), this); in getContent()
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/cenc/
DProtectionSystemSpecificHeaderBox.java53 public byte[] getContent() { in getContent() method in ProtectionSystemSpecificHeaderBox
71 protected void getContent(ByteBuffer byteBuffer) { in getContent() method in ProtectionSystemSpecificHeaderBox
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/fragment/
DTrackExtendsBox.java52 protected void getContent(ByteBuffer byteBuffer) { in getContent() method in TrackExtendsBox
58 defaultSampleFlags.getContent(byteBuffer); in getContent()
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/
DAbstractBox.java85 protected abstract void getContent(ByteBuffer byteBuffer); in getContent() method in AbstractBox
125 getContent(bb);
226 getContent(bb); in verify()
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/concretesyntaxmodel/
DCsmToken.java46 public String getContent(Node node) { in getContent() method in CsmToken
81 printer.print(getContent(node)); in prettyPrint()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/pem/
DPemWriter.java67 int dataLen = ((obj.getContent().length + 2) / 3) * 4; in getOutputSize()
96 writeEncoded(obj.getContent()); in writeObject()

12345678910