/external/javassist/src/main/javassist/util/proxy/ |
package.html | 3 Dynamic proxy (similar to <code>Enhancer</code> of <a href="http://cglib.sourceforge.net/">cglib</a>).
|
/external/jacoco/org.jacoco.ant/src/org/jacoco/ant/ |
CoverageTask.java | 66 final TaskEnhancer enhancer = findEnhancerForTask(subTaskTypeName); local 67 if (enhancer == null) { 75 enhancer.enhanceTask(task); 82 for (final TaskEnhancer enhancer : taskEnhancers) { 83 if (enhancer.supportsTask(taskName)) { 84 return enhancer; 106 * Task enhancer for TestNG. TestNG task always run in a forked VM and has 123 * Basic task enhancer that can handle all 'java like' tasks. That is, tasks 172 * The task enhancer is responsible for potentially reconfiguring a task to 179 * @return <code>true</code> if this enhancer is capable of enhancin [all...] |
/external/guice/core/src/com/google/inject/internal/ |
ProxyFactory.java | 31 import net.sf.cglib.proxy.Enhancer; 91 Enhancer.getMethods(declaringClass, null, methods); 172 // Create the proxied class. We're careful to ensure that all enhancer state is not-specific 175 Enhancer enhancer = BytecodeGen.newEnhancer(declaringClass, visibility); local 176 enhancer.setCallbackFilter(new IndicesCallbackFilter(methods)); 177 enhancer.setCallbackTypes(callbackTypes); 178 return new ProxyConstructor<T>(enhancer, injectionPoint, callbacks, interceptors); 250 ProxyConstructor(Enhancer enhancer, InjectionPoint injectionPoint, Callback[] callbacks [all...] |
BytecodeGen.java | 36 * net.sf.cglib.reflect.FastClass faster reflection}, {@link net.sf.cglib.proxy.Enhancer method 81 = net.sf.cglib.proxy.Enhancer.class.getName().replaceFirst("\\.cglib\\..*$", ".cglib"); 110 // we explicitly set the source here to "Enhancer" so that our jarjar renaming 111 // to $Enhancer doesn't leak into the class names. if we did not do this, 114 return super.getClassName(prefix, "Enhancer", key, names); 207 public static net.sf.cglib.proxy.Enhancer newEnhancer(Class<?> type, Visibility visibility) { 208 net.sf.cglib.proxy.Enhancer enhancer = new net.sf.cglib.proxy.Enhancer(); local 209 enhancer.setSuperclass(type) [all...] |
/external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/ |
init_decode.h | 31 int use_enhancer /* (i) 1 to use enhancer 32 0 to run without enhancer */
|
defines.h | 66 /* enhancer */ 192 /* pitch lag estimated in enhancer and used in PLC */ 213 /* enhancer state information */
|
enhancer_interface.h | 25 * interface for enhancer
|
decode.c | 137 if ((*iLBCdec_inst).use_enhancer == 1) { /* Enhancer activated */ 157 /* Enhancer has 40 samples delay */ 172 /* Enhancer has 80 samples delay */ 190 } else { /* Enhancer not activated */ 193 /* Find last lag (since the enhancer is not called to give this info) */
|
ilbc.gypi | 45 'enhancer.c', 115 'enhancer.h',
|
init_decode.c | 29 int use_enhancer) { /* (i) 1: use enhancer, 0: no enhancer */
|
constants.h | 80 /* enhancer definitions */
|
enhancer_interface.c | 24 #include "enhancer.h" 30 * interface for enhancer 80 /* Copy in the new data into the enhancer buffer */ 100 /* Update the pitch prediction for each enhancer block, move the old ones */
|
/frameworks/av/media/libeffects/lvm/lib/StereoWidening/src/ |
LVCS_Headphone_Coeffs.h | 24 /* The Stereo Enhancer */ 28 /* Stereo Enhancer coefficients for 8000 Hz sample rate, scaled with 0.161258 */ 42 /* Stereo Enhancer coefficients for 11025Hz sample rate, scaled with 0.162943 */ 56 /* Stereo Enhancer coefficients for 12000Hz sample rate, scaled with 0.162191 */ 70 /* Stereo Enhancer coefficients for 16000Hz sample rate, scaled with 0.162371 */ 84 /* Stereo Enhancer coefficients for 22050Hz sample rate, scaled with 0.160781 */ 98 /* Stereo Enhancer coefficients for 24000Hz sample rate, scaled with 0.161882 */ 112 /* Stereo Enhancer coefficients for 32000Hz sample rate, scaled with 0.160322 */ 126 /* Stereo Enhancer coefficients for 44100Hz sample rate, scaled with 0.163834 */ 140 /* Stereo Enhancer coefficients for 48000Hz sample rate, scaled with 0.164402 * [all...] |
LVCS_StereoEnhancer.h | 43 /* Stereo enhancer structure */
|
LVCS_Private.h | 42 #include "LVCS_StereoEnhancer.h" /* Stereo enhancer module definitions */ 131 LVCS_StereoEnhancer_t StereoEnhancer; /* Stereo enhancer configuration */
|
LVCS_StereoEnhancer.c | 294 * Check if the Stereo Enhancer is enabled 350 * The stereo enhancer is disabled so just copy the data 372 * Check if the Stereo Enhancer is enabled 426 * The stereo enhancer is disabled so just copy the data
|
LVCS_Tables.h | 35 /* Stereo Enhancer coefficient constant tables */
|
LVCS_Process.c | 47 /* The Stereo Enhancer, Reverb and Equaliser blocks are each configured to have */ 101 * Call the stereo enhancer 168 * Call the stereo enhancer
|
/external/speex/include/speex/ |
speex_callbacks.h | 122 /** Standard handler for enhancer request (Turn enhancer on/off, no questions asked) */
|
/prebuilts/tools/common/cglib/ |
cglib-2.2.3.jar | |
cglib-docs-2.2.3.jar | |
/external/webrtc/webrtc/modules/audio_processing/test/ |
audioproc_float.cc | 63 DEFINE_bool(ie, false, "Enable intelligibility enhancer."); 99 "FIXME(ajm): The intelligibility enhancer output is not dumped.\n");
|
/hardware/interfaces/audio/effect/2.0/vts/functional/ |
VtsHalAudioEffectV2_0TargetTest.cpp | 157 // Loudness Enhancer effect is required by CDD, but only the type is fixed. 797 enhancer = ILoudnessEnhancerEffect::castFrom(effect); 798 ASSERT_NE(nullptr, enhancer.get()); 804 sp<ILoudnessEnhancerEffect> enhancer; member in class:LoudnessEnhancerAudioEffectHidlTest 809 "Verify that manipulating the target gain works for Loudness Enhancer " 812 Return<Result> ret = enhancer->setTargetGain(gain); 817 Return<void> ret2 = enhancer->getTargetGain([&](Result r, int32_t g) {
|
/external/sonivox/arm-wt-22k/lib_src/ |
ARM_synth_constants_gnu.inc | 135 @ enhancer
|
/external/webrtc/webrtc/modules/audio_processing/intelligibility/ |
intelligibility_enhancer_unittest.cc | 12 // Unit tests for intelligibility enhancer. 76 // Enhancer initialization parameters.
|