Home
last modified time | relevance | path

Searched refs:value (Results 23176 - 23200 of 24686) sorted by relevance

1...<<921922923924925926927928929930>>...988

/third_party/selinux/libsepol/cil/src/
H A Dcil_reset_ast.c18 perm->value -= *((int *)args); in __class_reset_perm_values()
/third_party/rust/crates/serde/serde/src/de/
H A Dmod.rs119 pub mod value; modules
214 /// Raised when a `Deserialize` receives a value of the right type but that
217 /// The `unexp` argument provides information about what value was received.
218 /// This is the value that was present in the input file or other source
221 /// The `exp` argument provides information about what value was being
225 /// that is not valid UTF-8, the unexpected value is the bytes and the
226 /// expected value is a string.
229 Error::custom(format_args!("invalid value: {}, expected {}", unexp, exp)) in invalid_value()
336 /// The input contained a boolean value that was not expected.
409 Unit => formatter.write_str("unit value"), in fmt()
[all...]
/third_party/selinux/libsepol/include/sepol/policydb/
H A Dpolicydb.h180 uint32_t primary; /* primary name? can be set to primary value if below is TYPE_ */
440 /* this array maps from class->value to the permissions within
441 * scope. if bit (perm->value - 1) is set in map
442 * class_perms_map[class->value - 1] then that permission is
534 /* symbol names indexed by (value - 1) */
545 /* class, role, and user attributes indexed by (value - 1) */
554 * hash tables, where the key is the identifier name and value
569 /* bools indexed by (value - 1) */
706 uint32_t * value);
/third_party/spirv-tools/source/opt/
H A Dloop_descriptor.h246 // value in |step_value| and the initial value of the induction variable in
253 // Returns the value of the OpLoopMerge control operand as a bool. Loop
306 // Extract the initial value from the |induction| variable and store it in
307 // |value|. If the function couldn't find the initial value of |induction|
310 int64_t* value) const;
337 // condition value for the residual loop.
/third_party/spirv-tools/source/val/
H A Dvalidate_instruction.cpp144 // a variable value should trigger the capability requirement, but that's in CheckRequiredCapabilities()
175 spv::Decoration(operand_desc->value) == in CheckRequiredCapabilities()
261 // TODO(dneto): Check the value referenced by this Id, if we can compute in CapabilityCheck()
/third_party/spirv-tools/test/fuzz/
H A Dtransformation_composite_extract_test.cpp309 OpMemberName %25 0 "value" in TEST()
/third_party/spirv-tools/tools/opt/
H A Dopt.cpp162 with a switch that has a case for every possible value of the in PrintUsage()
276 same value, and deletes the redundant ones.)"); in PrintUsage()
281 this flag and must be a positive integer value.)"); in PrintUsage()
292 Identifies code in loops that has the same value for every in PrintUsage()
314 Sets the maximum value for the id bound for the module. The in PrintUsage()
315 default is the minimum value for this limit, 0x3FFFFF. See in PrintUsage()
416 same value, and deletes the redundant ones.)"); in PrintUsage()
461 be replaced. 0 means there is no limit. The default value is in PrintUsage()
464 --set-spec-const-default-value "<spec id>:<default value> in PrintUsage()
[all...]
/third_party/vk-gl-cts/scripts/khr_util/
H A Dregistry.py67 value=eEnum.get('value'),
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/postmortem/
H A DvktPostmortemDeviceFaultTests.cpp40 #define ARRAY_LENGTH(a_) std::extent<decltype(a_)>::value
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/synchronization/
H A DvktSynchronizationUtil.hpp338 vk::VkSemaphoreSubmitInfoKHR makeCommonSemaphoreSubmitInfo (vk::VkSemaphore semaphore, deUint64 value, vk::VkPipelineStageFlags2KHR stageMask);
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/common/
H A Dieee802_11_common.h309 size_t add_multi_ap_ie(u8 *buf, size_t len, u8 value);
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/
H A Dcrypto.h199 * @hash: Buffer for hash value or %NULL if caller is just freeing the hash
202 * hash context; on return, this is set to the actual length of the hash value
206 * This function calculates the hash value and frees the context buffer that
521 * crypto_bignum_init_set - Allocate memory for bignum and set the value
522 * @buf: Buffer with unsigned binary value
529 * crypto_bignum_init_set - Allocate memory for bignum and set the value (uint)
538 * @clear: Whether to clear the value from memory
555 * @r: Bignum; set to a random value
825 * @clear: Whether to clear the EC point value from memory
840 * crypto_ec_point_to_bin - Write EC point value a
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/ap/
H A Dwpa_auth.h254 int value);
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/common/
H A Dwpa_common.h485 int wpa_parse_cipher(const char *value);
/third_party/skia/third_party/externals/angle2/src/libANGLE/
H A DFramebuffer.h314 return mCachedStatus.value(); in checkStatus()
/third_party/zlib/contrib/pascal/
H A Dexample.pas35 var dictId: LongInt; (* Adler32 value of the dictionary *)
/foundation/window/window_manager/interfaces/kits/napi/window_runtime/window_napi/
H A Djs_window.cpp1011 napi_valuetype GetType(napi_env env, napi_value value) in GetType() argument
1014 napi_typeof(env, value, &res); in GetType()
1982 bool NapiIsCallable(napi_env env, napi_value value) in NapiIsCallable() argument
1985 napi_is_callable(env, value, &result); in NapiIsCallable()
2051 napi_value value = nullptr; in OnUnregisterWindowCallback() local
2054 ret = registerManager_->UnregisterListener(windowToken_, cbType, CaseType::CASE_WINDOW, env, value); in OnUnregisterWindowCallback()
2056 value = argv[1]; in OnUnregisterWindowCallback()
2057 if (value == nullptr || !NapiIsCallable(env, value)) { in OnUnregisterWindowCallback()
2060 ret = registerManager_->UnregisterListener(windowToken_, cbType, CaseType::CASE_WINDOW, env, value); in OnUnregisterWindowCallback()
2106 napi_value value = argv[1]; OnBindDialogTarget() local
2319 napi_value value = argv[1]; OnLoadContent() local
[all...]
/third_party/elfutils/src/
H A Dreadelf.c80 /* argp key value for --elf-section, non-ascii. */
83 /* argp key value for --dwarf-skeleton, non-ascii. */
86 /* argp key value for --dyn-syms, non-ascii. */
1213 get_visibility_type (int value) in get_visibility_type() argument
1215 switch (value) in get_visibility_type()
1851 error_exit (0, _("invalid sh_link value in section %zu"), in handle_dynamic()
2532 error_exit (0, _("invalid sh_link value in section %zu"), in handle_symtab()
2797 error_exit (0, _("invalid sh_link value in section %zu"), in handle_verneed()
2872 error_exit (0, _("invalid sh_link value in section %zu"), in handle_verdef()
3175 error_exit (0, _("invalid sh_link value i in handle_versym()
3784 uint64_t value = 0; print_attributes() local
11783 convert(Elf *core, Elf_Type type, uint_fast16_t count, void *value, const void *data, size_t size) convert() argument
12215 union { TYPES; uint64_t b128[2]; } value; handle_core_register() local
[all...]
/foundation/arkui/ace_engine/frameworks/core/components/web/resource/
H A Dweb_delegate.cpp1104 const std::string& data = webData.value(); in LoadDataWithRichText()
1127 const std::string& data = webData.value(); in LoadDataWithRichText()
1544 const std::string& value, in SetCookie()
1548 return cookieManager_->SetCookie(url, value, incognitoMode); in SetCookie()
1762 sharedRenderProcessToken_ = sharedRenderProcessToken ? sharedRenderProcessToken.value() : ""; in PrepareInitOHOSWeb()
2341 webController->SetSetCookieImpl([weak = WeakClaim(this)](const std::string& url, const std::string& value) { in SetWebCallBack()
2344 return delegate->SetCookie(url, value, delegate->incognitoMode_); in SetWebCallBack()
2547 delegate->nweb_->Load(src.value()); in InitWebViewWithWindow()
2635 customScheme = webData.value(); in GetCustomScheme()
2865 initArgs->AddArg(std::string("--init-richtext-data=").append(delegate->richtextData_.value())); in InitWebViewWithSurface()
1543 SetCookie(const std::string& url, const std::string& value, bool incognitoMode) SetCookie() argument
[all...]
/foundation/arkui/ace_engine/test/unittest/core/pattern/picker/
H A Ddate_picker_test_ng.cpp298 EXPECT_EQ(Color::RED, pickerProperty->GetDisappearColor().value()); in HWTEST_F()
299 EXPECT_EQ(Dimension(TEST_FONT_SIZE), pickerProperty->GetDisappearFontSize().value()); in HWTEST_F()
300 EXPECT_EQ(Ace::FontWeight::BOLD, pickerProperty->GetDisappearWeight().value()); in HWTEST_F()
381 EXPECT_EQ(Color::RED, pickerProperty->GetColor().value()); in HWTEST_F()
382 EXPECT_EQ(Dimension(10), pickerProperty->GetFontSize().value()); in HWTEST_F()
383 EXPECT_EQ(Ace::FontWeight::BOLD, pickerProperty->GetWeight().value()); in HWTEST_F()
464 EXPECT_EQ(Color::RED, pickerProperty->GetSelectedColor().value()); in HWTEST_F()
465 EXPECT_EQ(Dimension(TEST_FONT_SIZE), pickerProperty->GetSelectedFontSize().value()); in HWTEST_F()
466 EXPECT_EQ(Ace::FontWeight::BOLD, pickerProperty->GetSelectedWeight().value()); in HWTEST_F()
2705 * @tc.expected: The return value i in HWTEST_F()
[all...]
/third_party/backends/backend/
H A Drts8891.c299 * returned in the value pointed to by version_code. If that pointer
588 * valid option. Its value is an integer that specifies the number of
612 * sets automatic value for an option , called by sane_control_option after
640 /* we set up to the lowest available dpi value */ in set_automatic_value()
909 * Gets or sets an option value.
912 * This function is used to set or inquire the current value of option
916 * below. The value of the option is passed through argument val. It
917 * is a pointer to the memory that holds the option value. The memory
919 * value (determined by member size in the corresponding option
922 * The only exception to this rule is that when setting the value o
6286 unsigned int value, red_code, blue_code, green_code; send_calibration_data() local
[all...]
/third_party/mesa3d/src/compiler/glsl/
H A Dast_to_hir.cpp813 * Validates that a value can be assigned to a location with a specified type
840 * If a per-vertex output variable is used as an l-value, it is an error in validate_assignment()
913 is_initializer ? "initializer" : "value", in validate_assignment()
995 * the RHS. If the LHS is an l-value and a whole array, it must be a in do_assignment()
997 * is either not an l-value or not a whole array. in do_assignment()
1033 * but not post_inc) need the converted assigned value as an rvalue in do_assignment()
1289 * this creates a constant value of 1.0 having type float.
1853 * the if-statement assigns a value to the anonymous temporary. This in do_hir()
1854 * temporary is the r-value of the expression. in do_hir()
1915 result = cond_val->value in do_hir()
6700 unsigned value; global() member
[all...]
/foundation/multimedia/media_library/frameworks/innerkitsimpl/test/unittest/medialibrary_vision_test/src/
H A Dmedialibrary_vision_test.cpp614 MEDIA_INFO_LOG("Vision_Total_Test_001::key = %{public}d, value = %{public}d End", status, ocr); in HWTEST_F()
2310 shared_ptr<DataShare::DataShareResultSet> QueryPortraitAlbumTest(string column, string value) in QueryPortraitAlbumTest() argument
2316 predicates.EqualTo(column, value); in QueryPortraitAlbumTest()
2428 int SetDisplayLevelTest(string column, int value, int albumId) in SetDisplayLevelTest() argument
2438 valuesBucket.Put(column, value); in SetDisplayLevelTest()
2442 int SetDisplayLevelErrorTest(string column, int value) in SetDisplayLevelErrorTest() argument
2450 valuesBucket.Put(column, value); in SetDisplayLevelErrorTest()
2909 void SetFavorite(string tagId, int value) in SetFavorite() argument
2920 valuesBucket.Put(USER_DISPLAY_LEVEL, value); in SetFavorite()
/foundation/window/window_manager/window_scene/interfaces/kits/napi/scene_session_manager/
H A Djs_scene_session_manager.cpp1091 napi_value value = argv[1]; in OnRegisterCallback() local
1092 if (value == nullptr || !NapiIsCallable(env, value)) { in OnRegisterCallback()
1098 if (IsCallbackRegistered(env, cbType, value)) { in OnRegisterCallback()
1112 napi_create_reference(env, value, 1, &result); in OnRegisterCallback()
2815 int32_t value; in OnReportData() local
2816 if (!ConvertFromJsValue(env, argv[ARG_INDEX_ONE], value)) { // second args is int value in OnReportData()
2817 WLOGFE("[NAPI]Failed to convert parameter to value"); in OnReportData()
2841 OHOS::ResourceSchedule::ResSchedClient::GetInstance().ReportData(resType, value, mapPayloa in OnReportData()
[all...]
/third_party/icu/icu4c/source/test/intltest/
H A Dloctest.cpp1319 // The currency keyword value is as long as the destination buffer. in TestEuroSupport()
3928 err("Expected to get keyword value %s, got %s\n", testCases[i].expectedKeywords[j], keyword); in TestKeywordVariants()
3957 err("Expected to get keyword value %s, got %s\n", testCases[i].expectedKeywords[j], keyword); in TestKeywordVariants()
4205 const char *value; in TestSetKeywordValue() member
4221 l.setKeywordValue(testCases[i].keyword, testCases[i].value, status); in TestSetKeywordValue()
4229 if(uprv_strcmp(testCases[i].value, buffer) != 0) { in TestSetKeywordValue()
4231 testCases[i].value, testCases[i].keyword, buffer); in TestSetKeywordValue()
4330 loc2.setKeywordValue("key", "value", status); in TestGetBaseName()
4331 if (strcmp("en_US@key=value", loc2.getName())) { in TestGetBaseName()
4332 errln("%s:%d Expected \"en_US@key=value\", go in TestGetBaseName()
6519 const char* value = "efghijkl"; TestSetUnicodeKeywordValueInLongLocale() local
[all...]

Completed in 76 milliseconds

1...<<921922923924925926927928929930>>...988