HomeSort by relevance Sort by last modified time
    Searched full:tvalue (Results 1 - 15 of 15) sorted by null

  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
DictionaryExtensions.cs 55 public static TValue get<TKey, TValue>(IDictionary<TKey, TValue> map, TKey key) {
56 TValue value;
60 if (typeof(TValue).IsValueType)
63 return default(TValue);
67 public static TValue get<TKey, TValue>(Dictionary<TKey, TValue> map, TKey key) {
68 TValue value
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
DictionaryExtensions.cs 55 public static TValue get<TKey, TValue>( this IDictionary<TKey, TValue> map, TKey key )
57 TValue value;
61 if ( typeof( TValue ).IsValueType )
64 return default( TValue );
68 public static TValue get<TKey, TValue>( this Dictionary<TKey, TValue> map, TKey key )
70 TValue value
    [all...]
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.Collections.pas 51 IHashList<TKey, TValue> = interface(IDictionary<TKey, TValue>)
79 THashList<TKey, TValue> = class(TANTLRObject, IHashList<TKey, TValue>)
82 TPairEnumerator = class(TEnumerator<TPair<TKey, TValue>>)
84 FHashList: THashList<TKey, TValue>;
88 FPair: TPair<TKey, TValue>;
89 function GetCurrent: TPair<TKey, TValue>;
91 function DoGetCurrent: TPair<TKey, TValue>; override;
94 constructor Create(const AHashList: THashList<TKey, TValue>);
    [all...]
Antlr.Runtime.Tools.pas 186 IDictionary<TKey,TValue> = interface(IANTLRInterface)
189 function GetItem(const Key: TKey): TValue;
190 procedure SetItem(const Key: TKey; const Value: TValue);
194 procedure Add(const Key: TKey; const Value: TValue);
198 function TryGetValue(const Key: TKey; out Value: TValue): Boolean;
199 procedure AddOrSetValue(const Key: TKey; const Value: TValue);
201 function ContainsValue(const Value: TValue): Boolean;
202 function GetEnumerator: TEnumerator<TPair<TKey, TValue>>;
205 property Items[const Key: TKey]: TValue read GetItem write SetItem; default;
234 TDictionaryArray<TKey,TValue> = array of IDictionary<TKey,TValue>
    [all...]
  /external/llvm/test/CodeGen/X86/
coalescer-cross.ll 8 %0 = type { %struct.TValue } ; type %0
10 %struct.CallInfo = type { %struct.TValue*, %struct.TValue*, %struct.TValue*, i32*, i32, i32 }
14 %struct.Node = type { %struct.TValue, %struct.TKey }
17 %struct.TValue = type { %struct.L_Umaxalign, i32 }
18 %struct.Table = type { %struct.GCObject*, i8, i8, i8, i8, %struct.Table*, %struct.TValue*, %struct.Node*, %struct.Node*, %struct.GCObject*, i32 }
19 %struct.UpVal = type { %struct.GCObject*, i8, i8, %struct.TValue*, %0 }
21 %struct.global_State = type { %struct.stringtable, i8* (i8*, i8*, i32, i32)*, i8*, i8, i8, i32, %struct.GCObject*, %struct.GCObject**, %struct.GCObject*, %struct.GCObject*, %struct.GCObject*, %struct.GCObject*, %struct.Mbuffer, i32, i32, i32, i32, i32, i32, i32 (%struct.lua_State*)*, %struct.TValue, %struct.lua_State*, %struct.UpVal, [9 x %struct.Table*], [17 x %struct.TString*] }
23 %struct.lua_State = type { %struct.GCObject*, i8, i8, i8, %struct.TValue*, %struct.TValue*, %struct.global_State*, %struct.CallInfo*, i32*, %struct.TValue*, %struct.TValue (…)
    [all...]
  /frameworks/av/drm/libdrmframework/plugins/common/util/include/
SessionMap.h 30 template <typename TValue>
50 bool addValue(int key, TValue value) {
66 TValue getValue(int key) {
88 TValue getValueAt(unsigned int index) {
89 TValue value = NULL;
122 SessionMap<TValue> & operator=(const SessionMap<TValue> & objectCopy) {
131 KeyedVector<int, TValue> map;
142 void deleteValue(TValue value) {
178 TValue getValueInternal(int key)
    [all...]
  /frameworks/native/libs/utils/tests/
BasicHashtable_test.cpp 121 template <typename TKey, typename TValue>
122 static size_t add(BasicHashtable<TKey, key_value_pair_t<TKey, TValue> >& h,
123 const TKey& key, const TValue& value) {
124 return h.add(hash_type(key), key_value_pair_t<TKey, TValue>(key, value));
127 template <typename TKey, typename TValue>
128 static ssize_t find(BasicHashtable<TKey, key_value_pair_t<TKey, TValue> >& h,
133 template <typename TKey, typename TValue>
134 static bool remove(BasicHashtable<TKey, key_value_pair_t<TKey, TValue> >& h,
157 template <typename TKey, typename TValue>
158 static void dump(BasicHashtable<TKey, key_value_pair_t<TKey, TValue> >& h)
    [all...]
  /external/antlr/antlr-3.4/runtime/Delphi/
README.TXT 249 * IDictionary<TKey, TValue> (implemented in TDictionary<TKey, TValue>): a
250 generic dictionary that maps elements of type <TKey> to <TValue>. For example,
261 IDictionary<TKey, TValue> interface.
  /external/chromium/base/
string_split_unittest.cc 36 EXPECT_TRUE(SplitStringIntoKeyValues("\tvalue for empty key",
69 EXPECT_TRUE(SplitStringIntoKeyValues("\tvalue for empty key",
  /external/skia/src/core/
SkGeometry.cpp 295 int SkFindQuadExtrema(SkScalar a, SkScalar b, SkScalar c, SkScalar tValue[1])
301 return is_not_monotonic(a, b, c) && valid_unit_divide(a - b, a - b - b + c, tValue);
303 return valid_unit_divide(a - b, a - b - b + c, tValue);
339 SkScalar tValue;
340 if (valid_unit_divide(a - b, a - b - b + c, &tValue))
342 SkChopQuadAt(src, dst, tValue);
369 SkScalar tValue;
370 if (valid_unit_divide(a - b, a - b - b + c, &tValue)) {
371 SkChopQuadAt(src, dst, tValue);
600 even though the 2nd tValue looks < 1.0, after we renormalize it, we en
    [all...]
  /external/openssl/crypto/x509v3/
v3_utl.c 85 char *tname = NULL, *tvalue = NULL; local
87 if(value && !(tvalue = BUF_strdup(value))) goto err;
92 vtmp->value = tvalue;
99 if(tvalue) OPENSSL_free(tvalue);
  /external/webkit/Source/WebCore/wml/
WMLPageState.cpp 58 fprintf(stderr, "\t-> name: '%s'\tvalue: '%s'\n", (*it).first.latin1().data(), (*it).second.latin1().data());
  /frameworks/wilhelm/tests/examples/
slesTestDecodeToBuffQueue.cpp 478 fprintf(stdout, "key[%d] size=%d, name=%s \tvalue size=%d \n",
slesTestDecodeAac.cpp 692 printf("key[%d] size=%d, name=%s \tvalue size=%d encoding=0x%X langCountry=%s\n",
    [all...]
  /external/tcpdump/
print-rsvp.c 606 printf("\n\t\tValue: %u", EXTRACT_32BITS(tptr+4));
    [all...]

Completed in 1146 milliseconds