/test/testfwk/arkxtest/jsunit/src/module/mock/ |
H A D | MockKit.js | 74 ignoreMock(obj, method) { 78 if (typeof (method) !== 'function') { 81 let og = this.recordMockedMethod.get(method.propName); 83 obj[method.propName] = og; 84 this.recordMockedMethod.set(method.propName, undefined);
|
/test/testfwk/arkxtest/hamock/src/main/mock/ |
H A D | MockKit.js | 62 ignoreMock(obj, method) { 66 if (typeof (method) !== 'function') { 69 let og = this.recordMockedMethod.get(method.propName); 71 obj[method.propName] = og; 72 this.recordMockedMethod.set(method.propName, undefined);
|
/test/xts/acts/arkui/ace_ets_web_scheme_handler_napis/entry/src/main/cpp/ |
H A D | test_request.cpp | 174 char *method; in Start() local 175 OH_ArkWebResourceRequest_GetMethod(resourceRequest_, &method); in Start() 176 OH_LOG_INFO(LOG_APP, "OH_ArkWebResourceRequest_GetMethod %{public}x", *method); in Start() 177 std::string method1(method); in Start()
|
H A D | test_request.h | 47 const std::string method() { return method_; } in method() function in TestRequest
|
H A D | hello.cpp | 125 testMethod = testRequest->method().c_str(); in OnURLRequestStart() 159 OH_LOG_INFO(LOG_APP, "testRequest->method() %{public}s", testMethod.c_str()); in OnURLRequestStart()
|
/test/xts/tools/build/ |
H A D | judgePart.py | 43 method = sys.argv[3] variable 44 if method == "judgePart":
|
H A D | utils.py | 62 method = getattr(this_module, args.method_name) 69 method(**arguments)
|
/test/testfwk/xdevice/src/xdevice/_core/ |
H A D | interface.py | 37 for method in methods: 39 if method in cls.__dict__: 40 if cls.__dict__[method] is None:
|
/test/testfwk/xdevice/src/xdevice/_core/driver/ |
H A D | parser_lite.py | 46 method = self.process_output_methods[0] 47 return method(self, output, end_mark)
|
/test/xts/acts/multimedia/image_effect/OHImageEffectNDK/entry/src/main/cpp/ |
H A D | napi_init.cpp | 20 #define DESCRIPTOR(jsmethod, method) \ 21 { jsmethod, nullptr, method, nullptr, nullptr, nullptr, napi_default, nullptr }
|
/test/xts/acts/ability/ability_runtime/actsserviceabilityclienttest/actsserviceabilityclienttest/entry/src/main/js/ServiceAbility1/ |
H A D | service.js | 39 this.method(); 47 method() { 48 console.log('ACTS_SerivceAbilityServer ====< method called.');
|
/test/xts/acts/ability/ability_runtime/actsserviceabilityclienttest/actsserviceabilityclienttest/entry/src/main/js/ServiceAbility2/ |
H A D | service.js | 39 this.method(); 47 method() { 48 console.log('ACTS_SerivceAbilityServerSecond ====< method called.');
|
/test/xts/acts/arkui/ace_ets_web_scheme_handler_three_napis/entry/src/main/cpp/ |
H A D | rawfile_request.cpp | 93 char *method; in Start() local 94 OH_ArkWebResourceRequest_GetMethod(resourceRequest_, &method); in Start()
|
/test/xts/acts/arkui/ace_ets_web_scheme_handler_two_napis/entry/src/main/cpp/ |
H A D | rawfile_request.cpp | 88 char *method; in Start() local 89 OH_ArkWebResourceRequest_GetMethod(resourceRequest_, &method); in Start()
|
/test/xts/acts/ability/ability_runtime/actsjsdataabilitytest/entry/src/ohosTest/js/DataAbility/ |
H A D | data.js | 37 call(uri, method, arg, extras) {
|
/test/xts/acts/arkui/ace_ets_web_scheme_handler_four_napis/entry/src/main/cpp/ |
H A D | hello.cpp | 150 char *method; in StartRead() local 152 OH_ArkWebResourceRequest_GetMethod(resourceRequest_, &method); in StartRead()
|
/test/xts/tools/lite/build/ |
H A D | utils.py | 90 method = getattr(this_module, args.method_name) 99 method(**arguments)
|
/test/xts/tools/sample/ServerSampleD/java/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/sample/controller/ |
H A D | VideoController.java | 104 @RequestMapping(value = "/edit", method = {RequestMethod.PUT, RequestMethod.POST})
|
/test/xts/tools/sample/ServerSampleE/java/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/sample/controller/ |
H A D | BusinessGoodsController.java | 121 @RequestMapping(value = "/edit", method = {RequestMethod.PUT, RequestMethod.POST})
|
H A D | BusinessCommentController.java | 107 @RequestMapping(value = "/edit", method = {RequestMethod.PUT, RequestMethod.POST})
|
H A D | GroupSiteController.java | 151 @RequestMapping(value = "/edit", method = {RequestMethod.PUT, RequestMethod.POST})
|
H A D | BusinessController.java | 166 @RequestMapping(value = "/edit", method = {RequestMethod.PUT, RequestMethod.POST})
|
/test/xts/acts/telephony/telephonyjstest/netmanager_base/jshttp/entry/src/ohosTest/js/test/ |
H A D | HttpRequest2JsunitTest.test.js | 21 method: http.RequestMethod.GET,
|
/test/xts/acts/arkui/ace_c_arkui_test/entry/src/main/cpp/Dialog/ |
H A D | arkoala_api.h | 4155 void (*setCallbackMethod)(ArkUIAPICallbackMethod* method); 4671 void (*setCallbackMethod)(ArkUIAPICallbackMethod* method); 4892 void (*setCallbackMethod)(ArkUIAPICallbackMethod* method); 4902 void (*setCallbackMethod)(ArkUIAPICallbackMethod* method); 4904 // for ndk side, the custom method is not set in create. 5022 void (*setCallbackMethod)(ArkUIAPICallbackMethod* method);
|
/test/xts/acts/commonlibrary/ets_utils/util_lib_standard/entry/src/ohosTest/js/test/ |
H A D | util.test.js | 8776 * @tc.desc: Insert some logic before the method. In implementation the method will be replaced with a 8777 * new function, which will execute 'before' with the args 'this' and the args of the original method, and 8778 * then execute the original method. The return value of the new function is returned by the original method. 8801 * @tc.desc: Insert some logic before the method. In implementation the method will be replaced with a 8802 * new function, which will execute 'before' with the args 'this' and the args of the original method, and 8803 * then execute the original method. The return value of the new function is returned by the original method [all...] |