HomeSort by relevance Sort by last modified time
    Searched defs:KeyValue (Results 1 - 25 of 43) sorted by null

1 2

  /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;
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/FirmwareVolume/FwVolDxe/
FwVolRead.c 122 UINTN *KeyValue;
133 KeyValue = (UINTN *) Key;
151 if (*KeyValue == 0) {
166 *KeyValue = (UINTN) FfsFileEntry;
187 Link = (LIST_ENTRY *) (*KeyValue);
198 *KeyValue = (UINTN) FfsFileEntry;
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/FwVol/
FwVolRead.c 121 UINTN *KeyValue;
146 KeyValue = (UINTN *)Key;
148 if (*KeyValue == 0) {
157 Link = (LIST_ENTRY *)(*KeyValue);
173 *KeyValue = (UINTN)FfsFileEntry;
  /prebuilts/go/darwin-x86/src/expvar/
expvar.go 107 // KeyValue represents a single entry in a Map.
108 type KeyValue struct {
117 v.Do(func(kv KeyValue) {
205 func (v *Map) Do(f func(KeyValue)) {
210 f(KeyValue{k, i.(Var)})
306 func Do(f func(KeyValue)) {
311 f(KeyValue{k, val.(Var)})
319 Do(func(kv KeyValue) {
  /prebuilts/go/linux-x86/src/expvar/
expvar.go 107 // KeyValue represents a single entry in a Map.
108 type KeyValue struct {
117 v.Do(func(kv KeyValue) {
205 func (v *Map) Do(f func(KeyValue)) {
210 f(KeyValue{k, i.(Var)})
306 func Do(f func(KeyValue)) {
311 f(KeyValue{k, val.(Var)})
319 Do(func(kv KeyValue) {
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Include/Common/
MdeModuleHii.h 186 UINT16 KeyValue;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Compatibility/FrameworkHiiOnUefiHiiThunk/
ConfigAccess.c     [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Include/Guid/
MdeModuleHii.h 185 UINT16 KeyValue;
  /external/clang/lib/Tooling/
JSONCompilationDatabase.cpp 272 StringRef KeyValue = KeyString->getValue(KeyStorage);
282 if (KeyValue == "arguments" && !SequenceString) {
285 } else if (KeyValue != "arguments" && !ValueString) {
289 if (KeyValue == "directory") {
291 } else if (KeyValue == "arguments") {
301 } else if (KeyValue == "command") {
304 } else if (KeyValue == "file") {
  /external/llvm/lib/Transforms/Utils/
SymbolRewriter.cpp 317 StringRef KeyValue;
331 KeyValue = Key->getValue(KeyStorage);
332 if (KeyValue.equals("source")) {
340 } else if (KeyValue.equals("target")) {
342 } else if (KeyValue.equals("transform")) {
344 } else if (KeyValue.equals("naked")) {
384 StringRef KeyValue;
398 KeyValue = Key->getValue(KeyStorage);
399 if (KeyValue.equals("source")) {
407 } else if (KeyValue.equals("target"))
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/CustomizedDisplayLib/
CustomizedDisplayLib.c 418 EFI_INPUT_KEY KeyValue;
544 Status = WaitForKeyStroke (&KeyValue);
546 CopyMem (Key, &KeyValue, sizeof (EFI_INPUT_KEY));
  /external/llvm/utils/TableGen/
CodeGenMapTable.cpp 243 std::vector<Init*> KeyValue;
247 KeyValue.push_back(CurInstrVal);
252 // their KeyValue in RowInstrMap.
256 RowInstrMap[KeyValue].push_back(CurInstr);
310 std::vector<Init*> KeyValue;
312 // Construct KeyValue using KeyInstr's values for RowFields.
315 KeyValue.push_back(KeyInstrVal);
318 // Get all the instructions that share the same KeyValue as the KeyInstr
322 const std::vector<Record*> &RelatedInstrVec = RowInstrMap[KeyValue];
344 for (Init *Value : KeyValue) {
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/PlatformDriOverrideDxe/
PlatDriOverrideDxe.c 320 @param KeyValue The callback key value of device controller item in first page.
329 IN UINT16 KeyValue,
611 @param KeyValue The callback key value of device controller item in first page.
612 KeyValue is larger than or equal to KEY_VALUE_DEVICE_OFFSET.
621 IN UINT16 KeyValue,
659 mSelectedCtrIndex = KeyValue - KEY_VALUE_DEVICE_OFFSET;
901 @param KeyValue The callback key value of device controller item in first page.
910 IN UINT16 KeyValue,
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
Kms.h 223 VOID *KeyValue;
435 NULL GUID, and the KeyValue field will contain a pointer
437 key. Memory for both the KeyIdentifier and the KeyValue
521 will be unchanged, while the KeyFormat and KeyValue
523 identifier. Memory for the KeyValue field will be
561 KeyValue buffer does not contain enough structures
    [all...]
  /external/protobuf/src/google/protobuf/
map.h 271 union KeyValue {
272 KeyValue() {}
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
cryptxml.h 289 CRYPT_XML_KEY_VALUE KeyValue;
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
map.h 271 union KeyValue {
272 KeyValue() {}
    [all...]
  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
CalendarProvider2Test.java 160 * KeyValue is a simple class that stores a pair of strings representing
163 private class KeyValue {
167 public KeyValue(String key, String value) {
234 KeyValue[] pairs;
236 public Update(String eventName, KeyValue[] pairs) {
248 for (KeyValue pair : pairs) {
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
ntifs.h     [all...]
  /prebuilts/tools/common/m2/repository/com/amazonaws/aws-java-sdk-emr/1.11.18/
aws-java-sdk-emr-1.11.18.jar 
  /external/guice/extensions/persist/lib/
commons-collections.jar 
hibernate3.jar 
  /prebuilts/tools/common/m2/repository/commons-collections/commons-collections/3.2.1/
commons-collections-3.2.1.jar 
  /prebuilts/tools/common/m2/repository/commons-collections/commons-collections/3.2.2/
commons-collections-3.2.2.jar 

Completed in 599 milliseconds

1 2