Home
last modified time | relevance | path

Searched refs:customizer (Results 1 – 3 of 3) sorted by relevance

/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
DKeyFactory.java108 public static KeyFactory create(Class keyInterface, Customizer customizer) { in create() argument
109 return create(keyInterface.getClassLoader(), keyInterface, customizer); in create()
112 public static KeyFactory create(ClassLoader loader, Class keyInterface, Customizer customizer) { in create() argument
115 gen.setCustomizer(customizer); in create()
123 private Customizer customizer; field in KeyFactory.Generator
135 public void setCustomizer(Customizer customizer) { in setCustomizer() argument
136 this.customizer = customizer; in setCustomizer()
210 EmitUtils.hash_code(e, parameterTypes[i], hm, customizer); in generateClass()
227 EmitUtils.not_equals(e, parameterTypes[i], fail, customizer); in generateClass()
248 … EmitUtils.append_string(e, parameterTypes[i], EmitUtils.DEFAULT_DELIMITERS, customizer); in generateClass()
DEmitUtils.java390 public static void hash_code(CodeEmitter e, Type type, int multiplier, Customizer customizer) { in hash_code() argument
392 hash_array(e, type, multiplier, customizer); in hash_code()
401 hash_object(e, type, customizer); in hash_code()
407 …oid hash_array(final CodeEmitter e, Type type, final int multiplier, final Customizer customizer) { in hash_array() argument
414 hash_code(e, type, multiplier, customizer); in hash_array()
423 private static void hash_object(CodeEmitter e, Type type, Customizer customizer) { in hash_object() argument
429 if (customizer != null) { in hash_object()
430 customizer.customize(e, type); in hash_object()
480 …id not_equals(final CodeEmitter e, Type type, final Label notEquals, final Customizer customizer) { in not_equals() argument
483 not_equals_helper(e, type, notEquals, customizer, this); in not_equals()
[all …]
/external/chromium_org/chrome/installer/util/
Dhtml_dialog_impl.cc186 Customizer customizer; in ShowModal() local
187 HTMLDialog::DialogResult dr = dialog_->ShowModal(NULL, &customizer); in ShowModal()