Home
last modified time | relevance | path

Searched refs:Key (Results 1 – 24 of 24) sorted by relevance

/thrift-3.4.0/lib/swift/Sources/
DTMap.swift20 public struct TMap<Key : TSerializable & Hashable, Value : TSerializable & Hashable>: Collection, E…
21 public typealias Storage = Dictionary<Key, Value>
31 public func indexForKey(_ key: Key) -> Index? { in indexForKey()
35 public mutating func updateValue(_ value: Value, forKey key: Key) -> Value? { in updateValue()
39 public mutating func removeValueForKey(_ key: Key) -> Value? { in removeValueForKey()
48 public init(_ dict: [Key: Value]) {
53 public var dictionary: [Key: Value] {
57 public subscript (key: Key) -> Value? {
106 public init(dictionaryLiteral elements: (Key, Value)...) {
130 if keyType != Key.thriftType { in read()
[all …]
/thrift-3.4.0/lib/cpp/src/thrift/
DVirtualProfiling.cpp146 class Key { class
150 size_t operator()(Key const& k) const { return k.hash(); } in operator ()()
153 Key(const Backtrace* bt, const std::type_info& type_info) in Key() function in apache::thrift::Key
156 Key(const Backtrace* bt, const std::type_info& type_info1, const std::type_info& type_info2) in Key() function in apache::thrift::Key
159 Key(const Key& k) in Key() function in apache::thrift::Key
162 void operator=(const Key& k) { in operator =()
195 int cmp(const Key& k) const { in cmp()
212 bool operator==(const Key& k) const { return cmp(k) == 0; } in operator ==()
234 bool operator()(std::pair<Key, size_t> bt1, std::pair<Key, size_t> bt2) const { in operator ()() argument
239 typedef __gnu_cxx::hash_map<Key, size_t, Key::Hash> BacktraceMap;
[all …]
/thrift-3.4.0/lib/delphi/src/
DThrift.Collections.pas44 function GetItem(const Key: TKey): TValue; in GetItem()
45 procedure SetItem(const Key: TKey; const Value: TValue);
48 procedure Add(const Key: TKey; const Value: TValue);
49 procedure Remove(const Key: TKey);
51 function ExtractPair(const Key: TKey): TPair<TKey,TValue>; in ExtractPair()
55 function TryGetValue(const Key: TKey; out Value: TValue): Boolean; in TryGetValue()
56 procedure AddOrSetValue(const Key: TKey; const Value: TValue);
57 function ContainsKey(const Key: TKey): Boolean; in ContainsKey()
61 property Items[const Key: TKey]: TValue read GetItem write SetItem; default;
75 function GetItem(const Key: TKey): TValue; in GetItem()
[all …]
DThrift.Transport.MsxmlHTTP.pas133 Result.setRequestHeader( pair.Key, pair.Value );
DThrift.Transport.WinHTTP.pas171 Result.AddRequestHeader( pair.Key +': '+ pair.Value, WINHTTP_ADDREQ_FLAG_ADD);
/thrift-3.4.0/tutorial/erl/
Dserver.erl55 getStruct(Key) ->
56 debug("getStruct(~p)", [Key]),
57 #'SharedStruct'{key=Key, value="RARG"}.
/thrift-3.4.0/lib/erl/src/
Dthrift_reconnecting_client.erl239 Key = lists:flatten( [ atom_to_list( Op ), [ "_" | Result ] ] ),
240 State#state{ op_cnt_dict = dict:update_counter( Key, 1, OpCntDict ),
241 op_time_dict = dict:update_counter( Key, Time, OpTimeDict ) }.
249 F = fun( Key, Count, Stats ) ->
250 Name = lists:flatten( [ Svc, [ "_" | Key ] ] ),
251 Micros = dict:fetch( Key, OpTimeDict ),
Dthrift_protocol.erl159 {ProtoS1, {ok, Key}} = read(ProtoS0, KeyType),
161 {{Key, Val}, ProtoS2}
/thrift-3.4.0/test/erl/src/
Dtest_client.erl87 DemoDict = dict:from_list([ {Key, Key-10} || Key <- lists:seq(0,10) ]),
88 DemoSet = sets:from_list([ Key || Key <- lists:seq(-3,3) ]),
/thrift-3.4.0/lib/delphi/test/
Dclient.dproj76 <Key>Cfg_2</Key>
80 <Key>Base</Key>
83 <Key>Cfg_1</Key>
Dserver.dproj74 <Key>Cfg_2</Key>
78 <Key>Base</Key>
81 <Key>Cfg_1</Key>
DTestClient.pas898 …Expect( crazy.UserMap[pair.Key] = pair.Value, 'crazy.UserMap['+IntToStr(Ord(pair.key))+'] = '+IntT…
/thrift-3.4.0/test/keys/
DCA.pem12 Subject Public Key Info:
13 Public Key Algorithm: rsaEncryption
14 RSA Public-Key: (4096 bit)
53 X509v3 Subject Key Identifier:
55 X509v3 Authority Key Identifier:
60 X509v3 Key Usage: critical
61 Digital Signature, Non Repudiation, Key Encipherment, Certificate Sign, CRL Sign
62 X509v3 Extended Key Usage:
Dclient.pem37 Key Attributes: <No Attributes>
/thrift-3.4.0/lib/netstd/Thrift/Protocol/
DToString.cs54 pair.Key.ToString(sb); in ToString()
/thrift-3.4.0/tutorial/go/src/
Dhandler.go75 entry.Key = logid
/thrift-3.4.0/lib/go/test/fuzz/
Dfuzz.go128 entry.Key = logid
/thrift-3.4.0/tutorial/netstd/Server/
DProgram.cs444 Key = logid, in calculate()
467 Key = key, in getStruct()
/thrift-3.4.0/lib/netstd/Thrift/Transport/Client/
DTHttpTransport.cs211 httpClient.DefaultRequestHeaders.Add(item.Key, item.Value); in CreateClient()
/thrift-3.4.0/test/netstd/Client/
DTestClient.cs695 …Console.Write(string.Join(", ", mapout.Select((pair) => { return pair.Key + " => " + pair.Value; }… in ExecuteClientTest()
701 …Console.Write(string.Join(", ", mapin.Select((pair) => { return pair.Key + " => " + pair.Value; })… in ExecuteClientTest()
888 tmpMultiDict.Add(pair.Key +" => "+ pair.Value); in ExecuteClientTest()
/thrift-3.4.0/tutorial/delphi/DelphiServer/
DDelphiServer.dpr123 entry.Key := logid;
/thrift-3.4.0/tutorial/dart/client/web/
Dclient.dart238 ..text = "Struct Key:"
/thrift-3.4.0/tutorial/netstd/
DREADME.md248 log.Key = logid
/thrift-3.4.0/
DCHANGES.md3838 THRIFT-884 HTML HTML Generator: add Key attribute to the Data Types Tables (Roger…