OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:KeyValue
(Results
1 - 8
of
8
) sorted by null
/external/cmockery/cmockery_0_1_2/src/example/
key_value.c
20
typedef struct
KeyValue
{
23
}
KeyValue
;
25
static
KeyValue
*key_values = NULL;
28
void set_key_values(
KeyValue
* const new_key_values,
34
// Compare two key members of
KeyValue
structures.
36
return (int)((
KeyValue
*)a)->key - (int)((
KeyValue
*)b)->key;
40
KeyValue
* find_item_by_value(const char * const value) {
key_value_test.c
24
typedef struct
KeyValue
{
27
}
KeyValue
;
29
void set_key_values(
KeyValue
* const new_key_values,
31
extern
KeyValue
* find_item_by_value(const char * const value);
34
static
KeyValue
key_values[] = {
42
KeyValue
* const items = (
KeyValue
*)test_malloc(sizeof(key_values));
56
KeyValue
* const found = find_item_by_value(key_values[i].value);
65
KeyValue
* const kv = *state;
/external/chromium_org/third_party/skia/third_party/ktx/
ktx.h
98
class
KeyValue
{
100
KeyValue
(size_t size) : fDataSz(size) { }
112
static
KeyValue
CreateKeyValue(const char *key, const char *value);
132
SkTArray<
KeyValue
> fKeyValuePairs;
ktx.cpp
69
bool SkKTXFile::
KeyValue
::readKeyAndValue(const uint8_t* data) {
101
bool SkKTXFile::
KeyValue
::writeKeyAndValueForKTX(SkWStream* strm) {
160
const
KeyValue
*begin = this->fKeyValuePairs.begin();
161
const
KeyValue
*end = this->fKeyValuePairs.end();
162
for (const
KeyValue
*kv = begin; kv != end; ++kv) {
282
KeyValue
kv(keyValueBytes);
356
SkKTXFile::
KeyValue
SkKTXFile::CreateKeyValue(const char *cstrKey, const char *cstrValue) {
368
KeyValue
kv(size);
438
SkTArray<
KeyValue
> kvPairs;
496
for (
KeyValue
*kv = kvPairs.begin(); kv != kvPairs.end(); ++kv)
[
all
...]
/external/llvm/utils/TableGen/
CodeGenMapTable.cpp
244
std::vector<Init*>
KeyValue
;
249
KeyValue
.push_back(CurInstrVal);
254
// their
KeyValue
in RowInstrMap.
258
RowInstrMap[
KeyValue
].push_back(CurInstr);
313
std::vector<Init*>
KeyValue
;
315
// Construct
KeyValue
using KeyInstr's values for RowFields.
319
KeyValue
.push_back(KeyInstrVal);
322
// Get all the instructions that share the same
KeyValue
as the KeyInstr
326
const std::vector<Record*> &RelatedInstrVec = RowInstrMap[
KeyValue
];
/external/llvm/include/llvm/ADT/
StringMap.h
310
bool insert(MapEntryTy *
KeyValue
) {
311
unsigned BucketNo = LookupBucketFor(
KeyValue
->getKey());
318
Bucket =
KeyValue
;
380
void remove(MapEntryTy *
KeyValue
) {
381
RemoveKey(
KeyValue
);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
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
...]
/external/llvm/lib/IR/
GCOV.cpp
596
KeyValue
(Function, GCOVCoverage(Function->getName()));
597
FuncCoverages.insert(
KeyValue
);
Completed in 1048 milliseconds