Home
last modified time | relevance | path

Searched refs:otherString (Results 1 – 25 of 198) sorted by relevance

12345678

/dports/devel/scalatest/scalatest-1.6.1/src/test/scala/org/scalatest/matchers/
H A DShouldSameInstanceAsSpec.scala26 val otherString = new String("Hi") constant
35 otherString should not { be theSameInstanceAs (string) }
36 otherString should not be theSameInstanceAs (string)
49 obj should (be theSameInstanceAs (otherString) or be theSameInstanceAs (string))
58 … obj should (not (be theSameInstanceAs (otherString)) and not (be theSameInstanceAs (otherString)))
59 … obj should ((not be theSameInstanceAs (otherString)) and (not be theSameInstanceAs (otherString)))
60 obj should (not be theSameInstanceAs (otherString) and not be theSameInstanceAs (otherString))
76 otherString should be theSameInstanceAs (string)
110 obj should ((be theSameInstanceAs (otherString)) or (be theSameInstanceAs (otherString)))
114 obj should (be theSameInstanceAs (otherString) or (be theSameInstanceAs (otherString)))
[all …]
/dports/science/dakota/dakota-6.13.0-release-public.src-UI/packages/external/acro/packages/utilib/src/utilib/
H A DCharString.h120 inline int compare(const CharString& otherString) const in compare() argument
121 { return compare(otherString.Data); } in compare()
128 inline bool operator==(const CharString& otherString) const
129 { return compare(otherString.Data) == 0; }
137 { return compare(otherString.Data) != 0; }
153 inline bool operator<(const CharString& otherString) const
154 { return compare(otherString.Data) < 0; }
162 inline bool operator>(const CharString& otherString) const
163 { return compare(otherString.Data) > 0; }
172 { return compare(otherString.Data) <= 0; }
[all …]
/dports/security/zaproxy/zaproxy-2.11.1/zap/src/main/java/org/zaproxy/zap/model/
H A DDefaultNameValuePair.java125 private static boolean equalStrings(String string, String otherString) { in equalStrings() argument
127 if (otherString != null) { in equalStrings()
130 } else if (!string.equals(otherString)) { in equalStrings()
155 private static int compareStrings(String string, String otherString) { in compareStrings() argument
157 if (otherString != null) { in compareStrings()
161 } else if (otherString == null) { in compareStrings()
165 return string.compareTo(otherString); in compareStrings()
/dports/www/dillo2/dillo-3.0.5/lout/
H A Dobject.cc203 ConstString *otherString = (ConstString*)other; in equals() local
206 (str == NULL && otherString->str == NULL) || in equals()
207 (str != NULL && otherString->str != NULL && in equals()
208 strcmp(str, otherString->str) == 0); in equals()
219 String *otherString = (String*)other; in compareTo() local
220 if (str && otherString->str) in compareTo()
221 return strcmp(str, otherString->str); in compareTo()
224 else if (otherString->str) in compareTo()
/dports/audio/surge-synthesizer-lv2/surge-release_1.9.0/vstgui.surge/vstgui/lib/
H A Dcstring.h219 bool operator== (const UTF8StringPtr otherString) const;
220 bool operator!= (const UTF8StringPtr otherString) const;
221 bool operator== (UTF8StringView otherString) const;
457 inline bool UTF8StringView::operator== (const UTF8StringPtr otherString) const
459 if (str == otherString) return true;
460 return (str && otherString) ? (std::strcmp (str, otherString) == 0) : false;
464 inline bool UTF8StringView::operator!= (const UTF8StringPtr otherString) const
466 return !(*this == otherString);
470 inline bool UTF8StringView::operator== (UTF8StringView otherString) const
472 if (byteCount && otherString.byteCount && *byteCount != *otherString.byteCount)
[all …]
/dports/audio/vst3sdk/vst3sdk-3.7.1_build_50-1-g8199057/vstgui4/vstgui/lib/
H A Dcstring.h222 bool operator== (const UTF8StringPtr otherString) const;
223 bool operator!= (const UTF8StringPtr otherString) const;
224 bool operator== (UTF8StringView otherString) const;
460 inline bool UTF8StringView::operator== (const UTF8StringPtr otherString) const
462 if (str == otherString) return true;
463 return (str && otherString) ? (std::strcmp (str, otherString) == 0) : false;
467 inline bool UTF8StringView::operator!= (const UTF8StringPtr otherString) const
469 return !(*this == otherString);
473 inline bool UTF8StringView::operator== (UTF8StringView otherString) const
475 if (byteCount && otherString.byteCount && *byteCount != *otherString.byteCount)
[all …]
/dports/sysutils/istio/istio-1.6.7/vendor/github.com/google/cel-go/common/types/
H A Dstring.go59 otherString, ok := other.(String)
63 return s + otherString
68 otherString, ok := other.(String)
72 return Int(strings.Compare(s.Value().(string), otherString.Value().(string)))
148 otherString, ok := other.(String)
152 return Bool(s == otherString)
/dports/net/gscloud/gscloud-0.11.0/vendor/github.com/google/go-cmp/cmp/
H A Dexample_test.go216 type otherString string type
218 func (x otherString) Equal(y otherString) bool { argument
229 type myString otherString
233 trans := cmp.Transformer("", func(in otherString) myString {
237 x := []otherString{"foo", "bar", "baz"}
238 y := []otherString{"fOO", "bAr", "Baz"} // Same as before, but with different case
/dports/net/grpcui/grpcui-1.1.0/vendor/github.com/google/go-cmp/cmp/
H A Dexample_test.go216 type otherString string type
218 func (x otherString) Equal(y otherString) bool { argument
229 type myString otherString
233 trans := cmp.Transformer("", func(in otherString) myString {
237 x := []otherString{"foo", "bar", "baz"}
238 y := []otherString{"fOO", "bAr", "Baz"} // Same as before, but with different case
/dports/devel/gh/cli-2.4.0/vendor/github.com/google/go-cmp/cmp/
H A Dexample_test.go216 type otherString string type
218 func (x otherString) Equal(y otherString) bool { argument
229 type myString otherString
233 trans := cmp.Transformer("", func(in otherString) myString {
237 x := []otherString{"foo", "bar", "baz"}
238 y := []otherString{"fOO", "bAr", "Baz"} // Same as before, but with different case
/dports/net/evans/evans-0.9.1/vendor/github.com/google/go-cmp/cmp/
H A Dexample_test.go216 type otherString string type
218 func (x otherString) Equal(y otherString) bool { argument
229 type myString otherString
233 trans := cmp.Transformer("", func(in otherString) myString {
237 x := []otherString{"foo", "bar", "baz"}
238 y := []otherString{"fOO", "bAr", "Baz"} // Same as before, but with different case
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/workhorse/vendor/github.com/google/go-cmp/cmp/
H A Dexample_test.go216 type otherString string type
218 func (x otherString) Equal(y otherString) bool { argument
229 type myString otherString
233 trans := cmp.Transformer("", func(in otherString) myString {
237 x := []otherString{"foo", "bar", "baz"}
238 y := []otherString{"fOO", "bAr", "Baz"} // Same as before, but with different case
/dports/security/aws-iam-authenticator/aws-iam-authenticator-0.5.2/vendor/github.com/google/go-cmp/go-cmp-0.3.0/cmp/
H A Dexample_test.go216 type otherString string type
218 func (x otherString) Equal(y otherString) bool { argument
229 type myString otherString
233 trans := cmp.Transformer("", func(in otherString) myString {
237 x := []otherString{"foo", "bar", "baz"}
238 y := []otherString{"fOO", "bAr", "Baz"} // Same as before, but with different case
/dports/net/cloudquery/cloudquery-0.16.0/vendor/github.com/google/go-cmp/cmp/
H A Dexample_test.go216 type otherString string type
218 func (x otherString) Equal(y otherString) bool { argument
229 type myString otherString
233 trans := cmp.Transformer("", func(in otherString) myString {
237 x := []otherString{"foo", "bar", "baz"}
238 y := []otherString{"fOO", "bAr", "Baz"} // Same as before, but with different case
/dports/sysutils/gomplate/gomplate-3.9.0/vendor/github.com/google/go-cmp/cmp/
H A Dexample_test.go216 type otherString string type
218 func (x otherString) Equal(y otherString) bool { argument
229 type myString otherString
233 trans := cmp.Transformer("", func(in otherString) myString {
237 x := []otherString{"foo", "bar", "baz"}
238 y := []otherString{"fOO", "bAr", "Baz"} // Same as before, but with different case
/dports/security/xray-core/Xray-core-1.5.0/vendor/github.com/google/go-cmp/cmp/
H A Dexample_test.go216 type otherString string type
218 func (x otherString) Equal(y otherString) bool { argument
229 type myString otherString
233 trans := cmp.Transformer("", func(in otherString) myString {
237 x := []otherString{"foo", "bar", "baz"}
238 y := []otherString{"fOO", "bAr", "Baz"} // Same as before, but with different case
/dports/security/gopass/gopass-1.13.0/vendor/github.com/google/go-cmp/cmp/
H A Dexample_test.go216 type otherString string type
218 func (x otherString) Equal(y otherString) bool { argument
229 type myString otherString
233 trans := cmp.Transformer("", func(in otherString) myString {
237 x := []otherString{"foo", "bar", "baz"}
238 y := []otherString{"fOO", "bAr", "Baz"} // Same as before, but with different case
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/google/go-cmp/cmp/
H A Dexample_test.go216 type otherString string type
218 func (x otherString) Equal(y otherString) bool { argument
229 type myString otherString
233 trans := cmp.Transformer("", func(in otherString) myString {
237 x := []otherString{"foo", "bar", "baz"}
238 y := []otherString{"fOO", "bAr", "Baz"} // Same as before, but with different case
/dports/devel/lazygit/lazygit-0.31.4/vendor/github.com/google/go-cmp/cmp/
H A Dexample_test.go216 type otherString string type
218 func (x otherString) Equal(y otherString) bool { argument
229 type myString otherString
233 trans := cmp.Transformer("", func(in otherString) myString {
237 x := []otherString{"foo", "bar", "baz"}
238 y := []otherString{"fOO", "bAr", "Baz"} // Same as before, but with different case
/dports/net-mgmt/thanos/thanos-0.11.0/vendor/github.com/google/go-cmp/cmp/
H A Dexample_test.go216 type otherString string type
218 func (x otherString) Equal(y otherString) bool { argument
229 type myString otherString
233 trans := cmp.Transformer("", func(in otherString) myString {
237 x := []otherString{"foo", "bar", "baz"}
238 y := []otherString{"fOO", "bAr", "Baz"} // Same as before, but with different case
/dports/net-mgmt/prometheus2/prometheus-2.30.3/vendor/github.com/google/go-cmp/cmp/
H A Dexample_test.go216 type otherString string type
218 func (x otherString) Equal(y otherString) bool { argument
229 type myString otherString
233 trans := cmp.Transformer("", func(in otherString) myString {
237 x := []otherString{"foo", "bar", "baz"}
238 y := []otherString{"fOO", "bAr", "Baz"} // Same as before, but with different case
/dports/www/gohugo/hugo-0.91.2/vendor/github.com/google/go-cmp/cmp/
H A Dexample_test.go216 type otherString string type
218 func (x otherString) Equal(y otherString) bool { argument
229 type myString otherString
233 trans := cmp.Transformer("", func(in otherString) myString {
237 x := []otherString{"foo", "bar", "baz"}
238 y := []otherString{"fOO", "bAr", "Baz"} // Same as before, but with different case
/dports/sysutils/helmfile/helmfile-0.138.7/vendor/github.com/google/go-cmp/cmp/
H A Dexample_test.go216 type otherString string type
218 func (x otherString) Equal(y otherString) bool { argument
229 type myString otherString
233 trans := cmp.Transformer("", func(in otherString) myString {
237 x := []otherString{"foo", "bar", "baz"}
238 y := []otherString{"fOO", "bAr", "Baz"} // Same as before, but with different case
/dports/games/neo-cowsay/Neo-cowsay-2.0.1/vendor/github.com/google/go-cmp/cmp/
H A Dexample_test.go216 type otherString string type
218 func (x otherString) Equal(y otherString) bool { argument
229 type myString otherString
233 trans := cmp.Transformer("", func(in otherString) myString {
237 x := []otherString{"foo", "bar", "baz"}
238 y := []otherString{"fOO", "bAr", "Baz"} // Same as before, but with different case
/dports/www/pomerium/pomerium-0.8.3/vendor/github.com/google/go-cmp/cmp/
H A Dexample_test.go216 type otherString string type
218 func (x otherString) Equal(y otherString) bool { argument
229 type myString otherString
233 trans := cmp.Transformer("", func(in otherString) myString {
237 x := []otherString{"foo", "bar", "baz"}
238 y := []otherString{"fOO", "bAr", "Baz"} // Same as before, but with different case

12345678