Home
last modified time | relevance | path

Searched refs:handlerName (Results 1 – 6 of 6) sorted by relevance

/external/javassist/src/test/test/javassist/proxy/
DProxyCacheGCTest.java76 String handlerName = "test.javassist.MyHandler_" + counter; in createProxy() local
77 CtClass ctHandlerClass = classPool.makeClass(handlerName); in createProxy()
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowView.java837 final String handlerName = attributeSet.getAttributeValue("android", in applyOnClickAttribute() local
839 if (handlerName == null) { in applyOnClickAttribute()
850 mHandler = getContext().getClass().getMethod(handlerName, in applyOnClickAttribute()
858 handlerName + "(View) in the activity " in applyOnClickAttribute()
/external/chromium_org/chrome/browser/resources/google_now/
Dutility.js108 function buildServerRequest(method, handlerName, opt_contentType) { argument
112 request.open(method, NOTIFICATION_CARDS_URL + '/' + handlerName, true);
Dbackground.js324 function requestFromServer(method, handlerName, opt_contentType) { argument
326 var request = buildServerRequest(method, handlerName, opt_contentType);
/external/fonttools/Lib/fontTools/misc/
DpsCharStrings.py516 handlerName = "op_" + token
517 if hasattr(self, handlerName):
518 handler = getattr(self, handlerName)
/external/clang/lib/CodeGen/
DCGExprScalar.cpp2236 const std::string *handlerName = in EmitOverflowCheckedBinOp() local
2238 if (handlerName->empty()) { in EmitOverflowCheckedBinOp()
2266 llvm::Value *handler = CGF.CGM.CreateRuntimeFunction(handlerTy, *handlerName); in EmitOverflowCheckedBinOp()