Home
last modified time | relevance | path

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

/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowPackageManager.java826 String action1 = i1.getAction(); in compare()
828 if (action1 == null && action2 != null) return -1; in compare()
829 if (action1 != null && action2 == null) return 1; in compare()
830 if (action1 != null && action2 != null) { in compare()
831 if (!action1.equals(action2)) { in compare()
832 return action1.compareTo(action2); in compare()
/external/google-breakpad/src/testing/include/gmock/
Dgmock-actions.h856 DoBothAction(Action1 action1, Action2 action2) in DoBothAction() argument
857 : action1_(action1), action2_(action2) {} in DoBothAction()
875 Impl(const Action<VoidResult>& action1, const Action<F>& action2) in Impl() argument
876 : action1_(action1), action2_(action2) {} in Impl()
/external/autotest/server/cros/cfm/configurable_test/
Dactions_unittest.py133 action1 = actions.SelectScenarioAtRandom(scenarios1, 100, 0)
135 action1.execute(self.context_with_mocks)
/external/swiftshader/third_party/llvm-7.0/llvm/utils/unittest/googlemock/include/gmock/
Dgmock-actions.h974 DoBothAction(Action1 action1, Action2 action2)
975 : action1_(action1), action2_(action2) {}
993 Impl(const Action<VoidResult>& action1, const Action<F>& action2)
994 : action1_(action1), action2_(action2) {}
/external/eigen/bench/btl/
DREADME38 BTL_CONFIG="-a action1{:action2}*" ctest -V
/external/iproute2/doc/actions/
Dactions-general97 action1 | action2 | action3 etc.
/external/antlr/tool/src/test/java/org/antlr/test/
DTestAttributes.java550 String action1 = "$obj = $rule2.obj;"; in testReturnWithMultipleRuleRefs() local
560 ": rule2 { "+action1+" }\n" + in testReturnWithMultipleRuleRefs()
574 String action = action1; in testReturnWithMultipleRuleRefs()
/external/googletest/googlemock/docs/
DCookBook.md2669 .WillOnce(action1);
2675 Google Mock will execute `action1` in thread 1 and `action2` in thread
2680 need to cooperate). This means that the execution of `action1` and
2682 you should add proper synchronization logic to `action1` and `action2`