HomeSort by relevance Sort by last modified time
    Searched defs:Clone (Results 1 - 25 of 112) sorted by null

1 2 3 4 5

  /frameworks/base/media/mca/filterfw/native/core/
native_frame.cpp 45 NativeFrame* NativeFrame::Clone() const {
gl_frame.cpp 195 GLFrame* GLFrame::Clone() const {
  /external/pdfium/core/src/fpdfapi/fpdf_page/
fpdf_page_image.cpp 32 m_pImage = pSrcObj->m_pImage->Clone();
52 CPDF_Image* CPDF_Image::Clone()
58 pImage->LoadImageF((CPDF_Stream*)((CPDF_Object*)m_pStream)->Clone(), m_bInline);
60 CPDF_Dictionary *pInlineDict = (CPDF_Dictionary*)m_pInlineDict->Clone(TRUE);
97 m_pInlineDict = (CPDF_Dictionary*)pDict->Clone();
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
gdiplusmetafile.h 212 virtual Metafile* Clone() const
gdipluslinecaps.h 48 virtual AdjustableArrowCap* Clone() const
gdiplusheaders.h 37 * Note: Virtual inline functions (dtors, Clone()) are implemented here: If
72 virtual Image* Clone() const
191 virtual Bitmap* Clone() const
208 Bitmap* Clone(const RectF& rect, PixelFormat format) const;
209 Bitmap* Clone(const Rect& rect, PixelFormat format) const;
210 Bitmap* Clone(REAL x, REAL y, REAL width, REAL height,
212 Bitmap* Clone(INT x, INT y, INT width, INT height,
275 virtual CustomLineCap* Clone() const
345 Font* Clone() const;
429 FontFamily* Clone() const
    [all...]
gdiplusimageattributes.h 48 ImageAttributes* Clone() const
gdiplusmatrix.h 74 Matrix* Clone() const
gdiplusstringformat.h 59 StringFormat* Clone() const
gdiplusbrush.h 48 virtual Brush* Clone() const // each subclass must implement this
97 virtual HatchBrush* Clone() const
204 virtual LinearGradientBrush* Clone() const
412 virtual SolidBrush* Clone() const
519 virtual TextureBrush* Clone() const
gdipluspen.h 57 Pen* Clone() const
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
mspenum.h 21 STDMETHOD(Clone)(Base **ppEnum) {
23 return BaseClass::Clone(ppEnum);
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
BitSet.cs 124 BitSet s = (BitSet)this.Clone();
172 public object Clone() {
173 return new BitSet((ulong[])_bits.Clone());
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
BitSet.cs 137 BitSet s = (BitSet)this.Clone();
194 public object Clone()
196 return new BitSet( (ulong[])_bits.Clone() );
  /art/runtime/mirror/
object.cc 121 Object* Object::Clone(Thread* self) {
122 CHECK(!IsClass()) << "Can't clone classes.";
  /external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGSDNodes.cpp 89 SUnit *ScheduleDAGSDNodes::Clone(SUnit *Old) {
139 // Helper for AddGlue to clone node operands.
320 // FIXME: Multiply by 2 because we may clone nodes during scheduling.
    [all...]
  /external/skia/src/utils/win/
SkIStream.cpp 90 HRESULT STDMETHODCALLTYPE SkBaseIStream::Clone(IStream **)
  /art/runtime/base/
variant_map.h 92 // Clone the key, creating a copy of the contents.
93 virtual VariantMapKeyRaw* Clone() const = 0;
98 // Clone a value whose runtime type is that of the non-erased key's TValue.
122 // Avoid the object slicing problem; use Clone() instead.
154 virtual VariantMapKeyRaw* Clone() const {
274 // Clone the value first, to protect against &value == GetValuePtr(key).
278 storage_map_.insert({{key.Clone(), new_value}});
343 detail::VariantMapKeyRaw* cloned_raw_key = raw_key_other->Clone();
  /external/llvm/tools/bugpoint/
ExtractFunction.cpp 89 Module *Clone = CloneModule(Program);
94 Module::iterator RFI = Clone->begin(); // Get iterator to corresponding fn
122 std::unique_ptr<Module> New = runPassesOn(Clone, Passes);
123 delete Clone;
262 assert(GV && "Not a clone of M1?");
Miscompilation.cpp 254 // Create a clone for two reasons:
256 // will be in the clone and Funcs will still point to valid memory
262 Module *Clone = CloneModule(BD.getProgram(), VMap);
263 Module *Orig = BD.swapProgramIn(Clone);
369 // Clone modules, the tester function will free them.
501 Module *Clone = CloneModule(BD.getProgram(), VMap);
502 Module *Orig = BD.swapProgramIn(Clone);
    [all...]
  /external/sfntly/cpp/src/test/tinyxml/
tinyxml.cpp 222 TiXmlNode* node = addThis.Clone();
242 TiXmlNode* node = addThis.Clone();
275 TiXmlNode* node = addThis.Clone();
312 TiXmlNode* node = withThis.Clone();
859 // Clone the attributes, then clone the children.
871 target->LinkEndChild( node->Clone() );
889 TiXmlNode* TiXmlElement::Clone() const
891 TiXmlElement* clone = new TiXmlElement( Value() ); local
892 if ( !clone )
    [all...]
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
Antlr.Runtime.Tools.Tests.pas 121 function Clone: IANTLRInterface;
134 function TFoo.Clone: IANTLRInterface;
207 ReturnValue := FICloneable.Clone;
  /external/google-breakpad/src/testing/gtest/scripts/
pump.py 125 def Clone(self):
156 def Clone(self):
159 return Token(self.start.Clone(), self.end.Clone(), self.value,
189 start = cursor.Clone()
298 start = pos.Clone()
589 def Clone(self):
590 clone = Env()
591 clone.variables = self.variables[:]
592 clone.ranges = self.ranges[:
    [all...]
  /external/protobuf/gtest/scripts/
pump.py 126 def Clone(self):
157 def Clone(self):
160 return Token(self.start.Clone(), self.end.Clone(), self.value,
190 start = cursor.Clone()
288 start = pos.Clone()
582 def Clone(self):
583 clone = Env()
584 clone.variables = self.variables[:]
585 clone.ranges = self.ranges[:
    [all...]
  /external/tinyxml/
tinyxml.cpp 212 TiXmlNode* node = addThis.Clone();
225 TiXmlNode* node = addThis.Clone();
251 TiXmlNode* node = addThis.Clone();
277 TiXmlNode* node = withThis.Clone();
854 // Clone the attributes, then clone the children.
866 target->LinkEndChild( node->Clone() );
871 TiXmlNode* TiXmlElement::Clone() const
873 TiXmlElement* clone = new TiXmlElement( Value() ); local
874 if ( !clone )
1127 TiXmlDocument* clone = new TiXmlDocument(); local
1316 TiXmlComment* clone = new TiXmlComment(); local
1376 TiXmlText* clone = 0; local
1476 TiXmlDeclaration* clone = new TiXmlDeclaration(); local
1508 TiXmlUnknown* clone = new TiXmlUnknown(); local
    [all...]

Completed in 6682 milliseconds

1 2 3 4 5