Home
last modified time | relevance | path

Searched refs:foundValue (Results 1 – 25 of 129) sorted by relevance

123456

/dports/www/typo3-11/typo3_src-11.5.7/typo3/sysext/core/Classes/DataHandling/SoftReference/
H A DTypolinkTagSoftReferenceParser.php42 foreach ($linkTags as $key => $foundValue) {
43 if ($key % 2 && preg_match('/href="([^"]+)"/', $foundValue, $matches)) {
48 $elements[$key]['matchString'] = $foundValue;
49 … $linkTags[$key] = str_replace($matches[1], '{softref:' . $token . '}', $foundValue);
59 $elements[$key]['matchString'] = $foundValue;
85 $linkTags[$key] = str_replace($matches[1], $content, $foundValue);
88 $elements[$key]['matchString'] = $foundValue;
89 … $linkTags[$key] = str_replace($matches[1], '{softref:' . $token . '}', $foundValue);
97 $elements[$key]['matchString'] = $foundValue;
98 … $linkTags[$key] = str_replace($matches[1], '{softref:' . $token . '}', $foundValue);
[all …]
/dports/math/vtk9/VTK-9.1.0/ThirdParty/vtkm/vtkvtkm/vtk-m/vtkm/testing/
H A DUnitTestAtomic.cxx104 T foundValue = portal.Get(arrayIndex); in TestStore() local
144 T foundValue = portal.Get(arrayIndex); in TestAdd() local
145 VTKM_TEST_ASSERT(test_equal(foundValue, expectedValue), foundValue, " != ", expectedValue); in TestAdd()
175 T foundValue = portal.Get(arrayIndex); in TestAnd() local
176 VTKM_TEST_ASSERT(test_equal(foundValue, 0), foundValue, " != 0"); in TestAnd()
207 T foundValue = portal.Get(arrayIndex); in TestOr() local
208 VTKM_TEST_ASSERT(test_equal(foundValue, 0), foundValue, " != ", expectedValue); in TestOr()
239 T foundValue = portal.Get(arrayIndex); in TestXor() local
240 VTKM_TEST_ASSERT(test_equal(foundValue, 0), foundValue, " != ", expectedValue); in TestXor()
275 VTKM_TEST_ASSERT(test_equal(foundValue, 0), foundValue, " != ", expectedValue); in TestNot()
[all …]
/dports/lang/intel-compute-runtime/compute-runtime-21.52.22081/opencl/source/helpers/
H A Dqueue_helpers.h161 bool *foundValue = nullptr) {
165 if (foundValue) {
166 *foundValue = true;
174 if (foundValue) {
175 *foundValue = false;
/dports/sysutils/terraform/terraform-1.0.11/vendor/github.com/masterzen/winrm/
H A Drequest_test.go115 var foundValue string
117 foundValue = i.ResValue()
118 if foundValue == expected {
123 if foundValue != expected {
124 c.Errorf("Should have found '%s', but found '%s' instead", expected, foundValue)
/dports/java/icedtea-web/icedtea-web-1.6.2/netx/net/sourceforge/jnlp/browser/
H A DFirefoxPreferencesParser.java110 boolean foundValue = false; in parse()
130 foundValue = true; in parse()
132 if (foundKey && foundValue) { in parse()
/dports/games/doomsday/doomsday-2.3.1/doomsday/sdk/libcore/src/
H A Dc_wrapper.cpp284 de::NativePath foundValue; in UnixInfo_GetConfigValue() local
285 if (info.path(key, foundValue)) in UnixInfo_GetConfigValue()
287 return qstrdup(foundValue.toString().toUtf8().constData()); in UnixInfo_GetConfigValue()
292 de::String foundValue; in UnixInfo_GetConfigValue() local
293 if (info.defaults(key, foundValue)) in UnixInfo_GetConfigValue()
295 return qstrdup(foundValue.toUtf8().constData()); in UnixInfo_GetConfigValue()
/dports/devel/cpprestsdk/cpprestsdk-2.10.16/Release/tests/functional/http/client/
H A Dheader_tests.cpp310 utility::string_t foundValue; in SUITE() local
311 VERIFY_IS_TRUE(headers.match(header_names::cache_control, foundValue)); in SUITE()
312 VERIFY_ARE_EQUAL(value, foundValue); in SUITE()
322 size_t foundValue; in SUITE() local
323 VERIFY_IS_TRUE(headers.match(header_names::content_length, foundValue)); in SUITE()
324 VERIFY_ARE_EQUAL(value, foundValue); in SUITE()
334 utility::string_t foundValue; in SUITE() local
335 VERIFY_IS_TRUE(headers.match(header_names::date, foundValue)); in SUITE()
336 VERIFY_ARE_EQUAL(value.to_string(), foundValue); in SUITE()
/dports/devel/aws-sdk-cpp/aws-sdk-cpp-1.9.129/aws-cpp-sdk-core/source/http/standard/
H A DStandardHttpResponse.cpp37 …Aws::Map<Aws::String, Aws::String>::const_iterator foundValue = headerMap.find(StringUtils::ToLowe… in GetHeader() local
38 return foundValue->second; in GetHeader()
/dports/math/vtk9/VTK-9.1.0/ThirdParty/vtkm/vtkvtkm/vtk-m/vtkm/worklet/testing/
H A DUnitTestMaskIndices.cxx72 vtkm::Id foundValue = outPointId.ReadPortal().Get(i); in RunTest() local
73 VTKM_TEST_ASSERT(foundValue == -1, in RunTest()
77 foundValue); in RunTest()
/dports/devel/lazygit/lazygit-0.31.4/vendor/github.com/emirpasic/gods/gods-1.12.0/examples/enumerablewithindex/
H A Denumerablewithindex.go31 foundIndex, foundValue := set.Find(func(index int, value interface{}) bool {
35 …fmt.Println("Number divisible by 2 and 3 found is", foundValue, "at index", foundIndex) // value: …
/dports/sysutils/chezmoi/chezmoi-2.9.3/vendor/github.com/emirpasic/gods/examples/enumerablewithindex/
H A Denumerablewithindex.go31 foundIndex, foundValue := set.Find(func(index int, value interface{}) bool {
35 …fmt.Println("Number divisible by 2 and 3 found is", foundValue, "at index", foundIndex) // value: …
/dports/net/cloudquery/cloudquery-0.16.0/vendor/github.com/emirpasic/gods/examples/enumerablewithindex/
H A Denumerablewithindex.go31 foundIndex, foundValue := set.Find(func(index int, value interface{}) bool {
35 …fmt.Println("Number divisible by 2 and 3 found is", foundValue, "at index", foundIndex) // value: …
/dports/sysutils/gomplate/gomplate-3.9.0/vendor/github.com/emirpasic/gods/examples/enumerablewithindex/
H A Denumerablewithindex.go31 foundIndex, foundValue := set.Find(func(index int, value interface{}) bool {
35 …fmt.Println("Number divisible by 2 and 3 found is", foundValue, "at index", foundIndex) // value: …
/dports/devel/gitty/gitty-0.3.0/vendor/github.com/emirpasic/gods/examples/enumerablewithindex/
H A Denumerablewithindex.go31 foundIndex, foundValue := set.Find(func(index int, value interface{}) bool {
35 …fmt.Println("Number divisible by 2 and 3 found is", foundValue, "at index", foundIndex) // value: …
/dports/devel/lazygit/lazygit-0.31.4/vendor/github.com/emirpasic/gods/gods-1.12.0/examples/enumerablewithkey/
H A Denumerablewithkey.go37 foundKey, foundValue := m.Find(func(key interface{}, value interface{}) bool {
41 …fmt.Println("Element with value divisible by 2 and 3 found is", foundValue, "with key", foundKey) …
/dports/sysutils/chezmoi/chezmoi-2.9.3/vendor/github.com/emirpasic/gods/examples/enumerablewithkey/
H A Denumerablewithkey.go37 foundKey, foundValue := m.Find(func(key interface{}, value interface{}) bool {
41 …fmt.Println("Element with value divisible by 2 and 3 found is", foundValue, "with key", foundKey) …
/dports/net/cloudquery/cloudquery-0.16.0/vendor/github.com/emirpasic/gods/examples/enumerablewithkey/
H A Denumerablewithkey.go37 foundKey, foundValue := m.Find(func(key interface{}, value interface{}) bool {
41 …fmt.Println("Element with value divisible by 2 and 3 found is", foundValue, "with key", foundKey) …
/dports/sysutils/gomplate/gomplate-3.9.0/vendor/github.com/emirpasic/gods/examples/enumerablewithkey/
H A Denumerablewithkey.go37 foundKey, foundValue := m.Find(func(key interface{}, value interface{}) bool {
41 …fmt.Println("Element with value divisible by 2 and 3 found is", foundValue, "with key", foundKey) …
/dports/devel/gitty/gitty-0.3.0/vendor/github.com/emirpasic/gods/examples/enumerablewithkey/
H A Denumerablewithkey.go37 foundKey, foundValue := m.Find(func(key interface{}, value interface{}) bool {
41 …fmt.Println("Element with value divisible by 2 and 3 found is", foundValue, "with key", foundKey) …
/dports/devel/libosinfo/libosinfo-1.9.0/osinfo/
H A Dosinfo_filter.c118 gpointer origKey, foundValue; in osinfo_filter_add_constraint() local
127 …= g_hash_table_lookup_extended(filter->priv->propertyConstraints, propName, &origKey, &foundValue); in osinfo_filter_add_constraint()
131 values = foundValue; in osinfo_filter_add_constraint()
/dports/devel/lazygit/lazygit-0.31.4/vendor/github.com/emirpasic/gods/gods-1.12.0/sets/linkedhashset/
H A Dlinkedhashset_test.go175 foundIndex, foundValue := set.Find(func(index int, value interface{}) bool {
178 if foundValue != "c" || foundIndex != 0 {
179 t.Errorf("Got %v at %v expected %v at %v", foundValue, foundIndex, "c", 0)
181 foundIndex, foundValue = set.Find(func(index int, value interface{}) bool {
184 if foundValue != nil || foundIndex != -1 {
185 t.Errorf("Got %v at %v expected %v at %v", foundValue, foundIndex, nil, nil)
/dports/sysutils/chezmoi/chezmoi-2.9.3/vendor/github.com/emirpasic/gods/sets/linkedhashset/
H A Dlinkedhashset_test.go175 foundIndex, foundValue := set.Find(func(index int, value interface{}) bool {
178 if foundValue != "c" || foundIndex != 0 {
179 t.Errorf("Got %v at %v expected %v at %v", foundValue, foundIndex, "c", 0)
181 foundIndex, foundValue = set.Find(func(index int, value interface{}) bool {
184 if foundValue != nil || foundIndex != -1 {
185 t.Errorf("Got %v at %v expected %v at %v", foundValue, foundIndex, nil, nil)
/dports/net/cloudquery/cloudquery-0.16.0/vendor/github.com/emirpasic/gods/sets/linkedhashset/
H A Dlinkedhashset_test.go175 foundIndex, foundValue := set.Find(func(index int, value interface{}) bool {
178 if foundValue != "c" || foundIndex != 0 {
179 t.Errorf("Got %v at %v expected %v at %v", foundValue, foundIndex, "c", 0)
181 foundIndex, foundValue = set.Find(func(index int, value interface{}) bool {
184 if foundValue != nil || foundIndex != -1 {
185 t.Errorf("Got %v at %v expected %v at %v", foundValue, foundIndex, nil, nil)
/dports/sysutils/gomplate/gomplate-3.9.0/vendor/github.com/emirpasic/gods/sets/linkedhashset/
H A Dlinkedhashset_test.go175 foundIndex, foundValue := set.Find(func(index int, value interface{}) bool {
178 if foundValue != "c" || foundIndex != 0 {
179 t.Errorf("Got %v at %v expected %v at %v", foundValue, foundIndex, "c", 0)
181 foundIndex, foundValue = set.Find(func(index int, value interface{}) bool {
184 if foundValue != nil || foundIndex != -1 {
185 t.Errorf("Got %v at %v expected %v at %v", foundValue, foundIndex, nil, nil)
/dports/devel/gitty/gitty-0.3.0/vendor/github.com/emirpasic/gods/sets/linkedhashset/
H A Dlinkedhashset_test.go175 foundIndex, foundValue := set.Find(func(index int, value interface{}) bool {
178 if foundValue != "c" || foundIndex != 0 {
179 t.Errorf("Got %v at %v expected %v at %v", foundValue, foundIndex, "c", 0)
181 foundIndex, foundValue = set.Find(func(index int, value interface{}) bool {
184 if foundValue != nil || foundIndex != -1 {
185 t.Errorf("Got %v at %v expected %v at %v", foundValue, foundIndex, nil, nil)

123456