/external/dbus/test/data/valid-messages/ |
dict-simple.message | 1 # A simple dict 8 TYPE DICT 9 LENGTH Dict 10 START_LENGTH Dict 14 END_LENGTH Dict
|
unknown-header-field.message | 8 TYPE DICT 9 LENGTH Dict 10 START_LENGTH Dict 14 END_LENGTH Dict
|
recursive-types.message | 12 # Everything is inside a dict 13 TYPE DICT 17 # first dict entry is an array of array of uint32 41 # second dict entry is an array of strings 47 # third dict entry is another dict 48 STRING 'nested-dict' 49 TYPE DICT 57 STRING 'super-nested-dict' 58 TYPE DICT [all...] |
emptiness.message | 29 TYPE DICT 32 # A dict with empty arrays 33 TYPE DICT 34 LENGTH Dict 35 START_LENGTH Dict 60 END_LENGTH Dict
|
/external/clearsilver/man/man3/ |
dictDestroy.3 | 1 .TH dictDestroy 3 "12 July 2007" "ClearSilver" "util/dict.h" 17 #include <util/dict.h> 20 void dictDestroy(dictCtx dict); 25 dict - dictionary to destroy 28 Release all resources used by <dict>. 30 MT-Level: Safe for unique <dict>.
|
dictRemove.3 | 1 .TH dictRemove 3 "12 July 2007" "ClearSilver" "util/dict.h" 17 #include <util/dict.h> 20 BOOL dictRemove(dictCtx dict, const char *id); 25 dict - dictionary to search in. 30 Removes item identified by <id> from <dict>. 32 MT-Level: Safe if <dict> thread-safe.
|
dictCleanup.3 | 1 .TH dictCleanup 3 "12 July 2007" "ClearSilver" "util/dict.h" 17 #include <util/dict.h> 20 void dictCleanup(dictCtx dict, dictCleanupFunc cleanup, void *rock); 25 dict - dictionary to cleanup 32 Calls <cleanup> for every item in <dict>. If <cleanup> 33 returns true, then item is removed from <dict>. 35 MT-Level: Safe if <dict> thread-safe.
|
dictSetValue.3 | 1 .TH dictSetValue 3 "12 July 2007" "ClearSilver" "util/dict.h" 17 #include <util/dict.h> 20 NEOERR *dictSetValue(dictCtx dict, const char *id, void *value); 25 dict - dictionary to add pair to. 32 Updates the <id>/<value> pair into <dict>. 33 If <id> is not in <dict>, it is created. 35 MT-Level: Safe if <dict> thread-safe.
|
dictReleaseLock.3 | 1 .TH dictReleaseLock 3 "12 July 2007" "ClearSilver" "util/dict.h" 17 #include <util/dict.h> 20 void dictReleaseLock(dictCtx dict, void *lock); 25 dict - dictionary containing value to release. 34 MT-Level: Safe if <dict> thread-safe.
|
dictModifyValue.3 | 1 .TH dictModifyValue 3 "12 July 2007" "ClearSilver" "util/dict.h" 17 #include <util/dict.h> 20 NEOERR *dictModifyValue(dictCtx dict, const char *id, dictNewValueCB new_cb, 26 dict - dictionary to add pair to. 40 not in <dict>, calls <new> to obtain a new value. 42 MT-Level: Safe if <dict> thread-safe.
|
dictSearch.3 | 1 .TH dictSearch 3 "12 July 2007" "ClearSilver" "util/dict.h" 17 #include <util/dict.h> 20 void *dictSearch(dictCtx dict, const char *id, void **plock); 25 dict - dictionary to search in. 32 Searches for <id> in <dict>, and returns value if 39 MT-Level: Safe if <dict> thread-safe.
|
/development/tools/makedict/etc/ |
manifest.txt | 1 Main-Class: com.android.tools.dict.MakeBinaryDictionary
|
/external/dbus/test/data/invalid-messages/ |
too-short-dict.message | 20 TYPE DICT 21 LENGTH Dict 22 START_LENGTH Dict 27 END_LENGTH Dict
|
/external/clearsilver/util/ |
dict.c | 22 #include "dict.h" 72 #define DICT_LOCK(dict) \ 73 do { if((dict)->threaded) { sched_yield(); \ 74 mLock(&(dict)->mList); } } while(0) 77 #define DICT_LOCK(dict) \ 78 if((dict)->threaded) mLock(&(dict)->mList) 81 #define DICT_UNLOCK(dict) \ 82 if((dict)->threaded) mUnlock(&(dict)->mList 555 dictCtx dict; local [all...] |
/external/qemu/distrib/sdl-1.2.12/src/main/macosx/SDLMain.nib/ |
info.nib | 4 <dict> 10 <dict/> 11 </dict>
|
/external/libxml2/include/libxml/ |
dict.h | 35 xmlDictReference(xmlDictPtr dict); 37 xmlDictFree (xmlDictPtr dict); 43 xmlDictLookup (xmlDictPtr dict, 47 xmlDictExists (xmlDictPtr dict, 51 xmlDictQLookup (xmlDictPtr dict, 55 xmlDictOwns (xmlDictPtr dict, 58 xmlDictSize (xmlDictPtr dict);
|
/external/webkit/WebCore/manual-tests/memory/ |
MessageUidsAlreadyDownloaded2 | 4 <dict> 6 <dict> 9 </dict> 11 <dict> 14 </dict> 16 <dict> 19 </dict> 21 <dict> 24 </dict> 26 <dict> [all...] |
/external/webkit/WebKit/English.lproj/WebJavaScriptTextInputPanel.nib/ |
classes.nib | 4 <dict> 7 <dict> 14 </dict> 15 <dict> 17 <dict> 28 </dict> 33 </dict> 34 <dict> 41 </dict> 42 <dict> [all...] |
/external/webkit/WebKitTools/DumpRenderTree/TestNetscapePlugIn.subproj/ |
Info.plist | 4 <dict> 30 <dict> 33 </dict> 35 <dict> 40 </dict> 46 <dict> 48 <dict> 55 </dict> 56 </dict> 59 </dict> [all...] |
/external/webkit/WebKitTools/WebKitLauncher/ |
Info.plist | 4 <dict> 9 <dict> 26 </dict> 27 <dict> 44 </dict> 45 <dict> 62 </dict> 63 <dict> 76 </dict> 77 <dict> [all...] |
/external/libxml2/ |
dict.c | 2 * dict.c: dictionary of reusable strings, just used to avoid allocation 33 #include <libxml/dict.h> 47 #define xmlDictComputeKey(dict, name, len) \ 48 (((dict)->size == MIN_DICT_SIZE) ? \ 52 #define xmlDictComputeQKey(dict, prefix, plen, name, len) \ 54 (xmlDictComputeKey(dict, name, len)) : \ 55 (((dict)->size == MIN_DICT_SIZE) ? \ 60 #define xmlDictComputeKey(dict, name, len) \ 62 #define xmlDictComputeQKey(dict, prefix, plen, name, len) \ 95 struct _xmlDictEntry *dict; member in struct:_xmlDict 442 xmlDictPtr dict; local 483 xmlDictPtr dict = xmlDictCreate(); local [all...] |
/external/webkit/WebKitExamplePlugins/NetscapeCocoaPlugin/ |
Info.plist | 4 <dict> 26 <dict> 28 <dict> 31 </dict> 32 </dict> 35 </dict>
|
/external/webkit/WebKitExamplePlugins/NetscapeInputMethodPlugin/ |
Info.plist | 4 <dict> 26 <dict> 28 <dict> 31 </dict> 32 </dict> 35 </dict>
|
/development/ide/xcode/animatorTest/English.lproj/main.nib/ |
info.nib | 4 <dict> 8 <dict> 11 </dict> 25 </dict>
|
/development/ide/xcode/SampleCode/English.lproj/main.nib/ |
classes.nib | 4 <dict> 7 </dict>
|