HomeSort by relevance Sort by last modified time
    Searched refs:that (Results 176 - 200 of 13096) sorted by null

1 2 3 4 5 6 78 91011>>

  /prebuilts/go/linux-x86/misc/cgo/testgodefs/
main.go 3 // license that can be found in the LICENSE file.
7 // Test that the struct field in anonunion.go was promoted.
11 // Test that P, Q, and R all point to byte.
  /prebuilts/go/linux-x86/src/runtime/
netpoll_stub.go 3 // license that can be found in the LICENSE file.
10 // Returns list of goroutines that become runnable.
12 // Implementation for platforms that do not support
  /prebuilts/go/linux-x86/test/fixedbugs/bug302.dir/
main.go 3 // license that can be found in the LICENSE file.
7 // Check that the export information is correct in p.6.
10 // Check that it's still correct in pp.a (which contains p.6).
  /prebuilts/go/linux-x86/test/fixedbugs/
issue13539.go 5 // license that can be found in the LICENSE file.
7 // Verify that a label named like a package is recognized
8 // as a label rather than a package and that the package
issue9691.go 5 // license that can be found in the LICENSE file.
13 // Test that map index can be used in range
14 // and that slicebytetostringtmp is not used in this context.
  /prebuilts/go/linux-x86/test/fixedbugs/issue14164.dir/
main.go 3 // license that can be found in the LICENSE file.
7 // Verify that we can import package "a" containing an inlineable
8 // function F that declares a local interface with a non-exported
  /prebuilts/go/linux-x86/test/
initloop.go 5 // license that can be found in the LICENSE file.
7 // Verify that initialization loops are caught
8 // and that the errors print correctly.
typecheckloop.go 5 // license that can be found in the LICENSE file.
7 // Verify that constant definition loops are caught during
8 // typechecking and that the errors print correctly.
  /libcore/luni/src/main/java/java/math/
Logical.java 33 /** Just to denote that this class can't be instantiated. */
82 static BigInteger and(BigInteger val, BigInteger that) {
83 if (that.sign == 0 || val.sign == 0) {
86 if (that.equals(BigInteger.MINUS_ONE)){
90 return that;
94 if (that.sign > 0) {
95 return andPositive(val, that);
97 return andDiffSigns(val, that);
100 if (that.sign > 0) {
101 return andDiffSigns(that, val)
    [all...]
  /external/v8/src/compiler/
load-elimination.h 2 // Use of this source code is governed by a BSD-style license that can be
34 // Abstract state to approximate the current state of checks that are
49 AbstractChecks* that = new (zone) AbstractChecks(*this); local
50 that->nodes_[that->next_index_] = node;
51 that->next_index_ = (that->next_index_ + 1) % arraysize(nodes_);
52 return that;
55 bool Equals(AbstractChecks const* that) const;
56 AbstractChecks const* Merge(AbstractChecks const* that, Zone* zone) const
83 AbstractElements* that = new (zone) AbstractElements(*this); local
122 AbstractField* that = new (zone) AbstractField(zone); local
    [all...]
  /external/apache-http/src/org/apache/http/auth/
AuthScope.java 202 public int match(final AuthScope that) {
204 if (LangUtils.equals(this.scheme, that.scheme)) {
207 if (this.scheme != ANY_SCHEME && that.scheme != ANY_SCHEME) {
211 if (LangUtils.equals(this.realm, that.realm)) {
214 if (this.realm != ANY_REALM && that.realm != ANY_REALM) {
218 if (this.port == that.port) {
221 if (this.port != ANY_PORT && that.port != ANY_PORT) {
225 if (LangUtils.equals(this.host, that.host)) {
228 if (this.host != ANY_HOST && that.host != ANY_HOST) {
249 AuthScope that = (AuthScope) o local
    [all...]
  /developers/samples/android/input/autofill/AutofillFramework/Application/src/main/java/com/example/android/autofillframework/multidatasetservice/model/
FilledAutofillField.java 69 FilledAutofillField that = (FilledAutofillField) o;
71 if (mTextValue != null ? !mTextValue.equals(that.mTextValue) : that.mTextValue != null)
73 if (mDateValue != null ? !mDateValue.equals(that.mDateValue) : that.mDateValue != null)
75 return mToggleValue != null ? mToggleValue.equals(that.mToggleValue) : that.mToggleValue == null;
  /external/dagger2/compiler/src/it/functional-tests/src/test/java/test/subcomponent/
SubcomponentMultibindingsTest.java 51 .that(requiresMultibindingsInChild.requiresMultiboundObjects().setOfObjects())
55 .that(requiresMultibindingsInChild.requiresMultiboundObjects().mapOfObjects())
60 .that(requiresMultibindingsInChild.requiresMultiboundStrings().setOfStrings())
64 .that(requiresMultibindingsInChild.requiresMultiboundStrings().mapOfStrings())
74 .that(requiresMultibindingsInChild.setOfRequiresMultiboundObjects())
81 .that(onlyElementInMultiboundRequiresMultiboundObjects.setOfObjects())
85 .that(onlyElementInMultiboundRequiresMultiboundObjects.mapOfObjects())
  /external/skia/include/ports/
SkFontMgr_indirect.h 4 * Use of this source code is governed by a BSD-style license that can be
72 DataEntry(DataEntry&& that)
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,
  /packages/apps/Contacts/src/com/android/contacts/model/dataitem/
ImDataItem.java 91 final ImDataItem that = (ImDataItem) t; local
93 if (!getData().equals(that.getData())) {
95 } else if (!isProtocolValid() || !that.isProtocolValid()) {
97 // protocol, check to see if the other has a valid that is not custom
100 } else if (that.isProtocolValid()) {
101 return that.getProtocol() == Im.PROTOCOL_CUSTOM;
104 } else if (getProtocol() != that.getProtocol()) {
107 !TextUtils.equals(getCustomProtocol(), that.getCustomProtocol())) {
  /packages/apps/Dialer/java/com/android/contacts/common/model/dataitem/
ImDataItem.java 87 final ImDataItem that = (ImDataItem) t; local
89 if (!getData().equals(that.getData())) {
91 } else if (!isProtocolValid() || !that.isProtocolValid()) {
93 // protocol, check to see if the other has a valid that is not custom
96 } else if (that.isProtocolValid()) {
97 return that.getProtocol() == Im.PROTOCOL_CUSTOM;
100 } else if (getProtocol() != that.getProtocol()) {
103 && !TextUtils.equals(getCustomProtocol(), that.getCustomProtocol())) {
  /external/pdfium/fpdfsdk/pdfwindow/
PWL_ScrollBar.h 2 // Use of this source code is governed by a BSD-style license that can be
24 bool operator==(const PWL_SCROLL_INFO& that) const {
25 return fContentMin == that.fContentMin && fContentMax == that.fContentMax &&
26 fPlateWidth == that.fPlateWidth && fBigStep == that.fBigStep &&
27 fSmallStep == that.fSmallStep;
29 bool operator!=(const PWL_SCROLL_INFO& that) const {
30 return !(*this == that);
72 bool operator==(const PWL_FLOATRANGE& that) const
    [all...]
  /external/dagger2/compiler/src/test/java/dagger/internal/codegen/
ComponentBuilderTest.java 100 assertAbout(javaSources()).that(ImmutableList.of(injectableTypeFile, componentFile))
191 .that(ImmutableList.of(moduleFile, componentFile))
304 .that(ImmutableList.of(module1, module2, componentFile))
331 assertAbout(javaSource()).that(componentFile)
355 assertAbout(javaSource()).that(componentFile)
371 assertAbout(javaSource()).that(builder)
392 assertAbout(javaSource()).that(componentFile)
413 assertAbout(javaSource()).that(componentFile)
434 assertAbout(javaSource()).that(componentFile)
455 assertAbout(javaSource()).that(componentFile
    [all...]
ProducerModuleFactoryGeneratorTest.java 62 assertAbout(javaSource()).that(moduleFile)
79 assertAbout(javaSource()).that(moduleFile)
98 assertAbout(javaSource()).that(moduleFile)
115 assertAbout(javaSource()).that(moduleFile)
133 assertAbout(javaSource()).that(moduleFile)
151 assertAbout(javaSource()).that(moduleFile)
170 assertAbout(javaSource()).that(moduleFile)
193 assertAbout(javaSource()).that(moduleFile)
216 assertAbout(javaSource()).that(moduleFile)
239 assertAbout(javaSource()).that(moduleFile
    [all...]
ProductionComponentProcessorTest.java 37 assertAbout(javaSource()).that(componentFile)
53 assertAbout(javaSource()).that(componentFile)
67 assertAbout(javaSource()).that(componentFile)
81 assertAbout(javaSource()).that(componentFile)
256 assertAbout(javaSource()).that(component)
  /external/icu/icu4c/source/i18n/
format.cpp 36 * Unless we export _something_ in that case...
87 Format::Format(const Format &that)
88 : UObject(that)
90 *this = that;
97 Format::operator=(const Format& that)
99 if (this != &that) {
100 uprv_strcpy(validLocale, that.validLocale);
101 uprv_strcpy(actualLocale, that.actualLocale);
159 Format::operator==(const Format& that) const
162 return typeid(*this) == typeid(that);
    [all...]
  /external/webrtc/webrtc/base/
win32window.cc 5 * that can be found in the LICENSE file in the root of the source
92 Win32Window* that = reinterpret_cast<Win32Window*>( local
94 if (!that && (WM_CREATE == uMsg)) {
96 that = static_cast<Win32Window*>(cs->lpCreateParams);
97 that->wnd_ = hwnd;
98 ::SetWindowLongPtr(hwnd, GWLP_USERDATA, reinterpret_cast<LONG_PTR>(that));
100 if (that) {
102 bool handled = that->OnMessage(uMsg, wParam, lParam, result);
111 that->wnd_ = NULL;
112 that->OnNcDestroy()
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/anqp/
HSWanMetricsElement.java 150 HSWanMetricsElement that = (HSWanMetricsElement) thatObject; local
151 return mStatus == that.mStatus
152 && mSymmetric == that.mSymmetric
153 && mCapped == that.mCapped
154 && mDownlinkSpeed == that.mDownlinkSpeed
155 && mUplinkSpeed == that.mUplinkSpeed
156 && mDownlinkLoad == that.mDownlinkLoad
157 && mUplinkLoad == that.mUplinkLoad
158 && mLMD == that.mLMD;
  /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) {
  /external/guice/extensions/persist/test/com/google/inject/persist/jpa/
JpaTestEntity.java 55 JpaTestEntity that = (JpaTestEntity) o; local
57 if (id != null ? !id.equals(that.id) : that.id != null) {
60 if (text != null ? !text.equals(that.text) : that.text != null) {

Completed in 1040 milliseconds

1 2 3 4 5 6 78 91011>>