HomeSort by relevance Sort by last modified time
    Searched refs:identifiers (Results 1 - 25 of 275) sorted by null

1 2 3 4 5 6 7 8 91011

  /prebuilts/go/darwin-x86/test/fixedbugs/
bug464.go 8 // for identifiers wrongly used as types.
issue11359.go 7 // identifiers beginning with non-ASCII digits were incorrectly accepted.
bug085.go 23 universe scope (contains predeclared identifiers int, float32, int32, len, etc.)
  /prebuilts/go/linux-x86/test/fixedbugs/
bug464.go 8 // for identifiers wrongly used as types.
issue11359.go 7 // identifiers beginning with non-ASCII digits were incorrectly accepted.
bug085.go 23 universe scope (contains predeclared identifiers int, float32, int32, len, etc.)
  /external/libmojo/third_party/jinja2/
compiler.py 101 class Identifiers(object):
102 """Tracks the status of identifiers in frames."""
143 self.identifiers = Identifiers()
173 self.identifiers.declared.update(
174 parent.identifiers.declared |
175 parent.identifiers.declared_parameter |
178 self.identifiers.outer_undeclared.update(
179 parent.identifiers.undeclared -
180 self.identifiers.declare
    [all...]
meta.py 29 """Remember all undeclared identifiers."""
30 self.undeclared_identifiers.update(frame.identifiers.undeclared)
  /external/antlr/antlr-3.4/runtime/Python/tests/
t013parser.py 18 assert parser.identifiers == ['foobar']
  /external/guava/guava/src/com/google/common/eventbus/
AnnotatedSubscriberFinder.java 115 Map<MethodIdentifier, Method> identifiers = Maps.newHashMap(); local
128 if (!identifiers.containsKey(ident)) {
129 identifiers.put(ident, superClazzMethod);
134 return ImmutableList.copyOf(identifiers.values());
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
basic.rb 8 grammar Identifiers;
12 @identifiers = []
17 attr_reader :reported_errors, :identifiers
20 @identifiers << name
38 lexer = Identifiers::Lexer.new( input )
40 parser = Identifiers::Parser.new( tokens )
45 parser.identifiers.should == %w(blah_de_blah)
51 lexer = Identifiers::Lexer.new( '' )
52 parser = Identifiers::Parser.new( lexer )
64 parser = Identifiers::Parser.new( 'blah_de_blah', :file => 'blah.txt'
    [all...]
  /prebuilts/go/darwin-x86/misc/cgo/test/issue9026/
issue9026.go 4 // per-package counter used to create fresh identifiers.
  /prebuilts/go/darwin-x86/test/
rename1.go 7 // Verify that renamed identifiers no longer have their old meaning.
  /prebuilts/go/linux-x86/misc/cgo/test/issue9026/
issue9026.go 4 // per-package counter used to create fresh identifiers.
  /prebuilts/go/linux-x86/test/
rename1.go 7 // Verify that renamed identifiers no longer have their old meaning.
  /prebuilts/go/darwin-x86/src/syscall/
mkpost.go 38 // Replace padding fields inserted by cgo with blank identifiers.
45 // Replace other unwanted fields with blank identifiers.
  /prebuilts/go/linux-x86/src/syscall/
mkpost.go 38 // Replace padding fields inserted by cgo with blank identifiers.
45 // Replace other unwanted fields with blank identifiers.
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic54x/
subsym.s 29 ; both args must be identifiers
  /prebuilts/go/darwin-x86/src/go/ast/
resolve.go 66 // unresolved identifiers across files and updates each file's Unresolved list
68 // used to resolve identifiers not declared in any of the package files. Any
69 // remaining unresolved identifiers are reported as undeclared. If the files
100 // complete file scopes with imports and resolve identifiers
151 // resolve identifiers
155 // with missing imports, identifiers might get resolved
  /prebuilts/go/linux-x86/src/go/ast/
resolve.go 66 // unresolved identifiers across files and updates each file's Unresolved list
68 // used to resolve identifiers not declared in any of the package files. Any
69 // remaining unresolved identifiers are reported as undeclared. If the files
100 // complete file scopes with imports and resolve identifiers
151 // resolve identifiers
155 // with missing imports, identifiers might get resolved
  /prebuilts/go/darwin-x86/src/go/doc/
example.go 41 // identifiers from other packages (or predeclared identifiers, such as
173 // Find unresolved identifiers and uses of top-level declarations.
207 // Remove predeclared identifiers from unresolved list.
214 // Use unresolved identifiers to determine the imports used by this
242 // If there are other unresolved identifiers, give up because this
  /prebuilts/go/linux-x86/src/go/doc/
example.go 41 // identifiers from other packages (or predeclared identifiers, such as
173 // Find unresolved identifiers and uses of top-level declarations.
207 // Remove predeclared identifiers from unresolved list.
214 // Use unresolved identifiers to determine the imports used by this
242 // If there are other unresolved identifiers, give up because this
  /external/chromium-trace/catapult/common/eslint/rules/
catapult-camelcase.js 7 * @fileoverview Rule to flag non-camelcased identifiers
85 * private/protected identifiers, strip them.
  /prebuilts/go/darwin-x86/src/cmd/gofmt/
doc.go 48 In the pattern, single-character lowercase identifiers serve as
50 will be substituted for the same identifiers in the replacement.
  /prebuilts/go/linux-x86/src/cmd/gofmt/
doc.go 48 In the pattern, single-character lowercase identifiers serve as
50 will be substituted for the same identifiers in the replacement.

Completed in 1950 milliseconds

1 2 3 4 5 6 7 8 91011