OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:KeyValue
(Results
1 - 4
of
4
) sorted by null
/external/smack/src/org/jivesoftware/smack/util/collections/
KeyValue.java
30
public interface
KeyValue
<K,V> {
/external/llvm/utils/TableGen/
CodeGenMapTable.cpp
245
std::vector<Init*>
KeyValue
;
250
KeyValue
.push_back(CurInstrVal);
255
// their
KeyValue
in RowInstrMap.
259
RowInstrMap[
KeyValue
].push_back(CurInstr);
314
std::vector<Init*>
KeyValue
;
316
// Construct
KeyValue
using KeyInstr's values for RowFields.
320
KeyValue
.push_back(KeyInstrVal);
323
// Get all the instructions that share the same
KeyValue
as the KeyInstr
327
const std::vector<Record*> &RelatedInstrVec = RowInstrMap[
KeyValue
];
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
CookieParser.js
51
WebInspector.CookieParser.
KeyValue
= function(key, value, position)
130
* @return {?WebInspector.CookieParser.
KeyValue
}
147
var result = new WebInspector.CookieParser.
KeyValue
(keyValueMatch[1], keyValueMatch[2] && keyValueMatch[2].trim(), this._originalInputLength - this._input.length);
165
* @param {!WebInspector.CookieParser.
KeyValue
}
keyValue
168
_addCookie: function(
keyValue
, type)
171
this._lastCookie.setSize(
keyValue
.position - this._lastCookiePosition);
174
this._lastCookie = typeof
keyValue
.value === "string" ? new WebInspector.Cookie(
keyValue
.key,
keyValue
.value, type)
[
all
...]
/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
CalendarProvider2Test.java
152
*
KeyValue
is a simple class that stores a pair of strings representing
155
private class
KeyValue
{
159
public
KeyValue
(String key, String value) {
226
KeyValue
[] pairs;
228
public Update(String eventName,
KeyValue
[] pairs) {
240
for (
KeyValue
pair : pairs) {
[
all
...]
Completed in 58 milliseconds