Searched refs:that (Results 151 - 175 of 1027) sorted by relevance

1234567891011>>

/external/openssl/
H A DAndroid.mk9 # that import_openssl.sh import won't remove them.
/external/qemu/
H A DAndroid.mk1 # the following test is made to detect that we were called
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.osgi.util_3.2.100.v20100503.jar ... obj org.osgi.util.measurement.Measurement that int result public int hashCode () long bits int h public ...
/external/guava/guava-tests/lib/
H A Dlibtruth-gwt.jar ... .junit.contrib.truth.subjects.Subject that (java.lang.Object) Object target } org/junit/contrib ...
/external/webkit/Source/WebCore/platform/efl/
H A DScrollbarEfl.cpp13 * This library is distributed in the hope that it will be useful,
69 ScrollbarEfl* that = static_cast<ScrollbarEfl*>(data); local
86 value = messageFloat->val * (that->totalSize() - that->visibleSize());
87 that->scrollableArea()->scrollToOffsetWithoutAnimation(that->orientation(), value);
/external/oprofile/events/i386/westmere/
H A Devents10 event:0x03 counters:0,1,2,3 um:x02 minimum:200000 name:LOAD_BLOCK : Loads that partially overlap an earlier store
17 event:0x0c counters:0,1,2,3 um:x01 minimum:200000 name:MEM_STORE_RETIRED : Retired stores that miss the DTLB (Precise Event)
19 event:0x0f counters:0,1,2,3 um:mem_uncore_retired minimum:40000 name:MEM_UNCORE_RETIRED : Load instructions retired that HIT modified data in sibling core (Precise Event)
25 event:0x18 counters:0,1,2,3 um:x01 minimum:2000000 name:INST_DECODED : Instructions that must be decoded by decoder 0
28 event:0x20 counters:0,1,2,3 um:x01 minimum:2000000 name:LSD_OVERFLOW : Loops that can't stream from the instruction queue
69 event:0xc8 counters:0,1,2,3 um:x20 minimum:200000 name:ITLB_MISS_RETIRED : Retired instructions that missed the ITLB (Precise Event)
70 event:0xcb counters:0,1,2,3 um:mem_load_retired minimum:200000 name:MEM_LOAD_RETIRED : Retired loads that miss the DTLB (Precise Event)
/external/chromium-trace/trace-viewer/src/
H A Dtimeline_view.js2 // Use of this source code is governed by a BSD-style license that can be
119 var that = this;
122 textEl.textContent = that.model.importErrors.join('\n');
127 if (that.model &&
128 that.model.importErrors.length)
134 that.addEventListener('modelChange', updateVisibility);
140 // Set by the embedder of the help button that we create in this function.
151 var that = this;
154 dlg.model = that.model;
155 dlg.settings = that
[all...]
/external/icu4c/i18n/
H A Dchoicfmt.cpp111 ChoiceFormat::ChoiceFormat(const ChoiceFormat& that) argument
112 : NumberFormat(that),
113 constructorErrorCode(that.constructorErrorCode),
114 msgPattern(that.msgPattern)
119 // Private constructor that creates a
134 ChoiceFormat::operator==(const Format& that) const
136 if (this == &that) return TRUE;
137 if (!NumberFormat::operator==(that)) return FALSE;
138 ChoiceFormat& thatAlias = (ChoiceFormat&)that;
146 ChoiceFormat::operator=(const ChoiceFormat& that) argument
[all...]
/external/llvm/lib/Support/
H A DSmallPtrSet.cpp61 // If fewer of 1/8 of the array is empty (meaning that many are filled with
123 // prefer to return it than something that would require more probing.
175 const SmallPtrSetImpl& that) {
179 if (that.isSmall()) {
183 CurArray = (const void**)malloc(sizeof(void*) * (that.CurArraySize+1));
188 CurArraySize = that.CurArraySize;
191 memcpy(CurArray, that.CurArray, sizeof(void*)*(CurArraySize+1));
193 NumElements = that.NumElements;
194 NumTombstones = that.NumTombstones;
197 /// CopyFrom - implement operator= from a smallptrset that ha
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/texture/
H A DImage.java6 * modification, are permitted provided that the following conditions are
218 * unsigned floating-point red, green and blue that uses 32 bits.
489 * <code>setData</code> sets the data that makes up the image. This data
493 * the data that contains the image information.
501 * <code>setData</code> sets the data that makes up the image. This data
505 * the data that contains the image information.
536 * on data other than ByteBuffers, in that case, this method can be used.
733 Image that = (Image) other;
734 if (this.getFormat() != that.getFormat())
736 if (this.getWidth() != that
[all...]
H A DTexture3D.java6 * modification, are permitted provided that the following conditions are
194 Texture3D that = (Texture3D) other;
195 if (this.getWrap(WrapAxis.S) != that.getWrap(WrapAxis.S)) {
198 if (this.getWrap(WrapAxis.T) != that.getWrap(WrapAxis.T)) {
201 if (this.getWrap(WrapAxis.R) != that.getWrap(WrapAxis.R)) {
H A DTextureCubeMap.java6 * modification, are permitted provided that the following conditions are
170 TextureCubeMap that = (TextureCubeMap) other;
171 if (this.getWrap(WrapAxis.S) != that.getWrap(WrapAxis.S))
173 if (this.getWrap(WrapAxis.T) != that.getWrap(WrapAxis.T))
175 if (this.getWrap(WrapAxis.R) != that.getWrap(WrapAxis.R))
/external/apache-http/src/org/apache/http/auth/
H A DNTCredentials.java160 NTCredentials that = (NTCredentials) o;
161 if (LangUtils.equals(this.principal, that.principal)
162 && LangUtils.equals(this.workstation, that.workstation)) {
/external/chromium/android/autofill/
H A Durl_fetcher_proxy.h5 * modification, are permitted provided that the following conditions
42 // TODO: Investigate alternatives to using RunnableMethod that don't
53 // A class that implements the same API as URLFetcher but instead of
54 // assuming that the calling thread is a chrome thread with a message
64 // Note that we overide the minimum number of methods to allow this
104 // an alternative to RunnableMethod that doesn't expect a ref counted object?
143 URLFetcherProxy* that = static_cast<URLFetcherProxy*>(context); local
144 if (pending_callbacks_[that]) {
145 that->DoCompleteImpl();
/external/chromium/base/
H A Dversion.cc2 // Use of this source code is governed by a BSD-style license that can be
38 bool Version::Equals(const Version& that) const {
40 DCHECK(that.is_valid_);
41 return CompareTo(that) == 0;
/external/guava/guava/src/com/google/common/collect/
H A DSingletonImmutableList.java125 List<?> that = (List<?>) object;
126 return that.size() == 1 && element.equals(that.get(0));
133 // in a way that modifies its hash code.
/external/libvpx/examples/includes/geshi/geshi/
H A Dhtml4strict.php28 * * Check that only HTML4 strict attributes are highlighted
29 * * Eliminate empty tags that aren't allowed in HTML4 strict
41 * GeSHi is distributed in the hope that it will be useful,
/external/chromium/chrome/browser/resources/options/chromeos/
H A Daccounts_user_name_edit.js2 // Use of this source code is governed by a BSD-style license that can be
52 * Note that the email parsing is based on RFC 5322 and does not support
58 * - Dot: . (Note that we did not cover the cases that dot should not
/external/guava/guava/src/com/google/common/net/
H A DHostAndPort.java55 * <p>Note that this is not an exhaustive list, because these methods are only
83 * Returns the portion of this {@code HostAndPort} instance that should
141 * Note that the host-only formats will leave the port field undefined. You
210 * <p>URI formatting requires that IPv6 literals be surrounded by brackets,
213 * that don't contain these brackets.
215 * <p>Note that this parser identifies IPv6 literals solely based on the
233 HostAndPort that = (HostAndPort) other;
234 return Objects.equal(this.host, that.host)
235 && this.port == that.port
236 && this.hasBracketlessColons == that
[all...]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DRegularContiguousSet.java28 * An implementation of {@link ContiguousSet} that contains one or more elements.
155 RegularContiguousSet<?> that = (RegularContiguousSet<?>) object;
156 if (this.domain.equals(that.domain)) {
157 return this.first().equals(that.first())
158 && this.last().equals(that.last());
/external/guava/guava-tests/test/com/google/common/collect/
H A DArrayListMultimapTest.java41 * Confirm that get() returns a List implementing RandomAccess.
52 * Confirm that removeAll() returns a List implementing RandomAccess.
63 * Confirm that replaceValues() returns a List implementing RandomAccess.
83 ASSERT.that(multimap.get("foo")).hasContentsInOrder(1, 2, 3, 4, 5);
85 ASSERT.that(sublist).hasContentsInOrder(1, 2, 3, 4, 5);
151 ASSERT.that(multimap.get("foo")).hasContentsInOrder(1, 2);
152 ASSERT.that(multimap.get("bar")).hasContentsInOrder(3);
H A DLinkedHashMultisetTest.java109 ASSERT.that(ms.elementSet()).hasContentsInOrder("a", "b", "c");
111 ASSERT.that(ms.elementSet()).hasContentsInOrder("a", "b", "c");
113 ASSERT.that(ms.elementSet()).hasContentsInOrder("a", "b", "c");
116 ASSERT.that(ms.elementSet()).hasContentsInOrder("a", "c", "b");
/external/llvm/test/MC/MachO/ARM/
H A Dllvm-objdump-macho.s19 # We are checking that second function is fully disassembled.
H A Dthumb-bl-jbits.s15 # We are checking that the branch and link instruction which is:
/external/mdnsresponder/mDNSShared/
H A Ddnsextd.conf10 // dynamic zone that will be accepting Wide-Area Bonjour DNS updates.
23 // network, you might allow anyone to perform updates. To do that, you just

Completed in 1584 milliseconds

1234567891011>>