Home
last modified time | relevance | path

Searched refs:field (Results 676 - 700 of 1932) sorted by relevance

1...<<21222324252627282930>>...78

/foundation/distributeddatamgr/relational_store/frameworks/js/napi/rdb/include/
H A Dnapi_rdb_predicates.h51 napi_env env, napi_callback_info info, napi_value &thiz, std::string &field, const std::string fieldName);
53 napi_env env, napi_callback_info info, napi_value &thiz, int32_t &field, const std::string fieldName);
55 std::string &field, std::vector<NativeRdb::ValueObject> &value, const std::string valueType);
57 std::string &field, NativeRdb::ValueObject &value, const std::string valueType);
59 std::string &field, std::string &value, const std::string valueType);
61 std::string &field, NativeRdb::ValueObject &low, NativeRdb::ValueObject &High);
/foundation/distributeddatamgr/relational_store/frameworks/js/napi/relationalstore/include/
H A Dnapi_rdb_predicates.h48 napi_env env, napi_callback_info info, napi_value &thiz, std::string &field, const std::string fieldName);
50 napi_env env, napi_callback_info info, napi_value &thiz, int32_t &field, const std::string fieldName);
52 std::string &field, std::vector<NativeRdb::ValueObject> &value, const std::string valueType);
54 std::string &field, NativeRdb::ValueObject &value, const std::string valueType);
56 std::string &field, std::string &value, const std::string valueType);
58 std::string &field, NativeRdb::ValueObject &low, NativeRdb::ValueObject &High);
/third_party/ffmpeg/libavcodec/
H A Dpthread_slice.c210 void ff_thread_report_progress2(AVCodecContext *avctx, int field, int thread, int n) in ff_thread_report_progress2() argument
217 entries[field] +=n; in ff_thread_report_progress2()
222 void ff_thread_await_progress2(AVCodecContext *avctx, int field, int thread, int shift) in ff_thread_await_progress2() argument
228 if (!entries || !field) return; in ff_thread_await_progress2()
234 while ((entries[field - 1] - entries[field]) < shift){ in ff_thread_await_progress2()
/third_party/node/src/
H A Dnode_realm.cc107 Local<TypeName> field = PropertyName(); \ in Serialize()
108 if (!field.IsEmpty()) { \ in Serialize()
109 size_t index = creator->AddData(ctx, field); \ in Serialize()
140 Local<TypeName> field; \ in DeserializeProperties()
141 if (!maybe_field.ToLocal(&field)) { \ in DeserializeProperties()
145 set_##PropertyName(field); \ in DeserializeProperties()
/third_party/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/Reflection/
H A DDescriptorsTest.cs109 FieldDescriptor field = messageType.Fields.InDeclarationOrder()[0]; in MessageDescriptor()
110 Assert.AreEqual("single_int32", field.Name); in MessageDescriptor()
111 Assert.AreEqual(field, messageType.FindDescriptor<FieldDescriptor>("single_int32")); in MessageDescriptor()
113 Assert.AreEqual(field, messageType.FindFieldByNumber(1)); in MessageDescriptor()
221 foreach (var field in expectedFields) in OneofDescriptor()
223 Assert.AreSame(descriptor, field.ContainingOneof); in OneofDescriptor()
/third_party/protobuf/src/google/protobuf/compiler/
H A Dparser.h224 // given parent. E.g. a field's location is nested within the location
281 // SourceCodeInfo.location repeated field. For top-level elements,
356 // Parse a field of a message. If the field is a group, its type will be
363 // correct field number to use.
364 bool ParseMessageField(FieldDescriptorProto* field,
373 bool ParseMessageFieldNoLabel(FieldDescriptorProto* field,
453 // Parses field options, i.e. the stuff in square brackets at the end
454 // of a field definition. Also parses default value.
455 bool ParseFieldOptions(FieldDescriptorProto* field,
[all...]
/third_party/protobuf/objectivec/
H A DGPBDictionary_PackagePrivate.h41 - (size_t)computeSerializedSizeAsField:(GPBFieldDescriptor *)field;
43 asField:(GPBFieldDescriptor *)field;
481 GPBFieldDescriptor *field);
487 GPBFieldDescriptor *field);
492 GPBFieldDescriptor *field);
497 GPBFieldDescriptor *field,
/third_party/typescript/tests/baselines/reference/
H A DparserRealSource7.js36 var field = new ValueLocation();
37 field.typeLink = new TypeLink();
38 field.typeLink.ast = ast;
39 field.typeLink.type = classType.instanceType;
43 context.checker.locationInfo.unitIndex, true, field);
45 field.symbol = fieldSymbol;
478 var field = new ValueLocation();
484 field);
486 field.symbol = fieldSymbol;
493 field
[all...]
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/
H A DMapTest.java713 FieldDescriptor field = mapEntry.getDescriptorForType().findFieldByName(name); in getFieldValue()
714 return mapEntry.getField(field); in getFieldValue()
719 FieldDescriptor field = mapEntry.getDescriptorForType().findFieldByName(name); in setFieldValue()
720 mapEntry.setField(field, value); in setFieldValue()
725 FieldDescriptor field = f(name); in assertHasMapValues()
726 for (Object entry : (List<?>) message.getField(field)) { in assertHasMapValues()
733 assertEquals(values.size(), message.getRepeatedFieldCount(field)); in assertHasMapValues()
734 for (int i = 0; i < message.getRepeatedFieldCount(field); i++) { in assertHasMapValues()
735 Message mapEntry = (Message) message.getRepeatedField(field, i); in assertHasMapValues()
744 FieldDescriptor field in newMapEntry()
[all...]
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/rust/extension/
H A Dextension_util.cpp156 for (auto &field : dbTable.fields) { in Convert()
157 size_t fdLen = field.colName.size() + field.alias.size() + sizeof(int) + sizeof(bool) * 2; in Convert()
159 .colName = reinterpret_cast<const unsigned char *>(field.colName.c_str()), in Convert()
160 .colNameLen = field.colName.size(), in Convert()
161 .alias = reinterpret_cast<const unsigned char *>(field.alias.c_str()), in Convert()
162 .aliasLen = field.alias.size(), in Convert()
163 .typ = static_cast<unsigned int>(field.type), in Convert()
164 .primary = field.primary, in Convert()
165 .nullable = field in Convert()
[all...]
/third_party/mesa3d/src/glx/
H A Dglxextensions.c340 * Convert the server's extension string to a bit-field.
343 * \param server_support Bit-field of supported extensions.
400 char *env, *field; in __ParseExtensionOverride() local
410 for (field = strtok(env, " "); field!= NULL; field = strtok(NULL, " ")) { in __ParseExtensionOverride()
413 switch (field[0]) { in __ParseExtensionOverride()
416 ++field; in __ParseExtensionOverride()
420 ++field; in __ParseExtensionOverride()
427 ext = find_extension(ext_list, field, strle in __ParseExtensionOverride()
[all...]
/third_party/mksh/
H A Dcheck.pl151 # of multiple fields, delimited by a field separator character.
190 belongs to (see category field).
973 local($field, $val, $flags, $do_chop, $need_redo, $start_lineno);
988 ($field, $val) = ($1, $2);
989 $sfield = $field;
990 $flags = $test_fields{$field};
992 print STDERR "$prog:$file:$.: unrecognised field \"$field\"\n";
996 local($cnt) = $cnt{$field}++;
997 $test{$field}
[all...]
/third_party/rust/crates/libc/src/unix/linux_like/linux/gnu/b64/x86_64/
H A Dmod.rs63 this field"
300 // FIXME: the shadow stack field requires glibc >= 2.28.
326 // Ignore padding field in eq()
335 .field("cwd", &self.cwd) in fmt()
336 .field("ftw", &self.ftw) in fmt()
337 .field("fop", &self.fop) in fmt()
338 .field("rip", &self.rip) in fmt()
339 .field("rdp", &self.rdp) in fmt()
340 .field("mxcsr", &self.mxcsr) in fmt()
341 .field("mxcr_mas in fmt()
[all...]
/third_party/rust/crates/libc/src/unix/linux_like/linux/musl/b64/x86_64/
H A Dmod.rs168 // Ignore padding field in eq()
177 .field("cwd", &self.cwd) in fmt()
178 .field("ftw", &self.ftw) in fmt()
179 .field("fop", &self.fop) in fmt()
180 .field("rip", &self.rip) in fmt()
181 .field("rdp", &self.rdp) in fmt()
182 .field("mxcsr", &self.mxcsr) in fmt()
183 .field("mxcr_mask", &self.mxcr_mask) in fmt()
184 .field("st_space", &self.st_space) in fmt()
185 // FIXME: .field("xmm_spac in fmt()
[all...]
/third_party/protobuf/java/compatibility_tests/v2.5.0/tests/src/main/java/com/google/protobuf/test/
H A DDescriptorsTest.java168 FieldDescriptor field = messageType.getFields().get(0); in testDescriptor()
169 assertEquals("optional_int32", field.getName()); in testDescriptor()
170 assertEquals(field, messageType.findFieldByName("optional_int32")); in testDescriptor()
172 assertEquals(field, messageType.findFieldByNumber(1)); in testDescriptor()
363 FieldDescriptor field = descriptor.findFieldByName("field1"); in testCustomOptions()
364 assertNotNull(field); in testCustomOptions()
367 field.getOptions().hasExtension(UnittestCustomOptions.fieldOpt1)); in testCustomOptions()
369 field.getOptions().getExtension(UnittestCustomOptions.fieldOpt1)); in testCustomOptions()
466 * Tests the translate/crosslink for an example where a message field's name
641 FieldDescriptor field in testComplexNamespacePublicDependency()
[all...]
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
H A DResourcesHLSL.cpp40 static TString InterfaceBlockFieldTypeString(const TField &field, in InterfaceBlockFieldTypeString() argument
44 const TType &fieldType = *field.type(); in InterfaceBlockFieldTypeString()
278 // Sampler that is a field of a uniform structure. in assignSamplerInStructUniformRegister()
836 const TField &field = *interfaceBlock.fields()[0]; in uniformBlockWithOneLargeArrayMemberString() local
838 typeString = InterfaceBlockFieldTypeString(field, blockStorage, true); in uniformBlockWithOneLargeArrayMemberString()
839 const TType &fieldType = *field.type(); in uniformBlockWithOneLargeArrayMemberString()
845 Decorate(field.name()) + "; };\n"; in uniformBlockWithOneLargeArrayMemberString()
856 Decorate(field.name()) + ";\n"; in uniformBlockWithOneLargeArrayMemberString()
867 Decorate(field.name()) + +" : register(t" + str(registerIndex) + ");\n"; in uniformBlockWithOneLargeArrayMemberString()
871 hlsl += "StructuredBuffer <" + typeString + "> " + Decorate(field in uniformBlockWithOneLargeArrayMemberString()
921 const TField &field = *interfaceBlock.fields()[typeIndex]; uniformBlockMembersString() local
[all...]
/third_party/skia/third_party/externals/freetype/src/cff/
H A Dcffparse.c1425 const CFF_Field_Handler* field; in FT_LOCAL_DEF() local
1446 for ( field = cff_field_handlers; field->kind; field++ ) in FT_LOCAL_DEF()
1448 if ( field->code == (FT_Int)code ) in FT_LOCAL_DEF()
1450 /* we found our field's handler; read it */ in FT_LOCAL_DEF()
1452 FT_Byte* q = (FT_Byte*)parser->object + field->offset; in FT_LOCAL_DEF()
1456 FT_TRACE4(( " %s", field->id )); in FT_LOCAL_DEF()
1461 if ( field->kind != cff_kind_delta && num_args < 1 ) in FT_LOCAL_DEF()
1464 switch ( field in FT_LOCAL_DEF()
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/
H A Dwpas_glue.c798 enum wpa_ctrl_req_type wpa_supplicant_ctrl_req_from_string(const char *field) in wpa_supplicant_ctrl_req_from_string() argument
800 if (os_strcmp(field, "IDENTITY") == 0) in wpa_supplicant_ctrl_req_from_string()
802 else if (os_strcmp(field, "PASSWORD") == 0) in wpa_supplicant_ctrl_req_from_string()
804 else if (os_strcmp(field, "NEW_PASSWORD") == 0) in wpa_supplicant_ctrl_req_from_string()
806 else if (os_strcmp(field, "PIN") == 0) in wpa_supplicant_ctrl_req_from_string()
808 else if (os_strcmp(field, "OTP") == 0) in wpa_supplicant_ctrl_req_from_string()
810 else if (os_strcmp(field, "PASSPHRASE") == 0) in wpa_supplicant_ctrl_req_from_string()
812 else if (os_strcmp(field, "SIM") == 0) in wpa_supplicant_ctrl_req_from_string()
814 else if (os_strcmp(field, "PSK_PASSPHRASE") == 0) in wpa_supplicant_ctrl_req_from_string()
816 else if (os_strcmp(field, "EXT_CERT_CHEC in wpa_supplicant_ctrl_req_from_string()
822 wpa_supplicant_ctrl_req_to_string(enum wpa_ctrl_req_type field, const char *default_txt, const char **txt) wpa_supplicant_ctrl_req_to_string() argument
909 wpa_supplicant_eap_param_needed(void *ctx, enum wpa_ctrl_req_type field, const char *default_txt) wpa_supplicant_eap_param_needed() argument
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/
H A Dwpas_glue.c869 enum wpa_ctrl_req_type wpa_supplicant_ctrl_req_from_string(const char *field) in wpa_supplicant_ctrl_req_from_string() argument
871 if (os_strcmp(field, "IDENTITY") == 0) in wpa_supplicant_ctrl_req_from_string()
873 else if (os_strcmp(field, "PASSWORD") == 0) in wpa_supplicant_ctrl_req_from_string()
875 else if (os_strcmp(field, "NEW_PASSWORD") == 0) in wpa_supplicant_ctrl_req_from_string()
877 else if (os_strcmp(field, "PIN") == 0) in wpa_supplicant_ctrl_req_from_string()
879 else if (os_strcmp(field, "OTP") == 0) in wpa_supplicant_ctrl_req_from_string()
881 else if (os_strcmp(field, "PASSPHRASE") == 0) in wpa_supplicant_ctrl_req_from_string()
883 else if (os_strcmp(field, "SIM") == 0) in wpa_supplicant_ctrl_req_from_string()
885 else if (os_strcmp(field, "PSK_PASSPHRASE") == 0) in wpa_supplicant_ctrl_req_from_string()
887 else if (os_strcmp(field, "EXT_CERT_CHEC in wpa_supplicant_ctrl_req_from_string()
893 wpa_supplicant_ctrl_req_to_string(enum wpa_ctrl_req_type field, const char *default_txt, const char **txt) wpa_supplicant_ctrl_req_to_string() argument
980 wpa_supplicant_eap_param_needed(void *ctx, enum wpa_ctrl_req_type field, const char *default_txt) wpa_supplicant_eap_param_needed() argument
[all...]
/foundation/distributedhardware/distributed_hardware_fwk/interfaces/kits/napi/src/
H A Dnative_distributedhardwarefwk_js.cpp82 napi_value field = nullptr; in JsObjectToString() local
85 napi_get_named_property(env, object, fieldStr.c_str(), &field); in JsObjectToString()
86 NAPI_CALL_RETURN_VOID(env, napi_typeof(env, field, &valueType)); in JsObjectToString()
91 NAPI_CALL_RETURN_VOID(env, napi_get_value_string_utf8(env, field, dest, destLen, &result)); in JsObjectToString()
103 napi_value field = nullptr; in JsObjectToInt() local
106 napi_get_named_property(env, object, fieldStr.c_str(), &field); in JsObjectToInt()
107 NAPI_CALL_RETURN_VOID(env, napi_typeof(env, field, &valueType)); in JsObjectToInt()
111 napi_get_value_int32(env, field, &fieldRef); in JsObjectToInt()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DChineseCalendar.java43 * <code>EXTENDED_YEAR</code> field contains the sequential year count.
44 * The <code>ERA</code> field contains the cycle number, and the
45 * <code>YEAR</code> field contains the year of the cycle, a value between
54 * <p>Because <code>ChineseCalendar</code> defines an additional field and
55 * redefines the way the <code>ERA</code> field is used, it requires a new
169 * @param year The value used to set the calendar's {@link #YEAR YEAR} time field.
170 * @param month The value used to set the calendar's {@link #MONTH MONTH} time field.
173 * time field.
174 * @param date The value used to set the calendar's {@link #DATE DATE} time field.
186 * @param year the value used to set the {@link #YEAR YEAR} time field i
433 handleGetLimit(int field, int limitType) handleGetLimit() argument
561 add(int field, int amount) add() argument
581 roll(int field, int amount) roll() argument
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/
H A DChineseCalendar.java44 * <code>EXTENDED_YEAR</code> field contains the sequential year count.
45 * The <code>ERA</code> field contains the cycle number, and the
46 * <code>YEAR</code> field contains the year of the cycle, a value between
55 * <p>Because <code>ChineseCalendar</code> defines an additional field and
56 * redefines the way the <code>ERA</code> field is used, it requires a new
167 * @param year The value used to set the calendar's {@link #YEAR YEAR} time field.
168 * @param month The value used to set the calendar's {@link #MONTH MONTH} time field.
171 * time field.
172 * @param date The value used to set the calendar's {@link #DATE DATE} time field.
183 * @param year the value used to set the {@link #YEAR YEAR} time field i
422 handleGetLimit(int field, int limitType) handleGetLimit() argument
544 add(int field, int amount) add() argument
563 roll(int field, int amount) roll() argument
[all...]
/third_party/libbpf/src/
H A Dlibbpf_internal.h347 #define OPTS_HAS(opts, field) \
348 ((opts) && opts->sz >= offsetofend(typeof(*(opts)), field))
349 #define OPTS_GET(opts, field, fallback_value) \
350 (OPTS_HAS(opts, field) ? (opts)->field : fallback_value)
351 #define OPTS_SET(opts, field, value) \
353 if (OPTS_HAS(opts, field)) \
354 (opts)->field = value; \
/third_party/node/test/common/
H A Dreport.js78 fields.forEach((field) => {
89 if (Array.isArray(field)) {
90 [actual, expect] = field;
92 actual = field;
228 heapSpaceFields.forEach((field) => {
229 assert(Number.isSafeInteger(space[field]));
254 // This field may not exsit
334 Object.keys(actual).forEach((field) => {
335 assert(expected.includes(field), `'${field}' no
[all...]
/third_party/rust/crates/libc/src/unix/linux_like/android/b32/
H A Darm.rs74 .field("uc_sigmask_with_padding", &self.uc_sigmask) in fmt()
95 .field("uc_sigmask", unsafe { &self.uc_sigmask }) in fmt()
114 // Ignore padding field in eq()
121 .field("uc_flags", &self.uc_flags) in fmt()
122 .field("uc_link", &self.uc_link) in fmt()
123 .field("uc_stack", &self.uc_stack) in fmt()
124 .field("uc_mcontext", &self.uc_mcontext) in fmt()
125 .field( in fmt()
129 .field("uc_regspace", &&self.uc_regspace[..]) in fmt()
130 // Ignore padding field in fmt()
[all...]

Completed in 26 milliseconds

1...<<21222324252627282930>>...78