/thrift-3.4.0/lib/swift/Sources/ |
D | TMap.swift | 20 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/ |
D | VirtualProfiling.cpp | 146 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/ |
D | Thrift.Collections.pas | 44 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 …]
|
D | Thrift.Transport.MsxmlHTTP.pas | 133 Result.setRequestHeader( pair.Key, pair.Value );
|
D | Thrift.Transport.WinHTTP.pas | 171 Result.AddRequestHeader( pair.Key +': '+ pair.Value, WINHTTP_ADDREQ_FLAG_ADD);
|
/thrift-3.4.0/tutorial/erl/ |
D | server.erl | 55 getStruct(Key) -> 56 debug("getStruct(~p)", [Key]), 57 #'SharedStruct'{key=Key, value="RARG"}.
|
/thrift-3.4.0/lib/erl/src/ |
D | thrift_reconnecting_client.erl | 239 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 ),
|
D | thrift_protocol.erl | 159 {ProtoS1, {ok, Key}} = read(ProtoS0, KeyType), 161 {{Key, Val}, ProtoS2}
|
/thrift-3.4.0/test/erl/src/ |
D | test_client.erl | 87 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/ |
D | client.dproj | 76 <Key>Cfg_2</Key> 80 <Key>Base</Key> 83 <Key>Cfg_1</Key>
|
D | server.dproj | 74 <Key>Cfg_2</Key> 78 <Key>Base</Key> 81 <Key>Cfg_1</Key>
|
D | TestClient.pas | 898 …Expect( crazy.UserMap[pair.Key] = pair.Value, 'crazy.UserMap['+IntToStr(Ord(pair.key))+'] = '+IntT…
|
/thrift-3.4.0/test/keys/ |
D | CA.pem | 12 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:
|
D | client.pem | 37 Key Attributes: <No Attributes>
|
/thrift-3.4.0/lib/netstd/Thrift/Protocol/ |
D | ToString.cs | 54 pair.Key.ToString(sb); in ToString()
|
/thrift-3.4.0/tutorial/go/src/ |
D | handler.go | 75 entry.Key = logid
|
/thrift-3.4.0/lib/go/test/fuzz/ |
D | fuzz.go | 128 entry.Key = logid
|
/thrift-3.4.0/tutorial/netstd/Server/ |
D | Program.cs | 444 Key = logid, in calculate() 467 Key = key, in getStruct()
|
/thrift-3.4.0/lib/netstd/Thrift/Transport/Client/ |
D | THttpTransport.cs | 211 httpClient.DefaultRequestHeaders.Add(item.Key, item.Value); in CreateClient()
|
/thrift-3.4.0/test/netstd/Client/ |
D | TestClient.cs | 695 …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/ |
D | DelphiServer.dpr | 123 entry.Key := logid;
|
/thrift-3.4.0/tutorial/dart/client/web/ |
D | client.dart | 238 ..text = "Struct Key:"
|
/thrift-3.4.0/tutorial/netstd/ |
D | README.md | 248 log.Key = logid
|
/thrift-3.4.0/ |
D | CHANGES.md | 3838 THRIFT-884 HTML HTML Generator: add Key attribute to the Data Types Tables (Roger…
|