/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/chromium_org/content/public/app/ |
content_main_delegate.cc | 48 ScopedVector<ZygoteForkDelegate>* delegates) {
|
content_main_delegate.h | 71 // specify one or more zygote delegates if it wishes by storing them in 72 // |*delegates|. 73 virtual void ZygoteStarting(ScopedVector<ZygoteForkDelegate>* delegates);
|
/external/chromium_org/extensions/shell/app/ |
shell_main_delegate.h | 35 ScopedVector<content::ZygoteForkDelegate>* delegates) OVERRIDE;
|
shell_main_delegate.cc | 92 ScopedVector<content::ZygoteForkDelegate>* delegates) { 94 nacl::AddNaClZygoteForkDelegates(delegates);
|
/external/chromium_org/chrome/app/ |
chrome_main_delegate.h | 43 ScopedVector<content::ZygoteForkDelegate>* delegates) OVERRIDE;
|
chrome_main_delegate.cc | [all...] |
/external/chromium_org/components/nacl/zygote/ |
nacl_fork_delegate_linux.h | 25 // Appends any ZygoteForkDelegate instances needed by NaCl to |*delegates|. 27 ScopedVector<content::ZygoteForkDelegate>* delegates);
|
nacl_fork_delegate_linux.cc | 131 ScopedVector<content::ZygoteForkDelegate>* delegates) { 132 delegates->push_back(new NaClForkDelegate(false /* nonsfi_mode */)); 133 delegates->push_back(new NaClForkDelegate(true /* nonsfi_mode */));
|
/external/chromium_org/content/browser/appcache/ |
appcache_storage.h | 205 // Helper to call a collection of delegates. 206 #define FOR_EACH_DELEGATE(delegates, func_and_args) \ 208 for (DelegateReferenceVector::iterator it = delegates.begin(); \ 209 it != delegates.end(); ++it) { \
|
appcache_storage_impl.h | 132 DelegateReferenceVector* delegates,
|
appcache_storage_impl.cc | [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...] |
/external/chromium_org/third_party/libxml/src/ |
catalog.c | 1695 const xmlChar *delegates[MAX_DELEGATE]; local 1772 const xmlChar *delegates[MAX_DELEGATE]; local 1925 const xmlChar *delegates[MAX_DELEGATE]; local [all...] |
/external/libxml2/ |
catalog.c | 1691 const xmlChar *delegates[MAX_DELEGATE]; local 1768 const xmlChar *delegates[MAX_DELEGATE]; local 1921 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/chromium_org/v8/test/mjsunit/ |
debug-receiver.js | 41 // Debug event listener which delegates. Exceptions have to be
|
/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/chromium_org/v8/test/mjsunit/bugs/harmony/ |
debug-blockscopes.js | 45 // Debug event listener which delegates.
|
/external/chromium_org/chrome/browser/sync/sessions/ |
sessions_sync_manager_unittest.cc | 119 const std::set<SyncedWindowDelegate*>& delegates) 120 : delegates_(delegates) {} 873 std::set<SyncedWindowDelegate*> delegates; local 874 delegates.insert(&window_override); 876 new TestSyncedWindowDelegatesGetter(delegates)); [all...] |
/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...] |