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

1 2 3 4 5 6 7 8 910

  /external/guice/extensions/persist/lib/
aopalliance.jar 
  /external/guice/lib/
aopalliance.jar 
  /prebuilts/tools/common/m2/repository/aopalliance/aopalliance/1.0/
aopalliance-1.0.jar 
  /system/core/debuggerd/tombstoned/
intercept_manager.cpp 37 auto intercept = reinterpret_cast<Intercept*>(arg); local
38 InterceptManager* intercept_manager = intercept->intercept_manager;
40 CHECK_EQ(sockfd, intercept->sockfd.get());
43 // closed their end of the socket. Either way, kill the intercept.
45 // Ownership of intercept differs based on whether we've registered it with InterceptManager.
46 if (!intercept->registered) {
47 delete intercept;
49 auto it = intercept_manager->intercepts.find(intercept->intercept_pid);
51 LOG(FATAL) << "intercept close callback called after intercept was already removed?"
83 auto intercept = reinterpret_cast<Intercept*>(arg); local
175 Intercept* intercept = new Intercept(); local
208 auto intercept = std::move(it->second); local
    [all...]
  /external/testng/src/main/java/org/testng/
IMethodInterceptor.java 24 * The {@link ITestContext} is passed in the <tt>intercept</tt> method so that implementers can set user values
32 List<IMethodInstance> intercept(List<IMethodInstance> methods, ITestContext context); method in interface:IMethodInterceptor
PreserveOrderMethodInterceptor.java 26 public List<IMethodInstance> intercept(List<IMethodInstance> methods, ITestContext context) { method in class:PreserveOrderMethodInterceptor
  /external/clang/tools/scan-build-py/bin/
intercept-c++ 13 from libscanbuild.intercept import intercept_build_wrapper
intercept-cc 13 from libscanbuild.intercept import intercept_build_wrapper
intercept-build 16 from libscanbuild.intercept import intercept_build_main
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Interceptor.java 26 Response intercept(Chain chain) throws IOException; method in interface:Interceptor
  /external/testng/src/test/java/test/listeners/
MyMethodInterceptor.java 14 public List<IMethodInstance> intercept(List<IMethodInstance> methods, ITestContext context) { method in class:MyMethodInterceptor
  /external/testng/src/test/java/test/methodinterceptors/
NullMethodInterceptor.java 12 public List<IMethodInstance> intercept(List<IMethodInstance> methods, ITestContext context) { method in class:NullMethodInterceptor
  /development/samples/ApiDemos/src/com/example/android/apis/view/
HoverInterceptorView.java 32 * hover activity is checked, the interceptor view will intercept hover events.
68 public void setInterceptHover(boolean intercept) {
69 mInterceptHover = intercept;
  /external/guice/core/test/com/google/inject/
IntegrationTest.java 23 import org.aopalliance.intercept.MethodInterceptor;
24 import org.aopalliance.intercept.MethodInvocation;
  /external/guice/core/src/com/google/inject/spi/
ConstructorBinding.java 55 Map<Method, List<org.aopalliance.intercept.MethodInterceptor>> getMethodInterceptors();
  /frameworks/opt/photoviewer/src/com/android/ex/photo/
PhotoViewPager.java 33 * A type of intercept that should be performed
38 * Provides an ability to intercept touch events.
42 * {@link android.view.ViewGroup} to contain the pager and intercept touch events at a higher
47 * Called when a touch intercept is about to occur.
110 * We intercept touch event intercepts so we can prevent switching views when the
115 final InterceptType intercept = (mListener != null) local
119 (intercept == InterceptType.BOTH || intercept == InterceptType.LEFT);
121 (intercept == InterceptType.BOTH || intercept == InterceptType.RIGHT)
    [all...]
  /external/skia/src/core/
SkGlyphCache.cpp 237 void SkGlyphCache::OffsetResults(const SkGlyph::Intercept* intercept, SkScalar scale,
242 *array++ = intercept->fInterval[index] * scale + xPos;
248 void SkGlyphCache::AddInterval(SkScalar val, SkGlyph::Intercept* intercept) {
249 intercept->fInterval[0] = SkTMin(intercept->fInterval[0], val);
250 intercept->fInterval[1] = SkTMax(intercept->fInterval[1], val);
254 bool yAxis, SkGlyph::Intercept* intercept)
304 const SkGlyph::Intercept* intercept = glyph->fPathData->fIntercept; local
325 SkGlyph::Intercept* intercept = fAlloc.make<SkGlyph::Intercept>(); local
    [all...]
  /external/skqp/src/core/
SkGlyphCache.cpp 237 void SkGlyphCache::OffsetResults(const SkGlyph::Intercept* intercept, SkScalar scale,
242 *array++ = intercept->fInterval[index] * scale + xPos;
248 void SkGlyphCache::AddInterval(SkScalar val, SkGlyph::Intercept* intercept) {
249 intercept->fInterval[0] = SkTMin(intercept->fInterval[0], val);
250 intercept->fInterval[1] = SkTMax(intercept->fInterval[1], val);
254 bool yAxis, SkGlyph::Intercept* intercept)
304 const SkGlyph::Intercept* intercept = glyph->fPathData->fIntercept; local
325 SkGlyph::Intercept* intercept = fAlloc.make<SkGlyph::Intercept>(); local
    [all...]
  /external/guice/core/src/com/google/inject/internal/
ConstructionProxy.java 55 ImmutableMap<Method, List<org.aopalliance.intercept.MethodInterceptor>> getMethodInterceptors();
InterceptorStackCallback.java 23 import org.aopalliance.intercept.MethodInterceptor;
24 import org.aopalliance.intercept.MethodInvocation;
53 public Object intercept(Object proxy, Method method, Object[] arguments, method in class:InterceptorStackCallback
  /external/guice/extensions/persist/src/com/google/inject/persist/
PersistModule.java 24 import org.aopalliance.intercept.MethodInterceptor;
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowSystemClockTest.java 43 long systemNanoTime = (Long) RobolectricInternals.intercept(
46 long systemMilliTime = (Long) RobolectricInternals.intercept(
  /external/robolectric-shadows/sandbox/src/main/java/org/robolectric/internal/bytecode/
RobolectricInternals.java 47 public static Object intercept(String signature, Object instance, Object[] params, Class theClass) throws Throwable { method in class:RobolectricInternals
49 return classHandler.intercept(signature, instance, params, theClass);
ClassHandler.java 19 Object intercept(String signature, Object instance, Object[] params, Class theClass) throws Throwable; method in interface:ClassHandler
  /external/linux-kselftest/tools/testing/selftests/timers/
freq-step.c 119 static void regress(struct sample *samples, int n, double *intercept,
138 *intercept = (y_sum - *slope * x_sum) / n;
145 r = fabs(x * *slope + *intercept - y);
157 double intercept, slope, stddev1, max1, stddev2, max2; local
181 regress(samples, SAMPLES, &intercept, &slope, &stddev1, &max1);
188 regress(samples, SAMPLES / 2, &intercept, &slope, &stddev1, &max1);
192 regress(samples + SAMPLES / 2, SAMPLES / 2, &intercept, &slope,

Completed in 1043 milliseconds

1 2 3 4 5 6 7 8 910