Home
last modified time | relevance | path

Searched refs:Dict (Results 1 – 25 of 31) sorted by relevance

12

/external/clang/test/SemaObjCXX/
Dobjc-container-subscripting.mm88 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/
DAntlr.Runtime.Collections.pas144 …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))
DAntlr.Runtime.pas4436 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/
Dfixcid.py245 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/
DSetup.py31 from Dict import *
/external/autotest/client/common_lib/
Dcontrol_data.py305 assert(expr.__class__ == compiler.ast.Dict)
341 if expr.__class__ == compiler.ast.Dict:
/external/python/cpython2/Lib/
Dplistlib.py322 class Dict(_InternalDict): class
328 super(Dict, self).__init__(**kwargs)
Dast.py61 elif isinstance(node, Dict):
/external/python/cpython2/Tools/compiler/
Dast.txt52 Dict: items!
/external/markdown/docs/extensions/
DMeta-Data.txt45 The meta-data is made available as a python Dict in the `Meta` attribute of an
/external/fmtlib/support/
Ddocopt.py485 class Dict(dict): class
580 return Dict((a.name, a.value) for a in (pattern.flat() + collected))
/external/python/cpython2/Parser/
DPython.asdl58 | Dict(expr* keys, expr* values)
/external/python/cpython2/Lib/test/
Dtest_dict.py698 class Dict(dict): class
702 type2test = Dict
Dtest_operator.py225 class Dict(dict): pass class
226 self.assertFalse(operator.isSequenceType(Dict()))
/external/python/cpython2/Include/
DPython-ast.h226 } Dict; member
464 #define Dict(a0, a1, a2, a3, a4) _Py_Dict(a0, a1, a2, a3, a4) macro
/external/python/cpython2/Doc/library/
Dweakref.rst71 class Dict(dict):
74 obj = Dict(red=1, green=2, blue=3) # this object is weak referenceable
/external/python/cpython2/Doc/howto/
Ddescriptor.rst409 class Dict(object):
421 >>> Dict.fromkeys('abracadabra')
/external/libmojo/third_party/jinja2/
Dnodes.py493 class Dict(Literal): class
Dext.py383 node = nodes.Mod(node, nodes.Dict([
Dparser.py658 return nodes.Dict(items, lineno=token.lineno)
/external/python/cpython2/Python/
Dsymtable.c1217 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()
DPython-ast.c1616 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()
Dcompile.c2985 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/
Dtransformer.py753 return Dict((), lineno=nodelist[0][2])
1238 return Dict(items, lineno=items[0][0].lineno)
/external/python/cpython2/PC/os2emx/
Dpython27.def715 "Dict"

12