Searched defs:that (Results 1 - 25 of 313) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A Dmozilla-ms-inline-asm.c8 void invoke(void* that, unsigned methodIndex, argument
54 mov ecx,that
/external/libcxx/test/libcxx/utilities/variant/variant.variant/variant.ctor/
H A Dcopy.pass.cpp26 NTCopy(const NTCopy &that) : value(that.value) {} argument
46 TCopyNTMove(TCopyNTMove&& that) : value(that.value) { that.value = -1; } argument
H A Dmove.pass.cpp27 NTMove(NTMove &&that) : value(that.value) { that.value = -1; } argument
45 TMoveNTCopy(const TMoveNTCopy& that) : value(that.value) {} argument
/external/pdfium/core/fpdfapi/page/
H A Dcpdf_contentmarkitem.cpp2 // Use of this source code is governed by a BSD-style license that can be
16 CPDF_ContentMarkItem::CPDF_ContentMarkItem(const CPDF_ContentMarkItem& that) argument
17 : m_MarkName(that.m_MarkName),
18 m_ParamType(that.m_ParamType),
19 m_pPropertiesDict(that.m_pPropertiesDict) {
20 if (that.m_pDirectDict)
21 m_pDirectDict = ToDictionary(that.m_pDirectDict->Clone());
/external/skia/include/gpu/gl/
H A DGrGLExtensions.h4 * Use of this source code is governed by a BSD-style license that can be
31 void swap(GrGLExtensions* that) { argument
32 fStrings.swap(that->fStrings);
33 SkTSwap(fInitialized, that->fInitialized);
38 * of init expects that getString is always non-NULL while getIntegerv and getStringi are non-
/external/skia/src/gpu/effects/
H A DGrBlurredEdgeFragmentProcessor.cpp4 * Use of this source code is governed by a BSD-style license that can be
66 const GrBlurredEdgeFP& that = other.cast<GrBlurredEdgeFP>(); local
67 return that.fMode == fMode;
/external/clang/test/CXX/special/class.init/class.base.init/
H A Dp9-0x.cpp12 T *that = this; member in struct:S::T
/external/clang/test/CodeGenCXX/
H A Dconstructor-direct-call.cpp41 Test3(const Test3& that) { a = that.a; b = that.b; c = that.c; } argument
/external/clang/test/Index/
H A Dcomplete-access-checks.cpp32 Z that; local
34 that.
/external/clang/test/PCH/
H A Dcxx-member-init.cpp13 S *that = this; member in struct:S
/external/desugar/java/com/google/devtools/common/options/
H A DOptionsBase.java58 // There used to be a sanity check here that checks the stack trace of this constructor
59 // invocation; unfortunately, that makes the options construction about 10x slower. So be
79 * Returns a string that uniquely identifies the options. This value is
108 public final boolean equals(Object that) { argument
109 return that != null &&
110 this.getClass() == that.getClass() &&
111 this.asMap().equals(((OptionsBase) that).asMap());
/external/doclava/src/com/google/doclava/
H A DKeywordEntry.java38 public int compareTo(Object that) { argument
39 return this.label.compareToIgnoreCase(((KeywordEntry) that).label);
H A DSourcePositionInfo.java28 public SourcePositionInfo(SourcePositionInfo that) { argument
29 this.file = that.file;
30 this.line = that.line;
31 this.column = that.column;
35 * Given this position and str which occurs at that position, as well as str an index into str,
40 public static SourcePositionInfo add(SourcePositionInfo that, String str, int index) { argument
41 if (that == null) {
44 int line = that.line;
53 return new SourcePositionInfo(that.file, line, 0);
56 public static SourcePositionInfo findBeginning(SourcePositionInfo that, Strin argument
[all...]
/external/google-breakpad/src/processor/
H A Dbasic_code_modules.cc5 // modification, are permitted provided that the following conditions are
30 // basic_code_modules.cc: Contains all of the CodeModule objects that
48 BasicCodeModules::BasicCodeModules(const CodeModules *that) argument
51 BPLOG_IF(ERROR, !that) << "BasicCodeModules::BasicCodeModules requires "
52 "|that|";
53 assert(that);
55 const CodeModule *main_module = that->GetMainModule();
59 unsigned int count = that->module_count();
68 that->GetModuleAtIndex(module_sequence)->Copy());
/external/guava/guava-gwt/src-super/java/nio/charset/
H A DCharset.java79 public final int compareTo(Charset that) { argument
80 return this.name.compareToIgnoreCase(that.name);
91 Charset that = (Charset) o;
92 return this.name.equals(that.name);
/external/icu/icu4c/source/common/
H A Dchariter.cpp70 CharacterIterator::CharacterIterator(const CharacterIterator &that) : argument
71 ForwardCharacterIterator(that),
72 textLength(that.textLength), pos(that.pos), begin(that.begin), end(that.end)
77 CharacterIterator::operator=(const CharacterIterator &that) { argument
78 ForwardCharacterIterator::operator=(that);
79 textLength = that.textLength;
80 pos = that
[all...]
H A Dschriter.cpp62 StringCharacterIterator::StringCharacterIterator(const StringCharacterIterator& that) argument
63 : UCharCharacterIterator(that),
64 text(that.text)
74 StringCharacterIterator::operator=(const StringCharacterIterator& that) { argument
75 UCharCharacterIterator::operator=(that);
76 text = that.text;
83 StringCharacterIterator::operator==(const ForwardCharacterIterator& that) const {
84 if (this == &that) {
89 // because that checks for array pointer equality
92 if (typeid(*this) != typeid(that)) {
[all...]
/external/libchrome/base/mac/
H A Dscoped_mach_vm.h2 // Use of this source code is governed by a BSD-style license that can be
32 // but user-specified sizes may not be. If there's a concern that a size is
73 void swap(ScopedMachVM& that) { argument
74 std::swap(address_, that.address_);
75 std::swap(size_, that.size_);
H A Dscoped_authorizationref.h2 // Use of this source code is governed by a BSD-style license that can be
40 bool operator==(AuthorizationRef that) const {
41 return authorization_ == that;
44 bool operator!=(AuthorizationRef that) const {
45 return authorization_ != that;
58 void swap(ScopedAuthorizationRef& that) { argument
59 AuthorizationRef temp = that.authorization_;
60 that.authorization_ = authorization_;
/external/pdfium/xfa/fde/
H A Dfde_visualset.h2 // Use of this source code is governed by a BSD-style license that can be
29 FDE_TEXTEDITPIECE(const FDE_TEXTEDITPIECE& that);
39 inline FDE_TEXTEDITPIECE::FDE_TEXTEDITPIECE(const FDE_TEXTEDITPIECE& that) = member in class:FDE_TEXTEDITPIECE
/external/skia/include/ports/
H A DSkFontMgr_indirect.h4 * Use of this source code is governed by a BSD-style license that can be
72 DataEntry(DataEntry&& that) argument
73 : fDataId(that.fDataId)
74 , fTtcIndex(that.fTtcIndex)
75 , fTypeface(that.fTypeface)
77 SkDEBUGCODE(that.fDataId = SkFontIdentity::kInvalidDataId;)
78 SkDEBUGCODE(that.fTtcIndex = 0xbbadbeef;)
79 that.fTypeface = NULL;
91 * typefaces with that data id. By storing the index next to the typeface,
/external/skia/src/gpu/
H A DGrQuad.h4 * Use of this source code is governed by a BSD-style license that can be
22 GrQuad(const GrQuad& that) { argument
23 *this = that;
42 const GrQuad& operator=(const GrQuad& that) { argument
43 memcpy(fPoints, that.fPoints, sizeof(SkPoint) * kNumPoints);
/external/webrtc/webrtc/sound/
H A Dsounddevicelocator.h5 * that can be found in the LICENSE file in the root of the source
22 // SoundSystemInterface must subclass this to add any id information that they
42 explicit SoundDeviceLocator(const SoundDeviceLocator &that) argument
43 : name_(that.name_), device_name_(that.device_name_) {}
/external/google-breakpad/src/tools/solaris/dump_syms/testdata/
H A Ddump_syms_regtest.cc5 // modification, are permitted provided that the following conditions are
44 static char* h(const C &that) { return 0; } argument
/external/google-breakpad/src/tools/windows/dump_syms/testdata/
H A Ddump_syms_regtest.cc5 // modification, are permitted provided that the following conditions are
45 static char* h(const C &that) { return 0; } argument

Completed in 1773 milliseconds

1234567891011>>