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

1 2 3 4 5 6 7 8 91011>>

  /external/libvncserver/webclients/novnc/include/
display.js 15 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.get_height = function() { return fb_height; }
    [all...]
rfb.js 19 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 are reset before each connectio
    [all...]
  /libcore/luni/src/main/java/libcore/reflect/
GenericArrayTypeImpl.java 43 GenericArrayType that = (GenericArrayType) o; local
44 return Objects.equals(getGenericComponentType(), that.getGenericComponentType());
  /developers/build/prebuilts/gradle/MediaBrowserService/Application/src/main/java/com/example/android/mediabrowserservice/model/
MutableMediaMetadata.java 23 * Holder class that encapsulates a MediaMetadata and allows the actual metadata to be modified
45 MutableMediaMetadata that = (MutableMediaMetadata) o; local
47 return TextUtils.equals(trackId, that.trackId);
  /developers/build/prebuilts/gradle/SpeedTracker/Shared/src/main/java/com/example/android/wearable/speedtracker/common/
LocationEntry.java 22 * A class that models a GPS location point with additional information about the time that the data
48 LocationEntry that = (LocationEntry) o; local
50 if (calendar.getTimeInMillis() != that.calendar.getTimeInMillis()) {
  /developers/samples/android/media/MediaBrowserService/Application/src/main/java/com/example/android/mediabrowserservice/model/
MutableMediaMetadata.java 23 * Holder class that encapsulates a MediaMetadata and allows the actual metadata to be modified
45 MutableMediaMetadata that = (MutableMediaMetadata) o; local
47 return TextUtils.equals(trackId, that.trackId);
  /developers/samples/android/wearable/wear/SpeedTracker/Shared/src/main/java/com/example/android/wearable/speedtracker/common/
LocationEntry.java 22 * A class that models a GPS location point with additional information about the time that the data
48 LocationEntry that = (LocationEntry) o; local
50 if (calendar.getTimeInMillis() != that.calendar.getTimeInMillis()) {
  /development/samples/Home/src/com/example/android/home/
ApplicationInfo.java 44 * When set to true, indicates that the icon has been resized.
70 ApplicationInfo that = (ApplicationInfo) o; local
71 return title.equals(that.title) &&
73 that.intent.getComponent().getClassName());
  /development/samples/browseable/MediaBrowserService/src/com.example.android.mediabrowserservice/model/
MutableMediaMetadata.java 23 * Holder class that encapsulates a MediaMetadata and allows the actual metadata to be modified
45 MutableMediaMetadata that = (MutableMediaMetadata) o; local
47 return TextUtils.equals(trackId, that.trackId);
  /development/samples/browseable/SpeedTracker/Shared/src/com.example.android.wearable.speedtracker.common/
LocationEntry.java 22 * A class that models a GPS location point with additional information about the time that the data
48 LocationEntry that = (LocationEntry) o; local
50 if (calendar.getTimeInMillis() != that.calendar.getTimeInMillis()) {
  /external/apache-http/src/org/apache/http/auth/
BasicUserPrincipal.java 77 BasicUserPrincipal that = (BasicUserPrincipal) o; local
78 if (LangUtils.equals(this.username, that.username)) {
UsernamePasswordCredentials.java 117 UsernamePasswordCredentials that = (UsernamePasswordCredentials) o; local
118 if (LangUtils.equals(this.principal, that.principal)) {
  /external/clang/test/CXX/special/class.init/class.base.init/
p9-0x.cpp 12 T *that = this; member in struct:S::T
  /external/clang/test/Index/
complete-access-checks.cpp 32 Z that; local
34 that.
  /external/clang/test/PCH/
cxx-member-init.cpp 13 S *that = this; member in struct:S
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/
OriginalKey.java 30 OriginalKey that = (OriginalKey) o; local
32 if (!id.equals(that.id)) {
35 if (!signature.equals(that.signature)) {
  /external/glide/library/src/main/java/com/bumptech/glide/signature/
MediaStoreSignature.java 10 * A unique signature based on metadata data from the media store that detects common changes to media store files like
45 MediaStoreSignature that = (MediaStoreSignature) o; local
47 if (dateModified != that.dateModified) {
50 if (orientation != that.orientation) {
53 if (mimeType != null ? !mimeType.equals(that.mimeType) : that.mimeType != null) {
StringSignature.java 9 * A unique Signature that wraps a String.
30 StringSignature that = (StringSignature) o; local
32 return signature.equals(that.signature);
  /external/glide/library/src/main/java/com/bumptech/glide/util/
MultiClassKey.java 40 MultiClassKey that = (MultiClassKey) o; local
42 if (!first.equals(that.first)) {
45 if (!second.equals(that.second)) {
  /external/guava/guava/src/com/google/common/base/
FunctionalEquivalence.java 63 FunctionalEquivalence<?, ?> that = (FunctionalEquivalence<?, ?>) obj; local
64 return function.equals(that.function)
65 && resultEquivalence.equals(that.resultEquivalence);
PairwiseEquivalence.java 62 PairwiseEquivalence<?> that = (PairwiseEquivalence<?>) object; local
63 return this.elementEquivalence.equals(that.elementEquivalence);
  /external/guava/guava/src/com/google/common/collect/
AbstractMapEntry.java 48 Entry<?, ?> that = (Entry<?, ?>) object; local
49 return Objects.equal(this.getKey(), that.getKey())
50 && Objects.equal(this.getValue(), that.getValue());
ByFunctionOrdering.java 30 * An ordering that orders elements by applying an order to the result of a
54 ByFunctionOrdering<?, ?> that = (ByFunctionOrdering<?, ?>) object; local
55 return this.function.equals(that.function)
56 && this.ordering.equals(that.ordering);
ComparatorOrdering.java 46 ComparatorOrdering<?> that = (ComparatorOrdering<?>) object; local
47 return this.comparator.equals(that.comparator);
CompoundOrdering.java 24 /** An ordering that tries several comparators in order. */
56 CompoundOrdering<?> that = (CompoundOrdering<?>) object; local
57 return this.comparators.equals(that.comparators);

Completed in 251 milliseconds

1 2 3 4 5 6 7 8 91011>>