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

1234567

/external/libvncserver/webclients/novnc/include/
H A Ddisplay.js15 var that = {}, // Public API methods
41 Util.conf_defaults(conf, that, defaults, [
59 that.get_context = function () { return c_ctx; };
61 that.set_scale = function(scale) { rescale(scale); };
63 that.set_width = function (val) { that.resize(val, fb_height); };
64 that.get_width = function() { return fb_width; };
66 that.set_height = function (val) { that.resize(fb_width, val); };
67 that
[all...]
H A Drfb.js19 var that = {}, // Public API methods
134 Util.conf_defaults(conf, that, defaults, [
136 ['focusContainer', 'wo', 'dom', document, 'DOM element that captures keyboard input'],
175 that.set_local_cursor = function(cursor) {
188 that.get_display = function() { return display; };
190 that.get_keyboard = function() { return keyboard; };
192 that.get_mouse = function() { return mouse; };
200 // Create the public API interface and initialize values that stay
276 return that; // Return the public API interface
299 // Initialize variables that ar
[all...]
/external/clang/test/CodeGen/
H A Dmozilla-ms-inline-asm.c8 void invoke(void* that, unsigned methodIndex, argument
54 mov ecx,that
/external/skia/include/gpu/gl/
H A DGrGLExtensions.h4 * Use of this source code is governed by a BSD-style license that can be
30 void swap(GrGLExtensions* that) { argument
31 fStrings.swap(&that->fStrings);
32 SkTSwap(fInitialized, that->fInitialized);
37 * of init expects that getString is always non-NULL while getIntegerv and getStringi are non-
/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/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.cpp68 CharacterIterator::CharacterIterator(const CharacterIterator &that) : argument
69 ForwardCharacterIterator(that),
70 textLength(that.textLength), pos(that.pos), begin(that.begin), end(that.end)
75 CharacterIterator::operator=(const CharacterIterator &that) { argument
76 ForwardCharacterIterator::operator=(that);
77 textLength = that.textLength;
78 pos = that
[all...]
H A Dschriter.cpp60 StringCharacterIterator::StringCharacterIterator(const StringCharacterIterator& that) argument
61 : UCharCharacterIterator(that),
62 text(that.text)
72 StringCharacterIterator::operator=(const StringCharacterIterator& that) { argument
73 UCharCharacterIterator::operator=(that);
74 text = that.text;
81 StringCharacterIterator::operator==(const ForwardCharacterIterator& that) const {
82 if (this == &that) {
87 // because that checks for array pointer equality
90 if (typeid(*this) != typeid(that)) {
[all...]
/external/skia/src/gpu/
H A DGrGpuResourcePriv.h5 * Use of this source code is governed by a BSD-style license that can be
33 * If the resource is uncached make it cached. Has no effect on resources that are wrapped or
39 * If the resource is cached make it uncached. Has no effect on resources that are wrapped or
68 ResourcePriv(const ResourcePriv& that) : fResource(that.fResource) {} argument
H A DGrPendingFragmentStage.h4 * Use of this source code is governed by a BSD-style license that can be
23 GrPendingFragmentStage(const GrPendingFragmentStage& that) { *this = that; } argument
25 GrPendingFragmentStage& operator=(const GrPendingFragmentStage& that) { argument
26 fProc.reset(that.fProc.get());
30 bool operator==(const GrPendingFragmentStage& that) const {
31 return this->processor()->isEqual(*that.processor());
34 bool operator!=(const GrPendingFragmentStage& that) const { return !(*this == that); }
H A DGrGpuResourceCacheAccess.h5 * Use of this source code is governed by a BSD-style license that can be
70 CacheAccess(const CacheAccess& that) : fResource(that.fResource) {} argument
H A DGrPathProcessor.cpp4 * Use of this source code is governed by a BSD-style license that can be
47 const GrPrimitiveProcessor& that,
49 if (this->classID() != that.classID() || !this->hasSameTextureAccesses(that)) {
53 const GrPathProcessor& other = that.cast<GrPathProcessor>();
61 that, theirs.fUsesLocalCoords) &&
46 canMakeEqual(const GrBatchTracker& m, const GrPrimitiveProcessor& that, const GrBatchTracker& t) const argument
H A DGrTexturePriv.h4 * Use of this source code is governed by a BSD-style license that can be
13 /** Class that adds methods to GrTexture that are only intended for use internal to Skia.
16 Non-static methods that are not trivial inlines should be spring-boarded (e.g. declared and
57 GrTexturePriv(const GrTexturePriv& that) : fTexture(that.fTexture) { } argument
/external/skia/src/gpu/gl/
H A DGrGLContext.cpp4 * Use of this source code is governed by a BSD-style license that can be
12 GrGLContextInfo& GrGLContextInfo::operator= (const GrGLContextInfo& that) { argument
13 fInterface.reset(SkSafeRef(that.fInterface.get()));
14 fGLVersion = that.fGLVersion;
15 fGLSLGeneration = that.fGLSLGeneration;
16 fVendor = that.fVendor;
17 fRenderer = that.fRenderer;
18 fIsMesa = that.fIsMesa;
19 fIsChromium = that.fIsChromium;
20 *fGLCaps = *that
[all...]
/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
/external/llvm/include/llvm/IR/
H A DUser.h10 // This class defines the interface that one who uses a Value must implement.
75 template <int Idx, typename U> static Use &OpFrom(const U *that) { argument
77 ? OperandTraits<U>::op_end(const_cast<U*>(that))[Idx]
78 : OperandTraits<U>::op_begin(const_cast<U*>(that))[Idx];
151 /// This function is in charge of "letting go" of all objects that this User
155 /// real. Note that no operations are valid on an object that has "dropped
/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/include/utils/win/
H A DSkTScopedComPtr.h5 * Use of this source code is governed by a BSD-style license that can be
63 void swap(SkTScopedComPtr<T>& that) { argument
65 this->fPtr = that.fPtr;
66 that.fPtr = temp;

Completed in 1324 milliseconds

1234567