Home
last modified time | relevance | path

Searched refs:argsL (Results 1 – 8 of 8) sorted by relevance

/dports/net-im/coccinella/Coccinella-0.96.20Src/jabber/
H A DJWB.tcl714 set argsL [SendArgs $w]
717 eval {SendMessage $w $jid $msg} $argsL
783 set argsL [SendArgs $w]
784 eval {SendRawMessageList $jid $msgList} $argsL
793 set argsL [list]
799 lappend argsL -type $type
801 lappend argsL -thread $jwbstate($w,thread)
804 return $argsL
/dports/lang/spidermonkey78/firefox-78.9.0/tools/profiler/tests/gtest/
H A DLulTestDwarf.cpp2700 const int32_t argsL[6] = {0, 0, 1, -2, -1, -2}; in TEST_F() local
2707 for (unsigned int i = 0; i < sizeof(argsL) / sizeof(argsL[0]); i++) { in TEST_F()
2712 instrs.push_back(PfxInstr(PX_SImm32, argsL[i])); in TEST_F()
/dports/lang/spidermonkey60/firefox-60.9.0/tools/profiler/tests/gtest/
H A DLulTestDwarf.cpp2573 const int32_t argsL[6] = { 0, 0, 1, -2, -1, -2 }; in TEST_F() local
2580 for (unsigned int i = 0; i < sizeof(argsL)/sizeof(argsL[0]); i++) { in TEST_F()
2585 instrs.push_back(PfxInstr(PX_SImm32, argsL[i])); in TEST_F()
/dports/mail/thunderbird/thunderbird-91.8.0/tools/profiler/tests/gtest/
H A DLulTestDwarf.cpp2700 const int32_t argsL[6] = {0, 0, 1, -2, -1, -2}; in TEST_F() local
2707 for (unsigned int i = 0; i < sizeof(argsL) / sizeof(argsL[0]); i++) { in TEST_F()
2712 instrs.push_back(PfxInstr(PX_SImm32, argsL[i])); in TEST_F()
/dports/www/firefox/firefox-99.0/tools/profiler/tests/gtest/
H A DLulTestDwarf.cpp2700 const int32_t argsL[6] = {0, 0, 1, -2, -1, -2}; in TEST_F() local
2707 for (unsigned int i = 0; i < sizeof(argsL) / sizeof(argsL[0]); i++) { in TEST_F()
2712 instrs.push_back(PfxInstr(PX_SImm32, argsL[i])); in TEST_F()
/dports/www/firefox-legacy/firefox-52.8.0esr/tools/profiler/tests/gtest/
H A DLulTestDwarf.cpp2573 const int32_t argsL[6] = { 0, 0, 1, -2, -1, -2 }; in TEST_F() local
2580 for (unsigned int i = 0; i < sizeof(argsL)/sizeof(argsL[0]); i++) { in TEST_F()
2585 instrs.push_back(PfxInstr(PX_SImm32, argsL[i])); in TEST_F()
/dports/www/firefox-esr/firefox-91.8.0/tools/profiler/tests/gtest/
H A DLulTestDwarf.cpp2700 const int32_t argsL[6] = {0, 0, 1, -2, -1, -2}; in TEST_F() local
2707 for (unsigned int i = 0; i < sizeof(argsL) / sizeof(argsL[0]); i++) { in TEST_F()
2712 instrs.push_back(PfxInstr(PX_SImm32, argsL[i])); in TEST_F()
/dports/net/cloudquery/cloudquery-0.16.0/vendor/github.com/doug-martin/goqu/v9/sqlgen/
H A Dexpression_sql_generator_test.go433 argsL := exp.NewLiteralExpression(`"b" = ? or "c" = ? or d IN ?`, "a", 1, []int{1, 2, 3, 4})
440 expressionTestCase{val: argsL, sql: `"b" = 'a' or "c" = 1 or d IN (1, 2, 3, 4)`},
442 val: argsL,