| /external/google-breakpad/src/processor/ |
| fast_source_line_resolver_unittest.cc | 82 virtual const CodeModule* Copy() const {
|
| stackwalker_unittest_utils.h | 117 const google_breakpad::CodeModule *Copy() const { 160 const CodeModules *Copy() const { abort(); } // Tests won't use this.
|
| /external/libtextclassifier/util/utf8/ |
| unicodetext.cc | 6 * You may obtain a copy of the License at 28 // Note: the copy constructor is undefined. 48 void UnicodeText::Repr::Copy(const char* data, int size) { 73 // If there is an old buffer, copy it into the new buffer. 100 UnicodeText::UnicodeText(const UnicodeText& src) { Copy(src); } 107 UnicodeText& UnicodeText::Copy(const UnicodeText& src) { 108 repr_.Copy(src.repr_.data_, src.repr_.size_); 118 repr_.Copy(buffer, byte_length);
|
| /external/llvm/bindings/ocaml/target/ |
| target_ocaml.c | 63 value Copy = copy_string(StringRep); 65 return Copy;
|
| /external/llvm/include/llvm/ADT/ |
| BitVector.h | 92 /// BitVector copy ctor. 173 BitWord Copy = Bits[WordPos]; 175 Copy &= ~0UL << BitPos; 177 if (Copy != 0) 178 return WordPos * BITWORD_SIZE + countTrailingZeros(Copy);
|
| /external/llvm/unittests/ADT/ |
| StringMapTest.cpp | 388 // Simple class that counts how many moves and copy happens when growing a map 392 static unsigned Copy; 397 CountCtorCopyAndMove(const CountCtorCopyAndMove &) { Copy++; } 399 Copy++; 408 unsigned CountCtorCopyAndMove::Copy = 0; 423 CountCtorCopyAndMove::Copy = 0; 430 // We copy once the pair from the Elts vector 431 EXPECT_EQ(0u, CountCtorCopyAndMove::Copy);
|
| /external/pdfium/xfa/fxfa/ |
| cxfa_ffcombobox.cpp | 241 Optional<WideString> CXFA_FFComboBox::Copy() {
|
| cxfa_fftextedit.cpp | 403 Optional<WideString> CXFA_FFTextEdit::Copy() { 404 return ToEdit(m_pNormalWidget.get())->Copy();
|
| /external/swiftshader/third_party/LLVM/include/llvm/ADT/ |
| SmallBitVector.h | 147 /// SmallBitVector copy ctor. 372 SmallBitVector Copy = RHS; 373 Copy.resize(size()); 374 getPointer()->operator&=(*Copy.getPointer()); 386 SmallBitVector Copy = RHS; 387 Copy.resize(size()); 388 getPointer()->operator|=(*Copy.getPointer()); 400 SmallBitVector Copy = RHS; 401 Copy.resize(size()); 402 getPointer()->operator^=(*Copy.getPointer()) [all...] |
| /external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
| BitVector.h | 92 /// BitVector copy ctor. 173 BitWord Copy = Bits[WordPos]; 175 Copy &= ~0UL << BitPos; 177 if (Copy != 0) 178 return WordPos * BITWORD_SIZE + countTrailingZeros(Copy);
|
| /external/tensorflow/tensorflow/core/kernels/ |
| quantized_concat_op.cc | 5 You may obtain a copy of the License at 40 inline void Copy(T* dst, const T* src, int input_index, size_t n) { 57 // RequantizeCopier::Copy is called from within a shard of computation, so
|
| /external/v8/src/crankshaft/ |
| hydrogen-load-elimination.cc | 28 // Recursively copy the entire linked list of field approximations. 29 HFieldApproximation* Copy(Zone* zone) { 30 HFieldApproximation* copy = new(zone) HFieldApproximation(); local 31 copy->object_ = this->object_; 32 copy->last_value_ = this->last_value_; 33 copy->next_ = this->next_ == NULL ? NULL : this->next_->Copy(zone); 34 return copy; 129 return pred_state->Copy(succ_block, pred_block, zone); 145 // Copy state to successor block 148 HLoadEliminationTable* copy = local [all...] |
| unique.h | 263 if (that->size_ == 0) return this->Copy(zone); 264 if (this->size_ == 0) return that->Copy(zone); 296 if (that->size_ == 0) return this->Copy(zone); 313 // Makes an exact copy of this set. O(|this|). 314 UniqueSet<T>* Copy(Zone* zone) const { 315 UniqueSet<T>* copy = new(zone) UniqueSet<T>(this->size_, zone); local 316 copy->size_ = this->size_; 317 memcpy(copy->array_, this->array_, this->size_ * sizeof(Unique<T>)); 318 return copy;
|
| /external/v8/src/regexp/ |
| regexp-macro-assembler-irregexp.cc | 433 Copy(array->GetDataStartAddress()); 443 void RegExpMacroAssemblerIrregexp::Copy(Address a) {
|
| /external/webrtc/webrtc/base/ |
| sslidentity.h | 54 // The chain includes a copy of each certificate, excluding the leaf. 83 // These constructors copy the provided SSLCertificate(s), so the caller 97 SSLCertChain* Copy() const {
|
| /frameworks/base/tools/aapt2/util/ |
| Util.cpp | 6 * You may obtain a copy of the License at 335 std::unique_ptr<uint8_t[]> Copy(const BigBuffer& buffer) {
|
| /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/ |
| BitVector.h | 92 /// BitVector copy ctor. 184 BitWord Copy = Bits[WordPos]; 186 Copy &= ~0UL << BitPos; 188 if (Copy != 0) 189 return WordPos * BITWORD_SIZE + countTrailingZeros(Copy); 207 BitWord Copy = Bits[WordPos]; 210 Copy |= Mask; 212 if (Copy != ~0UL) 213 return next_unset_in_word(WordPos, Copy);
|
| /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/ |
| BitVector.h | 92 /// BitVector copy ctor. 184 BitWord Copy = Bits[WordPos]; 186 Copy &= ~0UL << BitPos; 188 if (Copy != 0) 189 return WordPos * BITWORD_SIZE + countTrailingZeros(Copy); 207 BitWord Copy = Bits[WordPos]; 210 Copy |= Mask; 212 if (Copy != ~0UL) 213 return next_unset_in_word(WordPos, Copy);
|
| /prebuilts/go/darwin-x86/src/io/ |
| io.go | 169 // The Copy function uses ReaderFrom if available. 180 // The Copy function uses WriterTo if available. 336 // the copy is implemented using it. 338 written, err = Copy(dst, LimitReader(src, n)) 349 // Copy copies from src to dst until either EOF is reached 353 // A successful Copy returns err == nil, not err == EOF. 354 // Because Copy is defined to read from src until EOF, it does 358 // the copy is implemented by calling src.WriteTo(dst). 360 // the copy is implemented by calling dst.ReadFrom(src). 361 func Copy(dst Writer, src Reader) (written int64, err error) [all...] |
| /prebuilts/go/darwin-x86/src/text/template/parse/ |
| parse.go | 34 // Copy returns a copy of the Tree. Any parsing state is discarded. 35 func (t *Tree) Copy() *Tree {
|
| /prebuilts/go/linux-x86/src/io/ |
| io.go | 169 // The Copy function uses ReaderFrom if available. 180 // The Copy function uses WriterTo if available. 336 // the copy is implemented using it. 338 written, err = Copy(dst, LimitReader(src, n)) 349 // Copy copies from src to dst until either EOF is reached 353 // A successful Copy returns err == nil, not err == EOF. 354 // Because Copy is defined to read from src until EOF, it does 358 // the copy is implemented by calling src.WriteTo(dst). 360 // the copy is implemented by calling dst.ReadFrom(src). 361 func Copy(dst Writer, src Reader) (written int64, err error) [all...] |
| /prebuilts/go/linux-x86/src/text/template/parse/ |
| parse.go | 34 // Copy returns a copy of the Tree. Any parsing state is discarded. 35 func (t *Tree) Copy() *Tree {
|
| /art/compiler/utils/arm64/ |
| jni_macro_assembler_arm64.cc | 6 * You may obtain a copy of the License at 387 void Arm64JNIMacroAssembler::Copy(FrameOffset dest, 401 UNIMPLEMENTED(FATAL) << "We only support Copy() of size 4 and 8"; 405 void Arm64JNIMacroAssembler::Copy(FrameOffset dest, 423 UNIMPLEMENTED(FATAL) << "We only support Copy() of size 4 and 8"; 427 void Arm64JNIMacroAssembler::Copy(ManagedRegister m_dest_base, 445 UNIMPLEMENTED(FATAL) << "We only support Copy() of size 4 and 8"; 449 void Arm64JNIMacroAssembler::Copy(FrameOffset /*dst*/, 454 UNIMPLEMENTED(FATAL) << "Unimplemented Copy() variant"; 457 void Arm64JNIMacroAssembler::Copy(ManagedRegister m_dest [all...] |
| /art/runtime/base/ |
| arena_allocator.cc | 6 * You may obtain a copy of the License at 108 void ArenaAllocatorStatsImpl<kCount>::Copy(const ArenaAllocatorStatsImpl& other) {
|
| /device/linaro/bootloader/edk2/NetworkPkg/Ip6Dxe/ |
| Ip6Output.c | 46 IP6_ADDRESS_INFO *Copy;
51 Copy = AllocatePool (sizeof (IP6_ADDRESS_INFO));
52 if (Copy == NULL) {
56 Copy->Signature = IP6_ADDR_INFO_SIGNATURE;
57 IP6_COPY_ADDRESS (&Copy->Address, &IpSb->LinkLocalAddr);
58 Copy->IsAnycast = FALSE;
59 Copy->PrefixLength = IP6_LINK_LOCAL_PREFIX_LENGTH;
60 Copy->ValidLifetime = (UINT32) IP6_INFINIT_LIFETIME;
61 Copy->PreferredLifetime = (UINT32) IP6_INFINIT_LIFETIME;
63 InsertTailList (SourceList, &Copy->Link); [all...] |