Searched refs:longArg (Results 1 – 7 of 7) sorted by relevance
/external/chromium_org/third_party/icu/source/common/ |
D | utrace.c | 193 int64_t longArg = 0; in utrace_vformat() local 256 longArg = va_arg(args, int64_t); in utrace_vformat() 257 outputHexBytes(longArg, 16, outBuf, &outIx, capacity); in utrace_vformat() 305 longArg = *i8Ptr++; in utrace_vformat() 309 longArg = *i16Ptr++; in utrace_vformat() 313 longArg = *i32Ptr++; in utrace_vformat() 317 longArg = *i64Ptr++; in utrace_vformat() 322 longArg = *ptrPtr==NULL? 0: 1; /* test for null terminated array. */ in utrace_vformat() 328 longArg = *i8Ptr; /* for test for null terminated array. */ in utrace_vformat() 335 longArg = *ptrPtr==NULL? 0: 1; /* for test for null term. array. */ in utrace_vformat() [all …]
|
/external/icu4c/common/ |
D | utrace.c | 193 int64_t longArg = 0; in utrace_vformat() local 256 longArg = va_arg(args, int64_t); in utrace_vformat() 257 outputHexBytes(longArg, 16, outBuf, &outIx, capacity); in utrace_vformat() 305 longArg = *i8Ptr++; in utrace_vformat() 309 longArg = *i16Ptr++; in utrace_vformat() 313 longArg = *i32Ptr++; in utrace_vformat() 317 longArg = *i64Ptr++; in utrace_vformat() 322 longArg = *ptrPtr==NULL? 0: 1; /* test for null terminated array. */ in utrace_vformat() 328 longArg = *i8Ptr; /* for test for null terminated array. */ in utrace_vformat() 335 longArg = *ptrPtr==NULL? 0: 1; /* for test for null term. array. */ in utrace_vformat() [all …]
|
/external/chromium_org/third_party/WebKit/Source/bindings/tests/idls/ |
D | TestObject.idl | 83 void voidMethodWithArgs(long longArg, DOMString strArg, TestObject objArg); 85 long longMethodWithArgs(long longArg, DOMString strArg, TestObject objArg); 87 TestObject objMethodWithArgs(long longArg, DOMString strArg, TestObject objArg); 90 sequence<TestInterface> methodReturningSequence(long longArg); 114 [Custom] void customMethodWithArgs(long longArg, DOMString strArg, TestObject objArg); 205 void overloadedMethod(long longArg); 210 void overloadedMethodA(TestObject? objArg, optional long longArg); 223 [RuntimeEnabled=FeatureName] void enabledAtRuntimeMethod(long longArg); 226 [PerContextEnabled=FeatureName] void enabledPerContextMethod(long longArg); 277 [PerWorldBindings] void overloadedPerWorldMethod(long longArg); [all …]
|
D | TestObjectPython.idl | 219 void voidMethodLongArg(long longArg); 229 …void voidMethodLongArgTestInterfaceEmptyArg(long longArg, TestInterfaceEmpty testInterfaceEmptyArg… 287 void voidMethodStringArgLongArg(DOMString stringArg, long longArg); 295 void voidMethodLongArgOptionalLongArg(long longArg, optional long optionalLongArg); 296 …void voidMethodLongArgOptionalLongArgOptionalLongArg(long longArg, optional long optionalLongArg1,… 297 …void voidMethodLongArgOptionalTestInterfaceEmptyArg(long longArg, optional TestInterfaceEmpty opti… 298 …rfaceEmptyArgOptionalLongArg(TestInterfaceEmpty optionalTestInterfaceEmpty, optional long longArg); 309 void overloadedMethodA(long longArg); 311 void overloadedMethodB(long longArg); 313 void overloadedMethodC(long longArg); [all …]
|
/external/oprofile/libpopt/ |
D | popt.c | 717 const char * longArg = NULL; in poptGetNextOpt() local 798 longArg = origOptString + (oe - localOptString); in poptGetNextOpt() 862 if (longArg) { in poptGetNextOpt() 864 longArg = expandNextArg(con, longArg); in poptGetNextOpt() 865 con->os->nextArg = longArg; in poptGetNextOpt() 867 longArg = expandNextArg(con, con->os->nextCharArg); in poptGetNextOpt() 868 con->os->nextArg = longArg; in poptGetNextOpt() 895 longArg = con->os->argv[con->os->next++]; in poptGetNextOpt() 896 longArg = expandNextArg(con, longArg); in poptGetNextOpt() 897 con->os->nextArg = longArg; in poptGetNextOpt() [all …]
|
/external/chromium_org/third_party/WebKit/Source/bindings/tests/results/ |
D | V8TestObject.cpp | 2961 V8TRYCATCH_VOID(int, longArg, toInt32(info[0])); in voidMethodWithArgsMethod() 2968 imp->voidMethodWithArgs(longArg, strArg, objArg.release()); in voidMethodWithArgsMethod() 2998 V8TRYCATCH_VOID(int, longArg, toInt32(info[0])); in longMethodWithArgsMethod() 3005 v8SetReturnValueInt(info, imp->longMethodWithArgs(longArg, strArg, objArg.release())); in longMethodWithArgsMethod() 3036 V8TRYCATCH_VOID(int, longArg, toInt32(info[0])); in objMethodWithArgsMethod() 3043 v8SetReturnValue(info, imp->objMethodWithArgs(longArg, strArg, objArg.release())); in objMethodWithArgsMethod() 3078 V8TRYCATCH_VOID(int, longArg, toInt32(info[0])); in methodReturningSequenceMethod() 3079 v8SetReturnValue(info, v8Array(imp->methodReturningSequence(longArg), info.GetIsolate())); in methodReturningSequenceMethod() 3992 V8TRYCATCH_VOID(int, longArg, toInt32(info[0])); in overloadedMethod1Method() 3993 imp->overloadedMethod(longArg); in overloadedMethod1Method() [all …]
|
D | V8TestObjectPython.cpp | 3457 V8TRYCATCH_VOID(int, longArg, toInt32(info[0])); in voidMethodLongArgMethod() 3458 imp->voidMethodLongArg(longArg); in voidMethodLongArgMethod() 3614 V8TRYCATCH_VOID(int, longArg, toInt32(info[0])); in voidMethodLongArgTestInterfaceEmptyArgMethod() 3616 imp->voidMethodLongArgTestInterfaceEmptyArg(longArg, testInterfaceEmptyArg); in voidMethodLongArgTestInterfaceEmptyArgMethod() 4383 V8TRYCATCH_VOID(int, longArg, toInt32(info[1])); in voidMethodStringArgLongArgMethod() 4384 imp->voidMethodStringArgLongArg(stringArg, longArg); in voidMethodStringArgLongArgMethod() 4509 V8TRYCATCH_VOID(int, longArg, toInt32(info[0])); in voidMethodLongArgOptionalLongArgMethod() 4511 imp->voidMethodLongArgOptionalLongArg(longArg); in voidMethodLongArgOptionalLongArgMethod() 4515 imp->voidMethodLongArgOptionalLongArg(longArg, optionalLongArg); in voidMethodLongArgOptionalLongArgMethod() 4532 V8TRYCATCH_VOID(int, longArg, toInt32(info[0])); in voidMethodLongArgOptionalLongArgOptionalLongArgMethod() [all …]
|