/external/libmojo/third_party/jinja2/ |
environment.py | 597 body = [nodes.Assign(nodes.Name('result', 'store'), expr, lineno=1)] [all...] |
nodes.py | 345 class Assign(Stmt): 368 """Check if it's possible to assign something to this node.""" 820 compiler so there is no need to assign them to local variables. 874 Assign(Name('foo', ctx='store'),
|
parser.py | 169 """Parse an assign statement.""" 172 self.stream.expect('assign') 174 return nodes.Assign(target, expr, lineno=lineno) 313 if self.stream.skip_if('assign'): 376 self.fail('can\'t assign to %r' % target.__class__. 774 self.stream.look().type == 'assign': [all...] |
/external/swiftshader/third_party/subzero/src/ |
IceTargetLowering.cpp | 420 case Inst::Assign: [all...] |
IceTargetLoweringMIPS32.cpp | [all...] |
/external/v8/testing/gmock/include/gmock/ |
gmock-actions.h | 393 "assign the default action to an Action variable and use " 755 // Implements the Assign action to set a given pointer referent to a [all...] |
/prebuilts/go/darwin-x86/src/database/sql/ |
fakedb_test.go | 805 // Assign value from argument placeholder name. 914 // Assign arg value from placeholder name.
|
/prebuilts/go/darwin-x86/src/go/ast/ |
ast.go | 673 Assign Stmt // x := y.(type) or y.(type) 705 Tok token.Token // ILLEGAL if Key == nil, ASSIGN, DEFINE 851 Assign token.Pos // position of '=', if any
|
/prebuilts/go/darwin-x86/src/vendor/golang_org/x/text/unicode/bidi/ |
core.go | 175 // Assign appropriate levels to 'hide' LREs, RLEs, LROs, RLOs, PDFs, and 438 // assign level, sos and eos 806 // Assign level information to characters removed by rule X9. This is for
|
/prebuilts/go/linux-x86/src/database/sql/ |
fakedb_test.go | 805 // Assign value from argument placeholder name. 914 // Assign arg value from placeholder name.
|
/prebuilts/go/linux-x86/src/go/ast/ |
ast.go | 673 Assign Stmt // x := y.(type) or y.(type) 705 Tok token.Token // ILLEGAL if Key == nil, ASSIGN, DEFINE 851 Assign token.Pos // position of '=', if any
|
/prebuilts/go/linux-x86/src/vendor/golang_org/x/text/unicode/bidi/ |
core.go | 175 // Assign appropriate levels to 'hide' LREs, RLEs, LROs, RLOs, PDFs, and 438 // assign level, sos and eos 806 // Assign level information to characters removed by rule X9. This is for
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/ |
Python-ast.c | 699 Assign_type = make_type("Assign", stmt_type, Assign_fields, 2);
[all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/ |
Python-ast.c | 682 Assign_type = make_type("Assign", stmt_type, Assign_fields, 2);
[all...] |
/external/python/cpython2/Python/ |
Python-ast.c | 699 Assign_type = make_type("Assign", stmt_type, Assign_fields, 2); [all...] |
/art/runtime/ |
class_linker_test.cc | [all...] |
/art/runtime/dex/ |
dex_file_annotations.cc | [all...] |
/build/blueprint/ |
context.go | [all...] |
/prebuilts/go/darwin-x86/src/cmd/cover/ |
cover.go | 285 ast.Walk(f, n.Assign)
|
/prebuilts/go/darwin-x86/src/cmd/fix/ |
typecheck.go | 144 // assign maps type strings to lists of expressions that were assigned 146 func typecheck(cfg *TypeConfig, f *ast.File) (typeof map[interface{}]string, assign map[string][]interface{}) { 148 assign = make(map[string][]interface{}) 220 typecheck1(cfg, fn.Type, typeof, assign) 285 typecheck1(cfg1, f, typeof, assign) 286 return typeof, assign 300 func typecheck1(cfg *TypeConfig, f interface{}, typeof map[interface{}]string, assign map[string][]interface{}) { 306 assign[typ] = append(assign[typ], n) 653 typecheck1(cfg, n.Body, typeof, assign) [all...] |
/prebuilts/go/darwin-x86/src/go/types/ |
resolver.go | 389 check.declarePkgObj(s.Name, obj, &declInfo{file: fileScope, typ: s.Type, alias: s.Assign.IsValid()})
|
/prebuilts/go/linux-x86/src/cmd/cover/ |
cover.go | 285 ast.Walk(f, n.Assign)
|
/prebuilts/go/linux-x86/src/cmd/fix/ |
typecheck.go | 144 // assign maps type strings to lists of expressions that were assigned 146 func typecheck(cfg *TypeConfig, f *ast.File) (typeof map[interface{}]string, assign map[string][]interface{}) { 148 assign = make(map[string][]interface{}) 220 typecheck1(cfg, fn.Type, typeof, assign) 285 typecheck1(cfg1, f, typeof, assign) 286 return typeof, assign 300 func typecheck1(cfg *TypeConfig, f interface{}, typeof map[interface{}]string, assign map[string][]interface{}) { 306 assign[typ] = append(assign[typ], n) 653 typecheck1(cfg, n.Body, typeof, assign) [all...] |
/prebuilts/go/linux-x86/src/go/types/ |
resolver.go | 389 check.declarePkgObj(s.Name, obj, &declInfo{file: fileScope, typ: s.Type, alias: s.Assign.IsValid()})
|
/art/patchoat/ |
patchoat.cc | 845 roots[i]->Assign(patch_oat_->RelocatedAddressOfPointer(roots[i]->AsMirrorPtr())); [all...] |