Home
last modified time | relevance | path

Searched full:params (Results 6801 - 6825 of 8973) sorted by relevance

1...<<271272273274275276277278279280>>...359

/foundation/window/window_manager/window_scene/session_manager/src/zidl/
H A Dscene_session_manager_stub.cpp697 std::vector<std::string> params; in HandleGetSessionDump() local
698 if (!data.ReadStringVector(&params)) { in HandleGetSessionDump()
699 WLOGFE("Fail to read params"); in HandleGetSessionDump()
703 WSError errCode = GetSessionDumpInfo(params, dumpInfo); in HandleGetSessionDump()
/test/xts/acts/multimedia/audio_ndk/oh_audio_render_test/src/
H A Doh_audio_render_unit_test.cpp168 // set params and callbacks in InitRenderBuilder()
945 // 2. set params and callbacks in HWTEST()
986 // 2. set params and callbacks in HWTEST()
1055 // 2. set params and callbacks in HWTEST()
/third_party/ffmpeg/libavcodec/
H A Dflacenc.c77 int params[MAX_PARTITIONS]; member
556 int k = sub->rc.params[p]; in subframe_count_exact()
622 rc->params[i] = k; in calc_optimal_rice_params()
1258 int k = sub->rc.params[p]; in write_subframes()
/third_party/backends/backend/
H A Dkvs40xx_opt.c1369 sane_get_parameters (SANE_Handle handle, SANE_Parameters * params) in sane_get_parameters() argument
1372 SANE_Parameters *p = &s->params; in sane_get_parameters()
1409 if (params) in sane_get_parameters()
1410 memcpy (params, p, sizeof (SANE_Parameters)); in sane_get_parameters()
H A Dv4l.c931 sane_get_parameters (SANE_Handle handle, SANE_Parameters * params) in sane_get_parameters() argument
937 if (params == 0) in sane_get_parameters()
939 DBG (1, "sane_get_parameters: params == 0\n"); in sane_get_parameters()
953 *params = parms; in sane_get_parameters()
/third_party/jsframework/runtime/main/model/
H A Ddirective.ts1028 * @param {*} params - Any value.
1031 function isArray(params: any): params is Array<string> {
1032 return Array.isArray(params);
/third_party/openGLES/extensions/AMD/
H A DAMD_gpu_shader_int64.txt105 void GetUniformi64vNV(uint program, int location, int64EXT *params);
110 void GetUniformui64vNV(uint program, int location, uint64EXT *params);
253 void GetUniformi64vNV(uint program, int location, int64* params)
254 void GetUniformui64vNV(uint program, int location, uint64* params)
/third_party/mesa3d/src/mapi/glapi/gen/
H A DglX_proto_send.py1095 params = func.get_parameter_string()
1097 print('extern _X_HIDDEN %s __indirect_gl%s(%s);' % (func.return_type, func.name, params))
1103 print('extern _X_HIDDEN %s gl%s(%s);' % (func.return_type, asdf, params))
1108 print('GLAPI %s GLAPIENTRY gl%s(%s);' % (func.return_type, asdf, params))
/third_party/libevdev/doc/html/
H A Ddoxygen.css761 .params, .retval, .exception, .tparams {
766 .params .paramname, .retval .paramname, .tparams .paramname, .exception .paramname {
771 .params .paramtype, .tparams .paramtype {
776 .params .paramdir, .tparams .paramdir {
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/shaders/gen/
H A DOverlayDraw.comp.00000000.inc230 // } params;
315 // if(any(greaterThanEqual(imageCoords, params . outputSize)))
396 // if(params . rotateXY)
400 // imageCoords . x = params . outputSize . y - 1 - imageCoords . x;
H A DOverlayDraw.comp.00000001.inc230 // } params;
315 // if(any(greaterThanEqual(imageCoords, params . outputSize)))
396 // if(params . rotateXY)
400 // imageCoords . x = params . outputSize . y - 1 - imageCoords . x;
/third_party/skia/third_party/externals/oboe/docs/reference/
H A Ddoxygen.css699 .params, .retval, .exception, .tparams {
704 .params .paramname, .retval .paramname, .tparams .paramname {
709 .params .paramtype, .tparams .paramtype {
714 .params .paramdir, .tparams .paramdir {
/third_party/skia/third_party/externals/opengl-registry/extensions/AMD/
H A DAMD_gpu_shader_int64.txt105 void GetUniformi64vNV(uint program, int location, int64EXT *params);
110 void GetUniformui64vNV(uint program, int location, uint64EXT *params);
253 void GetUniformi64vNV(uint program, int location, int64* params)
254 void GetUniformui64vNV(uint program, int location, uint64* params)
/third_party/typescript/src/harness/
H A DvirtualFileSystemWithWatch.ts33 export function createWatchedSystem(fileOrFolderList: FileOrFolderOrSymLinkMap | readonly FileOrFolderOrSymLink[], params?: TestServerHostCreationParameters): TestServerHost {
34 return new TestServerHost(fileOrFolderList, params);
37 export function createServerHost(fileOrFolderList: FileOrFolderOrSymLinkMap | readonly FileOrFolderOrSymLink[], params?: TestServerHostCreationParameters): TestServerHost {
38 const host = new TestServerHost(fileOrFolderList, params);
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
H A DGeneratedMessageLite.java1149 static Method getMethodOrDie(Class clazz, String name, Class... params) { in getMethodOrDie() argument
1151 return clazz.getMethod(name, params); in getMethodOrDie()
1160 static Object invokeOrDie(Method method, Object object, Object... params) { in invokeOrDie() argument
1162 return method.invoke(object, params); in invokeOrDie()
/third_party/rust/crates/rust-openssl/openssl/src/
H A Dec.rs27 use crate::pkey::{HasParams, HasPrivate, HasPublic, Params, Private, Public};
792 impl EcKey<Params> {
798 pub fn from_curve_name(nid: Nid) -> Result<EcKey<Params>, ErrorStack> { in from_curve_name()
807 pub fn from_group(group: &EcGroupRef) -> Result<EcKey<Params>, ErrorStack> { in from_group()
/third_party/vk-gl-cts/modules/gles3/performance/
H A Des3pShaderOptimizationTests.cpp79 std::map<string, string> params; in repeatIndexedTemplate() local
83 params["PREV_NDX"] = toString(i + ndxStart - 1); in repeatIndexedTemplate()
84 params["NDX"] = toString(i + ndxStart); in repeatIndexedTemplate()
86 result += (i > 0 ? delim : "") + templ.specialize(params); in repeatIndexedTemplate()
/third_party/vk-gl-cts/modules/gles2/performance/
H A Des2pShaderOptimizationTests.cpp79 std::map<string, string> params; in repeatIndexedTemplate() local
83 params["PREV_NDX"] = toString(i + ndxStart - 1); in repeatIndexedTemplate()
84 params["NDX"] = toString(i + ndxStart); in repeatIndexedTemplate()
86 result += (i > 0 ? delim : "") + templ.specialize(params); in repeatIndexedTemplate()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/rasterization/
H A DvktRasterizationTests.cpp180 std::map<std::string, std::string> params; in initPrograms() local
182 params["INTERPOLATION"] = (m_flatshade) ? ("flat ") : (""); in initPrograms()
184 programCollection.glslSources.add("vertext_shader") << glu::VertexSource(vertexSource.specialize(params)); in initPrograms()
185 programCollection.glslSources.add("fragment_shader") << glu::FragmentSource(fragmentSource.specialize(params)); in initPrograms()
6676 struct Params
6682 StrideZeroCase (tcu::TestContext& testCtx, const std::string& name, const Params& params)
6684 , m_params (params)
6715 Params m_params;
6725 StrideZeroInstance (Context& context, const StrideZeroCase::Params
[all...]
/applications/standard/settings/product/phone/src/main/ets/pages/
H A Dwifi.ets365 let params: apParam = new apParam(apInfo, false);
368 params: params,
/foundation/ability/ability_runtime/services/abilitymgr/src/
H A Dability_scheduler_proxy.cpp1073 void AbilitySchedulerProxy::DumpAbilityInfo(const std::vector<std::string> &params, std::vector<std::string> &info) in DumpAbilityInfo() argument
1083 if (!data.WriteStringVector(params)) { in DumpAbilityInfo()
1084 TAG_LOGE(AAFwkTag::ABILITYMGR, "DumpAbilityRunner fail to write params"); in DumpAbilityInfo()
/foundation/ability/ability_runtime/services/abilitymgr/include/
H A Dability_record.h895 void DumpClientInfo(std::vector<std::string> &info, const std::vector<std::string> &params,
909 void DumpAbilityState(std::vector<std::string> &info, bool isClient, const std::vector<std::string> &params);
925 void DumpService(std::vector<std::string> &info, std::vector<std::string> &params, bool isClient = false) const;
/foundation/ability/ability_runtime/services/appmgr/include/
H A Dapp_mgr_service.h338 * @param args Indicates the params.
374 * @param renderParam, params passed to renderProcess.
634 * @param request Child process start request params.
/foundation/ability/ability_runtime/frameworks/native/ability/native/ability_runtime/
H A Dcj_ui_ability.cpp953 void CJUIAbility::Dump(const std::vector<std::string> &params, std::vector<std::string> &info) in Dump() argument
955 UIAbility::Dump(params, info); in Dump()
961 cjAbilityObj_->Dump(params, info); in Dump()
/foundation/CastEngine/castengine_wifi_display/tests/unittest/protocol/rtsp/
H A Drtsp_unit_test.cpp170 std::list<std::pair<std::string, std::string>> params; in HWTEST_F() local
174 RtspCommon::SplitParameter(lines, params); in HWTEST_F()
175 ASSERT_TRUE(params.size() == 3); in HWTEST_F()

Completed in 58 milliseconds

1...<<271272273274275276277278279280>>...359