Home
last modified time | relevance | path

Searched refs:field (Results 626 - 650 of 1878) sorted by relevance

1...<<21222324252627282930>>...76

/third_party/skia/third_party/externals/jinja2/
H A Dvisitor.py53 for field, old_value in node.iter_fields():
69 delattr(node, field)
71 setattr(node, field, new_node)
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dnumber_utils.h40 const DecimalFormatSymbols& symbols, Field field, in insertDigitFromSymbols()
43 return output.insertCodePoint(index, symbols.getCodePointZero() + digit, field, status); in insertDigitFromSymbols()
45 return output.insert(index, symbols.getConstDigitSymbol(digit), field, status); in insertDigitFromSymbols()
39 insertDigitFromSymbols(FormattedStringBuilder& output, int32_t index, int8_t digit, const DecimalFormatSymbols& symbols, Field field, UErrorCode& status) insertDigitFromSymbols() argument
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
H A DLazyField.java105 LazyField field = entry.getValue(); in getValue()
106 if (field == null) { in getValue()
109 return field.getValue(); in getValue()
/third_party/skia/experimental/tskit/bindings/
H A Dextension.cpp87 .field("alpha", &CompoundObj::alpha) in EMSCRIPTEN_BINDINGS()
89 .field("beta", &CompoundObj::beta) in EMSCRIPTEN_BINDINGS()
91 * This field (gamma) should be documented. in EMSCRIPTEN_BINDINGS()
95 .field("gamma", &CompoundObj::gamma); in EMSCRIPTEN_BINDINGS()
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/wpa_gui-qt4/
H A Duserdatarequest.cpp50 field = tmp; in setParams()
72 queryField->setText(field + ":"); in setParams()
89 QString cmd = QString(WPA_CTRL_RSP) + field + '-' + in sendReply()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/wpa_gui-qt4/
H A Duserdatarequest.cpp50 field = tmp; in setParams()
72 queryField->setText(field + ":"); in setParams()
89 QString cmd = QString(WPA_CTRL_RSP) + field + '-' + in sendReply()
/third_party/protobuf/src/google/protobuf/
H A Ddescriptor_database.cc269 const std::string& filename, const FieldDescriptorProto& field, in AddExtension()
271 if (!field.extendee().empty() && field.extendee()[0] == '.') { in AddExtension()
276 std::make_pair(field.extendee().substr(1), field.number()), in AddExtension()
280 << field.extendee() << " { " << field.name() << " = " in AddExtension()
281 << field.number() << " } from:" << filename; in AddExtension()
417 bool AddExtension(StringPiece filename, const FieldProto& field);
591 // Optimization: The name should be the first field i in FindNameOfFileContainingSymbol()
268 AddExtension( const std::string& filename, const FieldDescriptorProto& field, Value value) AddExtension() argument
746 AddExtension( StringPiece filename, const FieldProto& field) AddExtension() argument
[all...]
H A Ddynamic_message.h161 const FieldDescriptor* field) { in Sort()
165 reflection->GetRepeatedFieldRef<Message>(message, field); in Sort()
169 MapEntryMessageComparator comparator(field->message_type()); in Sort()
188 : field_(descriptor->field(0)) {} in MapEntryMessageComparator()
224 GOOGLE_LOG(DFATAL) << "Invalid key for map field."; in operator ()()
159 Sort(const Message& message, int map_size, const Reflection* reflection, const FieldDescriptor* field) Sort() argument
/third_party/ltp/tools/sparse/sparse-src/validation/
H A Dtransparent-union.c2 int field; member
5 int field; member
/third_party/libsnd/programs/
H A Dsndfile-metadata-set.c89 #define HANDLE_BEXT_ARG(cmd, field) \ in main()
93 info.field = argv [k] ; \ in main()
111 #define HANDLE_STR_ARG(cmd, field) \ in main()
115 info.field = argv [k] ; \ in main()
202 "Where an option is made up of a pair of a field to set (one of\n" in usage_exit()
/third_party/mesa3d/.gitlab-ci/lava/utils/
H A Dlog_follower.py16 from dataclasses import dataclass, field namespace
35 timeout_durations: dict[LogSectionType, timedelta] = field(
39 _buffer: list[str] = field(default_factory=list, init=False)
40 log_hints: LAVALogHints = field(init=False)
/third_party/protobuf/src/google/protobuf/compiler/java/
H A Djava_field.h123 const FieldGeneratorType& get(const FieldDescriptor* field) const;
134 const FieldDescriptor* field) const { in get()
135 GOOGLE_CHECK_EQ(field->containing_type(), descriptor_); in get()
136 return *field_generators_[field->index()]; in get()
179 // Print useful comments before a field's accessors.
/third_party/protobuf/src/google/protobuf/compiler/python/
H A Dpython_generator.h88 void PrintFieldDescriptor(const FieldDescriptor& field,
114 const FieldDescriptor& field,
121 const Descriptor* containing_type, const FieldDescriptor& field,
156 void FixOptionsForField(const FieldDescriptor& field) const;
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/
H A Deapol_test.py43 def set_network(self, id, field, value):
44 res = self.request("SET_NETWORK " + str(id) + " " + field + " " + value)
49 def set_network_quoted(self, id, field, value):
50 res = self.request("SET_NETWORK " + str(id) + " " + field + ' "' + value + '"')
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/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...]
/base/global/i18n/frameworks/intl/src/
H A Di18n_calendar.cpp206 void I18nCalendar::Set(UCalendarDateFields field, int32_t value) in Set() argument
210 icuCalendar->set(field, value); in Set()
215 int32_t I18nCalendar::Get(UCalendarDateFields field) const in Get()
220 return icuCalendar->get(field, status); in Get()
225 void I18nCalendar::Add(UCalendarDateFields field, int32_t amount) in Add() argument
230 icuCalendar->add(field, amount, status); in Add()
/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/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_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...]

Completed in 16 milliseconds

1...<<21222324252627282930>>...76