Searched refs:copyFrom (Results 1 - 25 of 101) sorted by relevance

12345

/external/clang/test/CodeGenCXX/
H A Dcasts.cpp6 void copyFrom(const A &src);
12 void A::copyFrom(const A &src) { function in class:PR5248::A
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DByteString.java88 public static ByteString copyFrom(final byte[] bytes, final int offset, method in class:ByteString
98 public static ByteString copyFrom(final byte[] bytes) { method in class:ByteString
99 return copyFrom(bytes, 0, bytes.length);
106 public static ByteString copyFrom(final ByteBuffer bytes, final int size) { method in class:ByteString
116 public static ByteString copyFrom(final ByteBuffer bytes) { method in class:ByteString
117 return copyFrom(bytes, bytes.remaining());
124 public static ByteString copyFrom(final String text, final String charsetName) method in class:ByteString
149 public static ByteString copyFrom(List<ByteString> list) { method in class:ByteString
H A DInternal.java93 return ByteString.copyFrom(bytes.getBytes("ISO-8859-1"));
/external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
H A DInternal.java93 return ByteString.copyFrom(bytes.getBytes("ISO-8859-1"));
H A DByteString.java191 public static ByteString copyFrom(byte[] bytes, int offset, int size) { method in class:ByteString
203 public static ByteString copyFrom(byte[] bytes) { method in class:ByteString
204 return copyFrom(bytes, 0, bytes.length);
215 public static ByteString copyFrom(ByteBuffer bytes, int size) { method in class:ByteString
228 public static ByteString copyFrom(ByteBuffer bytes) { method in class:ByteString
229 return copyFrom(bytes, bytes.remaining());
241 public static ByteString copyFrom(String text, String charsetName) method in class:ByteString
336 return ByteString.copyFrom(results);
364 return ByteString.copyFrom(buf, 0, bytesRead);
404 public static ByteString copyFrom(Iterabl method in class:ByteString
[all...]
/external/protobuf/java/src/main/java/com/google/protobuf/micro/
H A DByteStringMicro.java82 public static ByteStringMicro copyFrom(final byte[] bytes, final int offset, method in class:ByteStringMicro
92 public static ByteStringMicro copyFrom(final byte[] bytes) { method in class:ByteStringMicro
93 return copyFrom(bytes, 0, bytes.length);
100 public static ByteStringMicro copyFrom(final String text, final String charsetName) method in class:ByteStringMicro
/external/chromium_org/third_party/protobuf/java/src/test/java/com/google/protobuf/
H A DByteStringTest.java91 ByteString substring = ByteString.copyFrom(bytes).substring(500);
98 ByteString byteString = ByteString.copyFrom(bytes, 500, 200);
99 assertTrue("copyFrom sub-range must contain the expected bytes",
105 ByteString byteString = ByteString.copyFrom(bytes);
106 assertTrue("copyFrom must contain the expected bytes",
115 ByteString byteString = ByteString.copyFrom(byteBuffer, 200);
116 assertTrue("copyFrom byteBuffer sub-range must contain the expected bytes",
125 ByteString byteString = ByteString.copyFrom(byteBuffer);
126 assertTrue("copyFrom byteBuffer sub-range must contain the expected bytes",
132 ByteString byteString = ByteString.copyFrom(testStrin
[all...]
H A DBoundedByteStringTest.java50 stringUnderTest = ByteString.copyFrom(sourceBytes).substring(from, to);
H A DIsValidUtf8Test.java136 return ByteString.copyFrom(toByteArray(bytes));
143 ByteString lit = ByteString.copyFrom(realBytes);
H A DLazyStringEndToEndTest.java49 ByteString.copyFrom(new byte[] {
90 ByteString.copyFrom(sink));
H A DRopeByteStringTest.java74 concatenated = concatenated.concat(ByteString.copyFrom(testBytes, i * pieceSize, pieceSize));
81 ByteString testString = ByteString.copyFrom(testBytes);
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
H A DAudioDestinationNode.h77 m_sourceBus->copyFrom(*bus);
86 destinationBus->copyFrom(*m_sourceBus);
H A DAudioDestinationNode.cpp83 destinationBus->copyFrom(*renderedBus);
H A DChannelSplitterNode.cpp74 destination->channel(0)->copyFrom(source->channel(i));
H A DMediaStreamAudioDestinationNode.cpp76 m_mixBus->copyFrom(*input(0)->bus());
/external/chromium_org/third_party/WebKit/Source/platform/audio/
H A DAudioChannel.cpp59 void AudioChannel::copyFrom(const AudioChannel* sourceChannel) function in class:WebCore::AudioChannel
114 copyFrom(sourceChannel);
H A DAudioChannel.h119 void copyFrom(const AudioChannel* sourceChannel);
/external/chromium_org/third_party/skia/src/animator/
H A DSkDisplayTypes.cpp118 SkDisplayString::SkDisplayString(SkString& copyFrom) : value(copyFrom) { argument
187 SkDisplayArray::SkDisplayArray(SkTypedArray& copyFrom) : values(copyFrom) { argument
/external/skia/src/animator/
H A DSkDisplayTypes.cpp118 SkDisplayString::SkDisplayString(SkString& copyFrom) : value(copyFrom) { argument
187 SkDisplayArray::SkDisplayArray(SkTypedArray& copyFrom) : values(copyFrom) { argument
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DOutputProperties.java326 copyFrom(savedProps, false);
577 public void copyFrom(Properties src) method in class:OutputProperties
579 copyFrom(src, true);
592 public void copyFrom(Properties src, boolean shouldResetDefaults) method in class:OutputProperties
631 public void copyFrom(OutputProperties opsrc) method in class:OutputProperties
636 copyFrom(opsrc.getProperties());
/external/apache-xml/src/main/java/org/apache/xalan/transformer/
H A DSerializerSwitcher.java80 htmlOutputProperties.copyFrom(prevProperties, true);
173 htmlOutputProperties.copyFrom(prevProperties, true);
/external/javassist/src/main/javassist/bytecode/
H A DExceptionsAttribute.java46 copyFrom(src, classnames);
81 private void copyFrom(ExceptionsAttribute srcAttr, Map classnames) { method in class:ExceptionsAttribute
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowMessage.java51 public void copyFrom(Message m) { method in class:ShadowMessage
103 m.copyFrom(msg);
/external/okhttp/src/main/java/com/squareup/okhttp/internal/http/
H A DRawHeaders.java79 public RawHeaders(RawHeaders copyFrom) { argument
80 namesAndValues.addAll(copyFrom.namesAndValues);
81 requestLine = copyFrom.requestLine;
82 statusLine = copyFrom.statusLine;
83 httpMinorVersion = copyFrom.httpMinorVersion;
84 responseCode = copyFrom.responseCode;
85 responseMessage = copyFrom.responseMessage;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DDOMCountersGraph.js247 var copyFrom = index > 0 ? index - 1 : index + 1;
248 if (copyFrom < this._counters.length) {
249 this._counters[index].documentCount = this._counters[copyFrom].documentCount;
250 this._counters[index].nodeCount = this._counters[copyFrom].nodeCount;
251 this._counters[index].listenerCount = this._counters[copyFrom].listenerCount;

Completed in 1544 milliseconds

12345