| /third_party/skia/third_party/externals/jinja2/ |
| H A D | visitor.py | 53 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 D | number_utils.h | 40 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 D | LazyField.java | 105 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 D | extension.cpp | 87 .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 D | userdatarequest.cpp | 50 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 D | userdatarequest.cpp | 50 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 D | descriptor_database.cc | 269 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 D | dynamic_message.h | 161 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 D | transparent-union.c | 2 int field; member 5 int field; member
|
| /third_party/libsnd/programs/ |
| H A D | sndfile-metadata-set.c | 89 #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 D | log_follower.py | 16 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 D | java_field.h | 123 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 D | python_generator.h | 88 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 D | eapol_test.py | 43 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 D | wpas_glue.c | 798 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 D | parserRealSource7.js | 36 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 D | MapTest.java | 713 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 D | i18n_calendar.cpp | 206 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 D | pthread_slice.c | 210 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 D | node_realm.cc | 107 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 D | DescriptorsTest.cs | 109 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 D | parser.h | 224 // 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 D | GPBDictionary_PackagePrivate.h | 41 - (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 D | cffparse.c | 1425 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 D | wpas_glue.c | 869 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...] |