Home
last modified time | relevance | path

Searched refs:intArg (Results 1 – 9 of 9) sorted by relevance

/external/webkit/Source/WebCore/bindings/scripts/test/ObjC/
DDOMTestObj.h124 - (void)voidMethodWithArgs:(int)intArg strArg:(NSString *)strArg objArg:(DOMTestObj *)objArg;
126 - (int)intMethodWithArgs:(int)intArg strArg:(NSString *)strArg objArg:(DOMTestObj *)objArg;
128 - (DOMTestObj *)objMethodWithArgs:(int)intArg strArg:(NSString *)strArg objArg:(DOMTestObj *)objArg;
136 - (void)customMethodWithArgs:(int)intArg strArg:(NSString *)strArg objArg:(DOMTestObj *)objArg;
137 - (void)customArgsAndException:(DOMlog *)intArg;
141 - (void)withDynamicFrameAndArg:(int)intArg;
142 - (void)withDynamicFrameAndOptionalArg:(int)intArg optionalArg:(int)optionalArg;
143 - (void)withDynamicFrameAndUserGesture:(int)intArg;
144 - (void)withDynamicFrameAndUserGestureASAD:(int)intArg optionalArg:(int)optionalArg;
DDOMTestObj.mm493 - (void)voidMethodWithArgs:(int)intArg strArg:(NSString *)strArg objArg:(DOMTestObj *)objArg
496 IMPL->voidMethodWithArgs(intArg, strArg, core(objArg));
505 - (int)intMethodWithArgs:(int)intArg strArg:(NSString *)strArg objArg:(DOMTestObj *)objArg
508 return IMPL->intMethodWithArgs(intArg, strArg, core(objArg));
517 - (DOMTestObj *)objMethodWithArgs:(int)intArg strArg:(NSString *)strArg objArg:(DOMTestObj *)objArg
520 return kit(WTF::getPtr(IMPL->objMethodWithArgs(intArg, strArg, core(objArg))));
570 - (void)customMethodWithArgs:(int)intArg strArg:(NSString *)strArg objArg:(DOMTestObj *)objArg
573 IMPL->customMethodWithArgs(intArg, strArg, core(objArg));
576 - (void)customArgsAndException:(DOMlog *)intArg
580 IMPL->customArgsAndException(core(intArg), ec);
[all …]
/external/webkit/Source/WebCore/bindings/scripts/test/CPP/
DWebDOMTestObj.h133 void voidMethodWithArgs(int intArg, const WebDOMString& strArg, const WebDOMTestObj& objArg);
135 int intMethodWithArgs(int intArg, const WebDOMString& strArg, const WebDOMTestObj& objArg);
137 …WebDOMTestObj objMethodWithArgs(int intArg, const WebDOMString& strArg, const WebDOMTestObj& objAr…
145 void customMethodWithArgs(int intArg, const WebDOMString& strArg, const WebDOMTestObj& objArg);
149 void withDynamicFrameAndArg(int intArg);
150 void withDynamicFrameAndOptionalArg(int intArg, int optionalArg);
151 void withDynamicFrameAndUserGesture(int intArg);
152 void withDynamicFrameAndUserGestureASAD(int intArg, int optionalArg);
DWebDOMTestObj.cpp608 void WebDOMTestObj::voidMethodWithArgs(int intArg, const WebDOMString& strArg, const WebDOMTestObj&… in voidMethodWithArgs() argument
613 impl()->voidMethodWithArgs(intArg, strArg, toWebCore(objArg)); in voidMethodWithArgs()
624 int WebDOMTestObj::intMethodWithArgs(int intArg, const WebDOMString& strArg, const WebDOMTestObj& o… in intMethodWithArgs() argument
629 return impl()->intMethodWithArgs(intArg, strArg, toWebCore(objArg)); in intMethodWithArgs()
640 WebDOMTestObj WebDOMTestObj::objMethodWithArgs(int intArg, const WebDOMString& strArg, const WebDOM… in objMethodWithArgs() argument
645 return toWebKit(WTF::getPtr(impl()->objMethodWithArgs(intArg, strArg, toWebCore(objArg)))); in objMethodWithArgs()
725 void WebDOMTestObj::withDynamicFrameAndArg(int intArg) in withDynamicFrameAndArg() argument
730 impl()->withDynamicFrameAndArg(intArg); in withDynamicFrameAndArg()
733 void WebDOMTestObj::withDynamicFrameAndOptionalArg(int intArg, int optionalArg) in withDynamicFrameAndOptionalArg() argument
738 impl()->withDynamicFrameAndOptionalArg(intArg, optionalArg); in withDynamicFrameAndOptionalArg()
/external/webkit/Source/WebCore/bindings/scripts/test/
DTestObj.idl66 void voidMethodWithArgs(in long intArg, in DOMString strArg, in TestObj objArg);
68 long intMethodWithArgs(in long intArg, in DOMString strArg, in TestObj objArg);
70 TestObj objMethodWithArgs(in long intArg, in DOMString strArg, in TestObj objArg);
90 [Custom] void customMethodWithArgs(in long intArg, in DOMString strArg, in TestObj objArg);
92 [CustomArgumentHandling] void customArgsAndException(in log intArg)
104 [CallWith=DynamicFrame] void withDynamicFrameAndArg(in long intArg);
105 …[CallWith=DynamicFrame] void withDynamicFrameAndOptionalArg(in long intArg, in [Optional] long opt…
106 …[NeedsUserGestureCheck, CallWith=DynamicFrame] void withDynamicFrameAndUserGesture(in long intArg);
107 …, CallWith=DynamicFrame] void withDynamicFrameAndUserGestureASAD(in long intArg, in [Optional] lon…
139 void overloadedMethod(in TestObj objArg, in [Optional] long intArg);
[all …]
/external/icu4c/common/
Dutrace.c192 int32_t intArg; in utrace_vformat() local
232 intArg =(int32_t)va_arg(args, int32_t); /* Length */ in utrace_vformat()
233 outputUString((const UChar *)ptrArg, intArg, outBuf, &outIx, capacity, indent); in utrace_vformat()
238 intArg = va_arg(args, int); in utrace_vformat()
239 outputHexBytes(intArg, 2, outBuf, &outIx, capacity); in utrace_vformat()
244 intArg = va_arg(args, int); in utrace_vformat()
245 outputHexBytes(intArg, 4, outBuf, &outIx, capacity); in utrace_vformat()
250 intArg = va_arg(args, int); in utrace_vformat()
251 outputHexBytes(intArg, 8, outBuf, &outIx, capacity); in utrace_vformat()
/external/webkit/Source/WebCore/bindings/scripts/test/V8/
DV8TestObj.cpp644 EXCEPTION_BLOCK(int, intArg, toInt32(args[0])); in voidMethodWithArgsCallback()
647 imp->voidMethodWithArgs(intArg, strArg, objArg); in voidMethodWithArgsCallback()
662 EXCEPTION_BLOCK(int, intArg, toInt32(args[0])); in intMethodWithArgsCallback()
665 return v8::Integer::New(imp->intMethodWithArgs(intArg, strArg, objArg)); in intMethodWithArgsCallback()
679 EXCEPTION_BLOCK(int, intArg, toInt32(args[0])); in objMethodWithArgsCallback()
682 return toV8(imp->objMethodWithArgs(intArg, strArg, objArg)); in objMethodWithArgsCallback()
788 …EXCEPTION_BLOCK(log*, intArg, V8log::HasInstance(args[0]) ? V8log::toNative(v8::Handle<v8::Object>… in customArgsAndExceptionCallback()
789 imp->customArgsAndException(intArg, scriptArguments, callStack, ec); in customArgsAndExceptionCallback()
836 EXCEPTION_BLOCK(int, intArg, toInt32(args[0])); in withDynamicFrameAndArgCallback()
840 imp->withDynamicFrameAndArg(enteredFrame, intArg); in withDynamicFrameAndArgCallback()
[all …]
/external/webkit/Source/WebCore/bindings/scripts/test/JS/
DJSTestObj.cpp851 int intArg(exec->argument(0).toInt32(exec)); in jsTestObjPrototypeFunctionVoidMethodWithArgs() local
861 imp->voidMethodWithArgs(intArg, strArg, objArg); in jsTestObjPrototypeFunctionVoidMethodWithArgs()
885 int intArg(exec->argument(0).toInt32(exec)); in jsTestObjPrototypeFunctionIntMethodWithArgs() local
896 JSC::JSValue result = jsNumber(imp->intMethodWithArgs(intArg, strArg, objArg)); in jsTestObjPrototypeFunctionIntMethodWithArgs()
920 int intArg(exec->argument(0).toInt32(exec)); in jsTestObjPrototypeFunctionObjMethodWithArgs() local
931 …oJS(exec, castedThis->globalObject(), WTF::getPtr(imp->objMethodWithArgs(intArg, strArg, objArg))); in jsTestObjPrototypeFunctionObjMethodWithArgs()
1077 log* intArg(tolog(exec->argument(0))); in jsTestObjPrototypeFunctionCustomArgsAndException() local
1081 imp->customArgsAndException(intArg, scriptArguments, callStack, ec); in jsTestObjPrototypeFunctionCustomArgsAndException()
1139 int intArg(exec->argument(0).toInt32(exec)); in jsTestObjPrototypeFunctionWithDynamicFrameAndArg() local
1143 imp->withDynamicFrameAndArg(dynamicFrame, intArg); in jsTestObjPrototypeFunctionWithDynamicFrameAndArg()
[all …]
/external/icu4c/i18n/
Dtransreg.cpp436 int32_t intArg; // For COMPOUND_RBT, LOCALE_RULES member in TransliteratorEntry
1131 entry->intArg = dir; in findInBundle()
1304 (UTransDirection) entry->intArg); in instantiateEntry()