Home
last modified time | relevance | path

Searched refs:intercept (Results 1 – 25 of 142) sorted by relevance

123456

/external/guice/lib/
Daopalliance.jar ... org/aopalliance/aop/ org/aopalliance/intercept/ org/aopalliance/aop/Advice.class ...
/external/guice/extensions/persist/lib/
Daopalliance.jar ... org/aopalliance/aop/ org/aopalliance/intercept/ org/aopalliance/aop/Advice.class ...
/external/skia/src/core/
DSkGlyphCache.cpp237 void SkGlyphCache::OffsetResults(const SkGlyph::Intercept* intercept, SkScalar scale, in OffsetResults() argument
242 *array++ = intercept->fInterval[index] * scale + xPos; in OffsetResults()
248 void SkGlyphCache::AddInterval(SkScalar val, SkGlyph::Intercept* intercept) { in AddInterval() argument
249 intercept->fInterval[0] = SkTMin(intercept->fInterval[0], val); in AddInterval()
250 intercept->fInterval[1] = SkTMax(intercept->fInterval[1], val); in AddInterval()
254 bool yAxis, SkGlyph::Intercept* intercept) { in AddPoints() argument
258 AddInterval(*(&pts[i].fX + yAxis), intercept); in AddPoints()
264 SkGlyph::Intercept* intercept) { in AddLine() argument
269 : pts[0].fX + t * (pts[1].fX - pts[0].fX), intercept); in AddLine()
274 SkGlyph::Intercept* intercept) { in AddQuad() argument
[all …]
DSkGlyphCache.h220 static void OffsetResults(const SkGlyph::Intercept* intercept, SkScalar scale,
222 static void AddInterval(SkScalar val, SkGlyph::Intercept* intercept);
224 bool yAxis, SkGlyph::Intercept* intercept);
226 SkGlyph::Intercept* intercept);
228 SkGlyph::Intercept* intercept);
230 SkGlyph::Intercept* intercept);
/external/skqp/src/core/
DSkGlyphCache.cpp237 void SkGlyphCache::OffsetResults(const SkGlyph::Intercept* intercept, SkScalar scale, in OffsetResults() argument
242 *array++ = intercept->fInterval[index] * scale + xPos; in OffsetResults()
248 void SkGlyphCache::AddInterval(SkScalar val, SkGlyph::Intercept* intercept) { in AddInterval() argument
249 intercept->fInterval[0] = SkTMin(intercept->fInterval[0], val); in AddInterval()
250 intercept->fInterval[1] = SkTMax(intercept->fInterval[1], val); in AddInterval()
254 bool yAxis, SkGlyph::Intercept* intercept) { in AddPoints() argument
258 AddInterval(*(&pts[i].fX + yAxis), intercept); in AddPoints()
264 SkGlyph::Intercept* intercept) { in AddLine() argument
269 : pts[0].fX + t * (pts[1].fX - pts[0].fX), intercept); in AddLine()
274 SkGlyph::Intercept* intercept) { in AddQuad() argument
[all …]
DSkGlyphCache.h220 static void OffsetResults(const SkGlyph::Intercept* intercept, SkScalar scale,
222 static void AddInterval(SkScalar val, SkGlyph::Intercept* intercept);
224 bool yAxis, SkGlyph::Intercept* intercept);
226 SkGlyph::Intercept* intercept);
228 SkGlyph::Intercept* intercept);
230 SkGlyph::Intercept* intercept);
/external/clang/tools/scan-build-py/
DREADME.md6 the clang static analyzer. Includes intercept-build tool, which logs
34 $ intercept-build <your build command>
47 Generally speaking, the `intercept-build` and `analyze-build` tools together
51 $ intercept-build <your build command> && analyze-build
61 2. Use special library to intercept compiler calls durring the build process.
63 Use `--intercept-first` flag to get this model.
65 3. Use compiler wrappers to intercept compiler calls durring the build process.
67 Use `--intercept-first` and `--override-compiler` flags together to get
73 you need to pass the compiler wrappers manually. eg.: `intercept-build
74 --override-compiler make CC=intercept-cc CXX=intercept-c++ all` where the
[all …]
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
DInterceptorTest.java69 @Override public Response intercept(Chain chain) throws IOException { in applicationInterceptorsCanShortCircuitResponses()
82 @Override public Response intercept(Chain chain) throws IOException { in networkInterceptorsCannotShortCircuitResponses()
112 @Override public Response intercept(Chain chain) throws IOException { in networkInterceptorsCannotCallProceedMultipleTimes()
136 @Override public Response intercept(Chain chain) throws IOException { in networkInterceptorsCannotChangeServerAddress()
164 @Override public Response intercept(Chain chain) throws IOException { in networkInterceptorsHaveConnectionAccess()
183 @Override public Response intercept(Chain chain) throws IOException { in networkInterceptorsObserveNetworkHeaders()
218 public Response intercept(Chain chain) throws IOException { in networkInterceptorsCanChangeRequestMethodFromGetToPost()
254 @Override public Response intercept(Chain chain) throws IOException { in rewriteRequestToServer()
292 @Override public Response intercept(Chain chain) throws IOException { in rewriteResponseFromServer()
323 @Override public Response intercept(Chain chain) throws IOException { in multipleInterceptors()
[all …]
/external/linux-kselftest/tools/testing/selftests/timers/
Dfreq-step.c119 static void regress(struct sample *samples, int n, double *intercept, in regress() argument
138 *intercept = (y_sum - *slope * x_sum) / n; in regress()
145 r = fabs(x * *slope + *intercept - y); in regress()
157 double intercept, slope, stddev1, max1, stddev2, max2; in run_test() local
181 regress(samples, SAMPLES, &intercept, &slope, &stddev1, &max1); in run_test()
188 regress(samples, SAMPLES / 2, &intercept, &slope, &stddev1, &max1); in run_test()
192 regress(samples + SAMPLES / 2, SAMPLES / 2, &intercept, &slope, in run_test()
/external/llvm/lib/Fuzzer/
DFuzzerFlags.def73 FUZZER_FLAG_INT(handle_segv, 1, "If 1, try to intercept SIGSEGV.")
74 FUZZER_FLAG_INT(handle_bus, 1, "If 1, try to intercept SIGSEGV.")
75 FUZZER_FLAG_INT(handle_abrt, 1, "If 1, try to intercept SIGABRT.")
76 FUZZER_FLAG_INT(handle_ill, 1, "If 1, try to intercept SIGILL.")
77 FUZZER_FLAG_INT(handle_fpe, 1, "If 1, try to intercept SIGFPE.")
78 FUZZER_FLAG_INT(handle_int, 1, "If 1, try to intercept SIGINT.")
79 FUZZER_FLAG_INT(handle_term, 1, "If 1, try to intercept SIGTERM.")
/external/mockito/src/main/java/org/mockito/internal/creation/bytebuddy/
DSubclassBytecodeGenerator.java80 .intercept(to(DispatcherDefaultingToRealMethod.class)) in mockClass()
86 .intercept(to(MockMethodInterceptor.ForHashCode.class)) in mockClass()
88 .intercept(to(MockMethodInterceptor.ForEquals.class)) in mockClass()
92 .intercept(FieldAccessor.ofBeanProperty()); in mockClass()
95 .intercept(to(MockMethodInterceptor.ForWriteReplace.class)); in mockClass()
101 .intercept(readReplace); in mockClass()
/external/guice/core/src/com/google/inject/internal/
DInterceptorStackCallback.java23 import org.aopalliance.intercept.MethodInterceptor;
24 import org.aopalliance.intercept.MethodInvocation;
53 public Object intercept(Object proxy, Method method, Object[] arguments, in intercept() method in InterceptorStackCallback
DDefaultConstructionProxyFactory.java69 public ImmutableMap<Method, List<org.aopalliance.intercept.MethodInterceptor>> in create()
100 public ImmutableMap<Method, List<org.aopalliance.intercept.MethodInterceptor>> in create()
/external/guice/core/test/com/google/inject/
DIntegrationTest.java23 import org.aopalliance.intercept.MethodInterceptor;
24 import org.aopalliance.intercept.MethodInvocation;
DTypeListenerTest.java145 private static org.aopalliance.intercept.MethodInterceptor prefixInterceptor( in prefixInterceptor()
147 return new org.aopalliance.intercept.MethodInterceptor() { in prefixInterceptor()
148 public Object invoke(org.aopalliance.intercept.MethodInvocation methodInvocation) in prefixInterceptor()
577 encounter.bindInterceptor(any(), new org.aopalliance.intercept.MethodInterceptor() {
578 public Object invoke(org.aopalliance.intercept.MethodInvocation methodInvocation)
DParentInjectorTest.java133 private final org.aopalliance.intercept.MethodInterceptor returnNullInterceptor
134 = new org.aopalliance.intercept.MethodInterceptor() {
135 public Object invoke(org.aopalliance.intercept.MethodInvocation methodInvocation) {
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
DShadowSystemClockTest.java43 long systemNanoTime = (Long) RobolectricInternals.intercept( in shouldInterceptSystemTimeCalls()
46 long systemMilliTime = (Long) RobolectricInternals.intercept( in shouldInterceptSystemTimeCalls()
/external/robolectric-shadows/sandbox/src/main/java/org/robolectric/internal/bytecode/
DRobolectricInternals.java47 …public static Object intercept(String signature, Object instance, Object[] params, Class theClass)… in intercept() method in RobolectricInternals
49 return classHandler.intercept(signature, instance, params, theClass); in intercept()
/external/esd/include/
Daudiofile.h519 double slope, double intercept, double minClip, double maxClip);
521 double *slope, double *intercept, double *minClip, double *maxClip);
525 double slope, double intercept, double minClip, double maxClip);
529 double slope, double intercept, double minClip, double maxClip);
531 double *slope, double *intercept, double *minClip, double *maxClip);
/external/guice/extensions/persist/src/com/google/inject/persist/jpa/
DJpaLocalTxnInterceptor.java23 import org.aopalliance.intercept.MethodInterceptor;
24 import org.aopalliance.intercept.MethodInvocation;
DJpaPersistModule.java32 import org.aopalliance.intercept.MethodInterceptor;
33 import org.aopalliance.intercept.MethodInvocation;
/external/mockito/src/test/java/org/mockitousage/spies/
DSpyingOnInterfacesTest.java71 .intercept(FixedValue.value("bar")) in shouldAllowDelegatingToDefaultMethod()
92 .intercept(FixedValue.value("bar")) in shouldAllowSpyingOnDefaultMethod()
/external/guice/core/test/com/google/inject/internal/util/
DLineNumbersTest.java66 new org.aopalliance.intercept.MethodInterceptor() { in testCanHandleLineNumbersForGuiceGeneratedClasses()
67 public Object invoke(org.aopalliance.intercept.MethodInvocation methodInvocation) { in testCanHandleLineNumbersForGuiceGeneratedClasses()
/external/guice/extensions/struts2/src/com/google/inject/struts2/
DStruts2Factory.java215 public String intercept(ActionInvocation invocation) throws Exception { in intercept() method in Struts2Factory.ProvidedInterceptor
216 return delegate.intercept(invocation); in intercept()
DGuiceObjectFactory.java231 public String intercept(ActionInvocation invocation) throws Exception { in intercept() method in GuiceObjectFactory.ProvidedInterceptor
232 return delegate.intercept(invocation); in intercept()

123456