HomeSort by relevance Sort by last modified time
    Searched refs:targs (Results 1 - 17 of 17) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
atexit.py 22 func, targs, kargs = _exithandlers.pop()
24 func(*targs, **kargs)
37 def register(func, *targs, **kargs):
41 targs - optional arguments to pass to func
46 _exithandlers.append((func, targs, kargs))
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
atexit.py 22 func, targs, kargs = _exithandlers.pop()
24 func(*targs, **kargs)
37 def register(func, *targs, **kargs):
41 targs - optional arguments to pass to func
46 _exithandlers.append((func, targs, kargs))
  /external/python/cpython2/Lib/
atexit.py 22 func, targs, kargs = _exithandlers.pop()
24 func(*targs, **kargs)
37 def register(func, *targs, **kargs):
41 targs - optional arguments to pass to func
46 _exithandlers.append((func, targs, kargs))
  /external/turbine/java/com/google/turbine/type/
Type.java 118 if (!c.targs().isEmpty()) {
120 Joiner.on(',').appendTo(sb, c.targs());
133 ClassSymbol sym, ImmutableList<Type> targs, ImmutableList<AnnoInfo> annos) {
134 return new AutoValue_Type_ClassTy_SimpleClassTy(sym, targs, annos);
141 public abstract ImmutableList<Type> targs(); method in class:Type.ClassTy.SimpleClassTy
  /external/turbine/java/com/google/turbine/types/
Canonicalize.java 146 if (s.targs().isEmpty() && !info.typeParameters().isEmpty()) {
179 ImmutableList.Builder<Type> targs = ImmutableList.builder(); local
181 targs.add(Type.TyVar.create(p, ImmutableList.of()));
183 return ClassTy.SimpleClassTy.create(owner, targs.build(), ImmutableList.of());
239 if (simpleType.targs().isEmpty()) {
247 Verify.verify(symbols.size() == simpleType.targs().size());
248 Iterator<Type> typeArguments = simpleType.targs().iterator();
326 for (Type arg : simple.targs()) {
350 args.add(SimpleClassTy.create(s.sym(), canonicalize(s.targs(), base), s.annos()));
356 private ImmutableList<Type> canonicalize(ImmutableList<Type> targs, ClassSymbol base)
    [all...]
Erasure.java 70 if (c.targs().isEmpty()) {
  /external/turbine/javatests/com/google/turbine/binder/bytecode/
BytecodeBoundClassTest.java 65 assertThat(getLast(((ClassTy) rawInterfaces.interfaceTypes().get(0)).classes()).targs())
71 assertThat(getLast(((ClassTy) genericInterfaces.interfaceTypes().get(0)).classes()).targs())
76 .targs()
  /external/turbine/java/com/google/turbine/lower/
LowerSignature.java 92 while (curr.targs().isEmpty() && it.hasNext()) {
117 for (Type targ : part.targs()) {
257 if (!s.targs().isEmpty()) {
Lower.java 791 for (Type a : simple.targs()) {
  /external/turbine/javatests/com/google/turbine/binder/
ClassPathBinderTest.java 109 assertThat(getLast(listInterface.classes()).targs()).hasSize(1);
  /external/turbine/java/com/google/turbine/binder/
ConstBinder.java 341 c.sym(), bindTypes(c.targs()), constEvaluator.evaluateAnnotations(c.annos())));
DisambiguateTypeAnnotations.java 208 SimpleClassTy.create(base.sym(), base.targs(), appendAnnotations(base.annos(), extra));
TypeBinder.java 599 private ImmutableList<Type> bindTyArgs(CompoundScope scope, ImmutableList<Tree.Type> targs) {
601 for (Tree.Type ty : targs) {
  /external/antlr/runtime/Ruby/lib/antlr3/
token.rb 363 token_class.new( *args ) do |*targs|
364 yield( *targs )
  /external/clang/lib/AST/
Expr.cpp     [all...]
  /external/guice/extensions/struts2/lib/
javassist.jar 
  /external/clang/include/clang/AST/
Expr.h     [all...]

Completed in 969 milliseconds