Home
last modified time | relevance | path

Searched refs:keyAndValue (Results 1 – 25 of 74) sorted by relevance

123

/dports/graphics/osg34/OpenSceneGraph-OpenSceneGraph-3.4.1/src/osgDB/
H A DOptions.cpp43 StringList keyAndValue; in parsePluginStringData() local
46 split(*itr, keyAndValue, separator2); in parsePluginStringData()
47 if (keyAndValue.size() > 1) in parsePluginStringData()
49 setPluginStringData(keyAndValue.front(), keyAndValue.back()); in parsePluginStringData()
51 else if (keyAndValue.size() > 0) in parsePluginStringData()
53 setPluginStringData(keyAndValue.front(), "true"); in parsePluginStringData()
55 keyAndValue.clear(); in parsePluginStringData()
H A DInputStream.cpp42 StringList domains, keyAndValue; in registerUniqueIDForObject()
46 split( domains[i], keyAndValue, ':' ); in registerUniqueIDForObject()
47 if ( keyAndValue.size()>1 ) in registerUniqueIDForObject()
48 _domainVersionMap[keyAndValue.front()] = atoi(keyAndValue.back().c_str()); in registerUniqueIDForObject()
941 StringList keyAndValue;
942 split( line, keyAndValue, '=' );
943 if ( keyAndValue.size()<2 ) continue;
1061 StringList schema, methods, keyAndValue;
1066 split( *itr, keyAndValue, ':' );
1067 if ( keyAndValue.size()>1 )
[all …]
H A DOutputStream.cpp55 StringList domains, keyAndValue; in OutputStream() local
59 split( domains[i], keyAndValue, ':' ); in OutputStream()
60 if ( keyAndValue.size()>1 ) in OutputStream()
61 _domainVersionMap[keyAndValue.front()] = atoi(keyAndValue.back().c_str()); in OutputStream()
/dports/graphics/osg/OpenSceneGraph-OpenSceneGraph-3.6.5/src/osgDB/
H A DOptions.cpp69 StringList keyAndValue; in parsePluginStringData() local
72 split(*itr, keyAndValue, separator2); in parsePluginStringData()
73 if (keyAndValue.size() > 1) in parsePluginStringData()
75 setPluginStringData(keyAndValue.front(), keyAndValue.back()); in parsePluginStringData()
77 else if (keyAndValue.size() > 0) in parsePluginStringData()
79 setPluginStringData(keyAndValue.front(), "true"); in parsePluginStringData()
81 keyAndValue.clear(); in parsePluginStringData()
H A DInputStream.cpp42 StringList domains, keyAndValue; in InputStream() local
46 split( domains[i], keyAndValue, ':' ); in InputStream()
47 if ( keyAndValue.size()>1 ) in InputStream()
48 _domainVersionMap[keyAndValue.front()] = atoi(keyAndValue.back().c_str()); in InputStream()
960 StringList keyAndValue; in readSchema() local
961 split( line, keyAndValue, '=' ); in readSchema()
962 if ( keyAndValue.size()<2 ) continue; in readSchema()
1080 StringList schema, methods, keyAndValue; in setWrapperSchema() local
1085 split( *itr, keyAndValue, ':' ); in setWrapperSchema()
1086 if ( keyAndValue.size()>1 ) in setWrapperSchema()
[all …]
/dports/www/proxygen/proxygen-2021.12.27.00/proxygen/lib/utils/test/
H A DPerfectIndexMapBenchmark.cpp96 for (auto const& keyAndValue : keysAndValues) { in UnorderedMapInsertBench() local
98 testMap[*keyAndValue] = *keyAndValue; in UnorderedMapInsertBench()
106 for (auto const& keyAndValue : keysAndValues) { in F14InsertBench() local
108 testMap[*keyAndValue] = *keyAndValue; in F14InsertBench()
145 for (auto const& keyAndValue : keysAndValues) { in PerfectIndexMapInsertHashBench() local
146 map.set(*keyAndValue, *keyAndValue); in PerfectIndexMapInsertHashBench()
/dports/devel/RStudio/rstudio-2021.09.1-372/src/cpp/core/
H A DConfigUtils.cpp37 void extractToMap(const std::string& keyAndValue, in extractToMap() argument
40 std::string::size_type pos = keyAndValue.find("="); in extractToMap()
43 std::string key = keyAndValue.substr(0, pos); in extractToMap()
45 std::string value = keyAndValue.substr(pos + 1); in extractToMap()
/dports/graphics/scantailor/scantailor-advanced-1.0.16/
H A DDeviationProvider.h114 for (const std::pair<K, double>& keyAndValue : m_keyValueMap) { in update() local
115 sum += keyAndValue.second; in update()
122 for (const std::pair<K, double>& keyAndValue : m_keyValueMap) { in update() local
123 differencesSum += std::pow(keyAndValue.second - m_meanValue, 2); in update()
/dports/science/opensph/sph-7de6c044339f649e3d19e61f735a6a24572b792a/core/run/
H A DConfig.cpp72 Pair<String> keyAndValue = splitByFirst(line, '='); in read() local
73 if (keyAndValue.empty()) { in read()
76 entries.insert(unquoted(keyAndValue[0]), keyAndValue[1]); in read()
/dports/math/vtk6/VTK-6.2.0/ThirdParty/Twisted/twisted/protocols/
H A Dpostfix.py83 def do_put(self, keyAndValue): argument
84 if keyAndValue is None:
88 key, value = keyAndValue.split(None, 1)
/dports/misc/gobuster/gobuster-3.1.0/cli/cmd/
H A Dhttp.go143 keyAndValue := strings.SplitN(h, ":", 2)
144 if len(keyAndValue) != 2 {
147 key := strings.TrimSpace(keyAndValue[0])
148 value := strings.TrimSpace(keyAndValue[1])
/dports/devel/py-twisted/Twisted-22.1.0/src/twisted/protocols/
H A Dpostfix.py96 def do_put(self, keyAndValue): argument
97 if keyAndValue is None:
101 key, value = keyAndValue.split(None, 1)
/dports/www/firefox-esr/firefox-91.8.0/mobile/android/geckoview/src/thirdparty/java/org/mozilla/thirdparty/com/google/android/exoplayer2/util/
H A DFlacStreamMetadata.java372 String[] keyAndValue = Util.splitAtFirst(vorbisComment, SEPARATOR); in buildMetadata() local
373 if (keyAndValue.length != 2) { in buildMetadata()
376 VorbisComment entry = new VorbisComment(keyAndValue[0], keyAndValue[1]); in buildMetadata()
/dports/www/firefox/firefox-99.0/mobile/android/exoplayer2/src/main/java/org/mozilla/thirdparty/com/google/android/exoplayer2/util/
H A DFlacStreamMetadata.java372 String[] keyAndValue = Util.splitAtFirst(vorbisComment, SEPARATOR); in buildMetadata() local
373 if (keyAndValue.length != 2) { in buildMetadata()
376 VorbisComment entry = new VorbisComment(keyAndValue[0], keyAndValue[1]); in buildMetadata()
/dports/emulators/gxemul/gxemul-0.6.3/src/main/
H A DComponentFactory.cc117 vector<string> keyAndValue = StringHelper::SplitStringIntoVector(assignments[i], '='); in CreateComponent() local
118 if (keyAndValue.size() != 2) { in CreateComponent()
125 args.componentCreationSettings[keyAndValue[0]] = keyAndValue[1]; in CreateComponent()
/dports/mail/thunderbird/thunderbird-91.8.0/mobile/android/geckoview/src/thirdparty/java/org/mozilla/thirdparty/com/google/android/exoplayer2/util/
H A DFlacStreamMetadata.java372 String[] keyAndValue = Util.splitAtFirst(vorbisComment, SEPARATOR); in buildMetadata() local
373 if (keyAndValue.length != 2) { in buildMetadata()
376 VorbisComment entry = new VorbisComment(keyAndValue[0], keyAndValue[1]); in buildMetadata()
/dports/biology/gatk/gatk-4.2.0.0/src/main/java/org/broadinstitute/hellbender/utils/tsv/
H A DTableReader.java396 … final String[] keyAndValue = commentText.substring(TableWriter.METADATA_TAG.length()).split("="); in processCommentLine() local
397 metadata.put(keyAndValue[0], keyAndValue[1]); in processCommentLine()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ua/org.eclipse.help.webapp/src/org/eclipse/help/internal/webapp/servlet/
H A DInfocenterWorkingSetManager.java216 String[] keyAndValue = criterion.split("#", -1); //$NON-NLS-1$ in restoreCriteria() local
217 if(keyAndValue.length != 2) in restoreCriteria()
219 String key = URLCoder.decode(keyAndValue[0]); in restoreCriteria()
220 String value = URLCoder.decode(keyAndValue[1]); in restoreCriteria()
/dports/sysutils/istio/istio-1.6.7/pkg/envoy/
H A Doptions.go237 keyAndValue := strings.Split(part, ":")
238 if len(keyAndValue) == 2 {
240 Name: keyAndValue[0],
241 Level: LogLevel(keyAndValue[1]),
/dports/java/icedtea-web/icedtea-web-1.6.2/netx/net/sourceforge/jnlp/util/
H A DXDesktopEntry.java580 String[] keyAndValue = s.split("="); in getFreedesktopOrgDesktopPathFrom() local
581 keyAndValue[1] = keyAndValue[1].trim(); in getFreedesktopOrgDesktopPathFrom()
582 String filteredQuotes = filterQuotes(keyAndValue[1]); in getFreedesktopOrgDesktopPathFrom()
/dports/www/thirtybees/thirtybees-1.1.0/classes/
H A DCookie.php167 foreach ($tmpTab as $keyAndValue) {
168 $tmpTab2 = explode('|', $keyAndValue);
/dports/net-p2p/qtum/qtum-mainnet-fastlane-v0.20.3/src/cpp-ethereum/libethereum/
H A DBlockQueue.h160 auto keyAndValue = std::make_pair(_key, std::move(hashAndBlock)); in insert() local
161 m_map.insert(std::move(keyAndValue)); in insert()
/dports/dns/blocky/blocky-0.17/vendor/github.com/0xERR0R/go-cache/
H A Dcache.go1180 type keyAndValue struct { struct
1187 var evictedItems []keyAndValue
1196 evictedItems = append(evictedItems, keyAndValue{k, ov})
1241 func (c *cache) deleteLRUAmount(numItems int) []keyAndValue {
1250 evictedItems []keyAndValue
1254 evictedItems = make([]keyAndValue, 0, numItems)
1281 evictedItems = append(evictedItems, keyAndValue{v, ov})
/dports/net/ooni-probe-cli/probe-cli-3.10.1/vendor/github.com/ooni/psiphon/oopsi/github.com/cognusion/go-cache-lru/
H A Dcache.go1123 type keyAndValue struct { struct
1130 var evictedItems []keyAndValue
1139 evictedItems = append(evictedItems, keyAndValue{k, ov})
1184 func (c *cache) deleteLRUAmount(numItems int) []keyAndValue {
1193 evictedItems []keyAndValue
1197 evictedItems = make([]keyAndValue, 0, numItems)
1224 evictedItems = append(evictedItems, keyAndValue{v, ov})
/dports/net/ooni-mini/probe-engine-0.23.0/vendor/github.com/ooni/psiphon/oopsi/github.com/cognusion/go-cache-lru/
H A Dcache.go1123 type keyAndValue struct { struct
1130 var evictedItems []keyAndValue
1139 evictedItems = append(evictedItems, keyAndValue{k, ov})
1184 func (c *cache) deleteLRUAmount(numItems int) []keyAndValue {
1193 evictedItems []keyAndValue
1197 evictedItems = make([]keyAndValue, 0, numItems)
1224 evictedItems = append(evictedItems, keyAndValue{v, ov})

123