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

1 2 3

  /frameworks/base/packages/StatementService/src/com/android/statementservice/retriever/
ParsedStatement.java 29 public ParsedStatement(List<Statement> statements, List<String> delegates) {
31 this.mDelegates = delegates;
StatementParser.java 44 List<String> delegates = new ArrayList<String>(); local
59 delegates.addAll(result.getDelegates());
63 return new ParsedStatement(statements, delegates);
83 List<String> delegates = new ArrayList<String>(); local
88 delegates.add(statement.optString(Utils.DELEGATE_FIELD_DELEGATE));
109 return new ParsedStatement(statements, delegates);
DirectStatementRetriever.java 185 List<String> delegates = new ArrayList<String>(); local
199 delegates.addAll(result.getDelegates());
202 for (String delegate : delegates) {
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/proxy/
Mixin.java 48 abstract public Mixin newInstance(Object[] delegates);
56 public static Mixin create(Object[] delegates) {
58 gen.setDelegates(delegates);
68 public static Mixin create(Class[] interfaces, Object[] delegates) {
71 gen.setDelegates(delegates);
99 private Object[] delegates; field in class:Mixin.Generator
128 public void setDelegates(Object[] delegates) {
129 this.delegates = delegates;
133 if (classes == null && delegates == null)
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
CompositeGrammar.java 41 * Rules defined in delegates are "inherited" like multi-inheritance
192 /** Get list of all delegates from all grammars in the delegate subtree of g.
199 return null; // no delegates
220 /** Get delegates below direct delegates of g */
223 List<Grammar> delegates = getDelegates(g); local
224 delegates.removeAll(direct);
225 return delegates;
248 * delegates minus rules overridden in grammar g.
251 * one that has to have a complete grammar rule interface. The delegates
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/
Tool.java 461 // (i.e., root and all delegates)
591 /** Get a grammar mentioned on the command-line and any delegates */
597 // create the necessary composite in case it's got delegates; even
634 * Create NFA for any delegates first. Once all NFA are created,
638 * root grammar. DFA and code gen for delegates comes next.
661 List<Grammar> delegates = grammar.getDirectDelegates(); local
662 for (int i = 0; delegates != null && i < delegates.size(); i++) {
663 Grammar delegate = (Grammar) delegates.get(i);
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/internal/net/www/protocol/https/
HttpsURLConnectionTest.java 821 private LinkedList<Dispatcher> delegates = new LinkedList<Dispatcher>(); field in class:HttpsURLConnectionTest.DelegatingDispatcher
    [all...]
  /external/libxml2/
catalog.c 1696 const xmlChar *delegates[MAX_DELEGATE]; local
1773 const xmlChar *delegates[MAX_DELEGATE]; local
1926 const xmlChar *delegates[MAX_DELEGATE]; local
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Java/
Java.stg 91 // delegates
92 <grammar.delegates:
99 return new <superClass>[] {<grammar.delegates: {g|<g:delegateName()>}; separator = ", ">};
212 // delegates
213 <grammar.delegates: {g|public <g.recognizerName> <g:delegateName()>;}; separator="\n">
215 return new <superClass>[] {<grammar.delegates: {g|<g:delegateName()>}; separator = ", ">};
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Python/
Python.stg 135 self.delegates = [<grammar.delegates: {g|self.<g:delegateName()>}; separator = ", ">]
273 self.delegates = [<grammar.delegates: {g|self.<g:delegateName()>}; separator = ", ">]
    [all...]
  /external/v8/test/mjsunit/
debug-receiver.js 41 // Debug event listener which delegates. Exceptions have to be
  /external/guava/guava/src/com/google/common/util/concurrent/
Futures.java     [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
DebugGrammarLexer.cs 35 // delegates
ProfileGrammarLexer.cs 35 // delegates
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Delphi/
Delphi.stg 137 // delegates
138 <grammar.delegates: {g|<g:delegateName()>: I<superClass>; {<g.recognizerName>}}; separator="\n">
170 <grammar.delegates: {g|<g.recognizerName>,}; separator="\n">
330 // delegates
331 <grammar.delegates: {g|<g:delegateName()>: I<superClass>; {<g.recognizerName>}}; separator="\n">
376 <grammar.delegates: {g|<g.recognizerName>,}; separator="\n">
    [all...]
  /external/v8/test/mjsunit/bugs/harmony/
debug-blockscopes.js 45 // Debug event listener which delegates.
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ActionScript/
ActionScript.stg 71 // delegates
72 <grammar.delegates:
181 // delegates
182 <grammar.delegates:
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Scala/
Scala.stg 79 // delegates
80 <grammar.delegates:
202 // delegates
203 <grammar.delegates:
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/C/
C.stg 642 // properly defined. Delegators and delegates (from import statements) are
648 <if(recognizer.grammar.delegates)>
651 <recognizer.grammar.delegates: {g|#include \<<g.recognizerName>.h>}; separator="\n">
714 <if(recognizer.grammar.delegates)>
715 <recognizer.grammar.delegates:
750 // such as delegators and delegates may wish to call.
    [all...]
  /external/v8/test/mjsunit/harmony/
debug-blockscopes.js 46 // Debug event listener which delegates.
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/
CSharp2.stg 112 // delegates
113 <grammar.delegates:
287 <if(grammar.delegates)>
288 // delegates
289 <grammar.delegates:
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/
CSharp3.stg 111 // delegates
112 <grammar.delegates:
282 <if(grammar.delegates)>
283 // delegates
284 <grammar.delegates:
    [all...]
  /prebuilts/devtools/tools/lib/
cglib-nodep-3.1.jar 
  /prebuilts/tools/common/cglib/
cglib-2.2.3.jar 
cglib-nodep-2.2.3.jar 

Completed in 549 milliseconds

1 2 3