/external/clang/test/SemaObjCXX/ |
D | objc-container-subscripting.mm | 88 NSMutableDictionary *Dict; 90 Dict[toId] = toBlock; 92 Dict[toBlock] = toBlock; 94 Dict[toBlock] = Dict[toId] = Dict[toBlock]; 98 return Dict[toBlock];
|
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/ |
D | Antlr.Runtime.Collections.pas | 144 …class function DictionaryToString(const Dict: IDictionary<Integer, IList<IANTLRInterface>>): Strin… 336 const Dict: IDictionary<Integer, IList<IANTLRInterface>>): String; in TCollectionUtils.DictionaryToString() 344 if Assigned(Dict) then 348 for E in Dict do 371 Dict: IDictionary<Integer, IList<IANTLRInterface>>; 387 if Supports(Element, IDictionary<Integer, IList<IANTLRInterface>>, Dict) then 388 SB.Append(DictionaryToString(Dict))
|
D | Antlr.Runtime.pas | 4436 Dict: IDictionary<Integer, Integer>; 4438 Dict := FState.RuleMemo[RuleIndex]; 4439 if (Dict = nil) then 4441 Dict := TDictionary<Integer, Integer>.Create; 4442 FState.RuleMemo[RuleIndex] := Dict; 4444 if (not Dict.TryGetValue(RuleStartIndex, Result)) then 4520 Dict: IDictionary<Integer, Integer>; 4522 Dict := FState.RuleMemo[RuleIndex]; 4523 if Assigned(Dict) then 4529 Dict.AddOrSetValue(RuleStartIndex, StopTokenIndex);
|
/external/python/cpython2/Tools/scripts/ |
D | fixcid.py | 245 if found in Dict: 246 subst = Dict[found] 276 Dict = {} variable 309 if key in Dict: 311 err('%s:%r: warning: previous: %r\n' % (substfile, lineno, Dict[key])) 312 Dict[key] = value
|
/external/python/cpython2/Tools/pybench/ |
D | Setup.py | 31 from Dict import *
|
/external/autotest/client/common_lib/ |
D | control_data.py | 305 assert(expr.__class__ == compiler.ast.Dict) 341 if expr.__class__ == compiler.ast.Dict:
|
/external/python/cpython2/Lib/ |
D | plistlib.py | 322 class Dict(_InternalDict): class 328 super(Dict, self).__init__(**kwargs)
|
D | ast.py | 61 elif isinstance(node, Dict):
|
/external/python/cpython2/Tools/compiler/ |
D | ast.txt | 52 Dict: items!
|
/external/markdown/docs/extensions/ |
D | Meta-Data.txt | 45 The meta-data is made available as a python Dict in the `Meta` attribute of an
|
/external/fmtlib/support/ |
D | docopt.py | 485 class Dict(dict): class 580 return Dict((a.name, a.value) for a in (pattern.flat() + collected))
|
/external/python/cpython2/Parser/ |
D | Python.asdl | 58 | Dict(expr* keys, expr* values)
|
/external/python/cpython2/Lib/test/ |
D | test_dict.py | 698 class Dict(dict): class 702 type2test = Dict
|
D | test_operator.py | 225 class Dict(dict): pass class 226 self.assertFalse(operator.isSequenceType(Dict()))
|
/external/python/cpython2/Include/ |
D | Python-ast.h | 226 } Dict; member 464 #define Dict(a0, a1, a2, a3, a4) _Py_Dict(a0, a1, a2, a3, a4) macro
|
/external/python/cpython2/Doc/library/ |
D | weakref.rst | 71 class Dict(dict): 74 obj = Dict(red=1, green=2, blue=3) # this object is weak referenceable
|
/external/python/cpython2/Doc/howto/ |
D | descriptor.rst | 409 class Dict(object): 421 >>> Dict.fromkeys('abracadabra')
|
/external/libmojo/third_party/jinja2/ |
D | nodes.py | 493 class Dict(Literal): class
|
D | ext.py | 383 node = nodes.Mod(node, nodes.Dict([
|
D | parser.py | 658 return nodes.Dict(items, lineno=token.lineno)
|
/external/python/cpython2/Python/ |
D | symtable.c | 1217 VISIT_SEQ(st, expr, e->v.Dict.keys); in symtable_visit_expr() 1218 VISIT_SEQ(st, expr, e->v.Dict.values); in symtable_visit_expr()
|
D | Python-ast.c | 1616 Dict(asdl_seq * keys, asdl_seq * values, int lineno, int col_offset, PyArena in Dict() function 1624 p->v.Dict.keys = keys; in Dict() 1625 p->v.Dict.values = values; in Dict() 2659 value = ast2obj_list(o->v.Dict.keys, ast2obj_expr); in ast2obj_expr() 2664 value = ast2obj_list(o->v.Dict.values, ast2obj_expr); in ast2obj_expr() 5120 *out = Dict(keys, values, lineno, col_offset, arena); in obj2ast_expr()
|
D | compile.c | 2985 n = asdl_seq_LEN(e->v.Dict.values); in compiler_visit_expr() 2989 (expr_ty)asdl_seq_GET(e->v.Dict.values, i)); in compiler_visit_expr() 2991 (expr_ty)asdl_seq_GET(e->v.Dict.keys, i)); in compiler_visit_expr()
|
/external/python/cpython2/Lib/compiler/ |
D | transformer.py | 753 return Dict((), lineno=nodelist[0][2]) 1238 return Dict(items, lineno=items[0][0].lineno)
|
/external/python/cpython2/PC/os2emx/ |
D | python27.def | 715 "Dict"
|