Home
last modified time | relevance | path

Searched refs:field (Results 26 - 50 of 1763) sorted by relevance

12345678910>>...71

/third_party/typescript/tests/baselines/reference/
H A DprivateNameInInExpressionTransform(target=es2022).js3 #field = 1;
9 #field in v; // expect Foo's 'field' WeakMap
19 v == #field in v || v; // Good precedence: (v == (#field in v)) || v
21 v << #field in v << v; // Good precedence (SyntaxError): (v << #field) in (v << v)
23 v << #field in v == v; // Good precedence (SyntaxError): ((v << #field) in v) == v
25 v == #field i
[all...]
H A DprivateNameInInExpressionTransform(target=esnext).js3 #field = 1;
9 #field in v; // expect Foo's 'field' WeakMap
19 v == #field in v || v; // Good precedence: (v == (#field in v)) || v
21 v << #field in v << v; // Good precedence (SyntaxError): (v << #field) in (v << v)
23 v << #field in v == v; // Good precedence (SyntaxError): ((v << #field) in v) == v
25 v == #field i
[all...]
H A DprivateNameStaticFieldDestructuredBinding(target=es2022).js3 static #field = 1;
13 ({ x: A.#field, y } = this.testObject());
14 ([A.#field, y] = this.testArray());
15 ({ a: A.#field, b: [A.#field] } = { a: 1, b: [2] });
16 [A.#field, [A.#field]] = [1, [2]];
17 ({ a: A.#field = 1, b: [A.#field = 1] } = { b: [] });
18 [A.#field
[all...]
H A DprivateNameStaticFieldDestructuredBinding(target=esnext).js3 static #field = 1;
13 ({ x: A.#field, y } = this.testObject());
14 ([A.#field, y] = this.testArray());
15 ({ a: A.#field, b: [A.#field] } = { a: 1, b: [2] });
16 [A.#field, [A.#field]] = [1, [2]];
17 ({ a: A.#field = 1, b: [A.#field = 1] } = { b: [] });
18 [A.#field
[all...]
H A DclassMemberInitializerWithLamdaScoping.js6 constructor(private field: string) {
9 var field = this.field;
10 console.log(field); // Using field here shouldnt be error
12 static field: number;
14 var field = Test.field;
15 console.log(field); // Using field her
[all...]
H A DprivateNameFieldAssignment.js3 #field = 0;
5 this.#field = 1;
6 this.#field += 2;
7 this.#field -= 3;
8 this.#field /= 4;
9 this.#field *= 5;
10 this.#field **= 6;
11 this.#field %= 7;
12 this.#field <<= 8;
13 this.#field >>
[all...]
/third_party/protobuf/php/src/Google/Protobuf/Internal/
H A DMessage.php99 foreach ($this->desc->getField() as $field) {
100 $setter = $field->getSetter();
101 if ($field->isMap()) {
102 $message_type = $field->getMessageType();
128 } else if ($field->getLabel() === GPBLabel::REPEATED) {
129 switch ($field->getType()) {
133 $field->getType(),
134 $field->getMessageType()->getClass());
139 $field->getType(),
140 $field
181 $field = $this->desc->getFieldByName($member); global() variable
198 $field = $this->desc->getFieldByName($member); global() variable
217 $field = $this->desc->getFieldByNumber($number); global() variable
230 $field = $this->desc->getFieldByNumber($number); global() variable
239 $field = $this->desc->getFieldByNumber($number); global() variable
255 $field = $this->desc->getFieldByNumber($number); global() variable
804 $field = $this->desc->getFieldByNumber($number); global() variable
1056 $field = $this->desc->getFieldByName($key); global() variable
1239 $field = $this->desc->getFieldByJsonName($key); global() variable
1241 $field = $this->desc->getFieldByName($key); global() variable
1501 $field = $this->desc->getField()[1]; global() variable
1510 $field = $this->desc->getField()[1]; global() variable
1985 $field = $this->desc->getField()[1]; global() variable
1994 $field = $this->desc->getField()[1]; global() variable
[all...]
/third_party/protobuf/src/google/protobuf/compiler/java/
H A Djava_helpers.cc67 // Names that should be avoided as field names.
101 std::string FieldName(const FieldDescriptor* field) { in FieldName() argument
103 // Groups are hacky: The name of the field is just the lower-cased name in FieldName()
106 if (GetType(field) == FieldDescriptor::TYPE_GROUP) { in FieldName()
107 field_name = field->message_type()->name(); in FieldName()
109 field_name = field->name(); in FieldName()
194 std::string UnderscoresToCamelCase(const FieldDescriptor* field) { in UnderscoresToCamelCase() argument
195 return UnderscoresToCamelCase(FieldName(field), false); in UnderscoresToCamelCase()
198 std::string UnderscoresToCapitalizedCamelCase(const FieldDescriptor* field) { in UnderscoresToCapitalizedCamelCase() argument
199 return UnderscoresToCamelCase(FieldName(field), tru in UnderscoresToCapitalizedCamelCase()
202 CapitalizedFieldName(const FieldDescriptor* field) CapitalizedFieldName() argument
210 UnderscoresToCamelCaseCheckReserved(const FieldDescriptor* field) UnderscoresToCamelCaseCheckReserved() argument
222 CamelCaseFieldName(const FieldDescriptor* field) CamelCaseFieldName() argument
309 FieldConstantName(const FieldDescriptor* field) FieldConstantName() argument
315 GetType(const FieldDescriptor* field) GetType() argument
319 GetJavaType(const FieldDescriptor* field) GetJavaType() argument
432 GetOneofStoredType(const FieldDescriptor* field) GetOneofStoredType() argument
500 DefaultValue(const FieldDescriptor* field, bool immutable, ClassNameResolver* name_resolver) DefaultValue() argument
579 IsDefaultValueJavaDefault(const FieldDescriptor* field) IsDefaultValueJavaDefault() argument
611 IsByteStringWithCustomDefaultValue(const FieldDescriptor* field) IsByteStringWithCustomDefaultValue() argument
725 GetCapitalizedType(const FieldDescriptor* field, bool immutable) GetCapitalizedType() argument
862 const FieldDescriptor* field = type->field(i); HasRequiredFields() local
883 const FieldDescriptor* field = descriptor->field(i); HasRepeatedFields() local
925 GetExperimentalJavaFieldTypeForSingular(const FieldDescriptor* field) GetExperimentalJavaFieldTypeForSingular() argument
940 GetExperimentalJavaFieldTypeForRepeated(const FieldDescriptor* field) GetExperimentalJavaFieldTypeForRepeated() argument
948 GetExperimentalJavaFieldTypeForPacked(const FieldDescriptor* field) GetExperimentalJavaFieldTypeForPacked() argument
960 GetExperimentalJavaFieldType(const FieldDescriptor* field) GetExperimentalJavaFieldType() argument
[all...]
H A Djava_field.cc65 ImmutableFieldGenerator* MakeImmutableGenerator(const FieldDescriptor* field, in MakeImmutableGenerator() argument
69 if (field->is_repeated()) { in MakeImmutableGenerator()
70 switch (GetJavaType(field)) { in MakeImmutableGenerator()
72 if (IsMapEntry(field->message_type())) { in MakeImmutableGenerator()
73 return new ImmutableMapFieldGenerator(field, messageBitIndex, in MakeImmutableGenerator()
77 field, messageBitIndex, builderBitIndex, context); in MakeImmutableGenerator()
81 field, messageBitIndex, builderBitIndex, context); in MakeImmutableGenerator()
84 field, messageBitIndex, builderBitIndex, context); in MakeImmutableGenerator()
87 field, messageBitIndex, builderBitIndex, context); in MakeImmutableGenerator()
90 if (IsRealOneof(field)) { in MakeImmutableGenerator()
124 MakeImmutableLiteGenerator( const FieldDescriptor* field, int messageBitIndex, Context* context) MakeImmutableLiteGenerator() argument
[all...]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/util/
H A DFieldsSet.java31 throw new InternalError("Preposterous field count " + fieldsCount); in FieldsSet()
52 public void clear(int field) { in clear() argument
53 fValues[field] = -1; in clear()
54 fIsSet[field] = false; in clear()
57 public void set(int field, int amount) { in set() argument
58 fValues[field] = amount; in set()
59 fIsSet[field] = true; in set()
62 public boolean isSet(int field) { in isSet() argument
63 return fIsSet[field]; in isSet()
66 public int get(int field) { in get() argument
186 handleParseValue(FieldsSet inheritFrom, int field, String substr) handleParseValue() argument
199 parseValueDefault(FieldsSet inheritFrom, int field, String substr) parseValueDefault() argument
222 parseValueEnum(int type, FieldsSet inheritFrom, int field, String substr) parseValueEnum() argument
232 fieldName(int field) fieldName() argument
[all...]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
H A DFieldsSet.java28 throw new InternalError("Preposterous field count " + fieldsCount); in FieldsSet()
49 public void clear(int field) { in clear() argument
50 fValues[field] = -1; in clear()
51 fIsSet[field] = false; in clear()
54 public void set(int field, int amount) { in set() argument
55 fValues[field] = amount; in set()
56 fIsSet[field] = true; in set()
59 public boolean isSet(int field) { in isSet() argument
60 return fIsSet[field]; in isSet()
63 public int get(int field) { in get() argument
183 handleParseValue(FieldsSet inheritFrom, int field, String substr) handleParseValue() argument
196 parseValueDefault(FieldsSet inheritFrom, int field, String substr) parseValueDefault() argument
219 parseValueEnum(int type, FieldsSet inheritFrom, int field, String substr) parseValueEnum() argument
229 fieldName(int field) fieldName() argument
[all...]
/third_party/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/jdkadapter/
H A DCalendarICU.java45 public void add(int field, int amount) { in add() argument
47 fIcuCal.add(field, amount); in add()
66 //public void clear(int field)
103 public int get(int field) { in get() argument
105 return fIcuCal.get(field); in get()
109 public int getActualMaximum(int field) { in getActualMaximum() argument
110 return fIcuCal.getActualMaximum(field); in getActualMaximum()
114 public int getActualMinimum(int field) { in getActualMinimum() argument
115 return fIcuCal.getActualMinimum(field); in getActualMinimum()
119 public String getDisplayName(int field, in argument
135 getDisplayNames(int field, int style, Locale locale) getDisplayNames() argument
163 getGreatestMinimum(int field) getGreatestMinimum() argument
168 getLeastMaximum(int field) getLeastMaximum() argument
173 getMaximum(int field) getMaximum() argument
183 getMinimum(int field) getMinimum() argument
217 roll(int field, boolean up) roll() argument
223 roll(int field, int amount) roll() argument
229 set(int field, int value) set() argument
303 getFieldStrings(int field, int style, DateFormatSymbols dfs) getFieldStrings() argument
323 getFieldStringsMap(int field, int style, DateFormatSymbols dfs) getFieldStringsMap() argument
[all...]
/third_party/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_helpers.cc306 bool CanInitializeByZeroing(const FieldDescriptor* field) { in CanInitializeByZeroing() argument
307 if (field->is_repeated() || field->is_extension()) return false; in CanInitializeByZeroing()
308 switch (field->cpp_type()) { in CanInitializeByZeroing()
310 return field->default_value_enum()->number() == 0; in CanInitializeByZeroing()
312 return field->default_value_int32() == 0; in CanInitializeByZeroing()
314 return field->default_value_int64() == 0; in CanInitializeByZeroing()
316 return field->default_value_uint32() == 0; in CanInitializeByZeroing()
318 return field->default_value_uint64() == 0; in CanInitializeByZeroing()
320 return field in CanInitializeByZeroing()
454 FieldName(const FieldDescriptor* field) FieldName() argument
471 EstimateAlignmentSize(const FieldDescriptor* field) EstimateAlignmentSize() argument
495 FieldConstantName(const FieldDescriptor* field) FieldConstantName() argument
511 FieldMessageTypeName(const FieldDescriptor* field, const Options& options) FieldMessageTypeName() argument
660 DefaultValue(const FieldDescriptor* field) DefaultValue() argument
671 DefaultValue(const Options& options, const FieldDescriptor* field) DefaultValue() argument
771 SafeFunctionName(const Descriptor* descriptor, const FieldDescriptor* field, const std::string& prefix) SafeFunctionName() argument
864 IsStringPieceField(const FieldDescriptor* field, const Options& options) IsStringPieceField() argument
888 IsCordField(const FieldDescriptor* field, const Options& options) IsCordField() argument
965 IsStringOrMessage(const FieldDescriptor* field) IsStringOrMessage() argument
985 EffectiveStringCType(const FieldDescriptor* field, const Options& options) EffectiveStringCType() argument
1024 FieldEnforceUtf8(const FieldDescriptor* field, const Options& options) FieldEnforceUtf8() argument
1035 GetUtf8CheckMode(const FieldDescriptor* field, const Options& options) GetUtf8CheckMode() argument
1049 GenerateUtf8CheckCode(const FieldDescriptor* field, const Options& options, bool for_parse, const char* parameters, const char* strict_function, const char* verify_function, const Formatter& format) GenerateUtf8CheckCode() argument
1094 GenerateUtf8CheckCodeForString(const FieldDescriptor* field, const Options& options, bool for_parse, const char* parameters, const Formatter& format) GenerateUtf8CheckCodeForString() argument
1103 GenerateUtf8CheckCodeForCord(const FieldDescriptor* field, const Options& options, bool for_parse, const char* parameters, const Formatter& format) GenerateUtf8CheckCodeForCord() argument
1149 IsImplicitWeakField(const FieldDescriptor* field, const Options& options, MessageSCCAnalyzer* scc_analyzer) IsImplicitWeakField() argument
1178 const FieldDescriptor* field = descriptor->field(i); GetSCCAnalysis() local
1444 GenerateArenaString(const FieldDescriptor* field) GenerateArenaString() argument
1466 GenerateStrings(const FieldDescriptor* field, bool check_utf8) GenerateStrings() argument
1532 GenerateLengthDelim(const FieldDescriptor* field) GenerateLengthDelim() argument
1650 GenerateFieldBody(internal::WireFormatLite::WireType wiretype, const FieldDescriptor* field) GenerateFieldBody() argument
1747 ExpectedTag(const FieldDescriptor* field, uint32* fallback_tag_ptr) ExpectedTag() argument
1817 GenerateFieldBody(WireFormatLite::GetTagWireType(fallback_tag), field); GenerateParseLoop() local
[all...]
/third_party/mesa3d/src/panfrost/lib/genxml/
H A Dgen_pack.py398 def overlaps(self, field):
399 return self != field and max(self.start, field.start) <= min(self.end, field.end)
414 calculated = max(field.end // 8 for field in self.fields) + 1 if len(self.fields) > 0 else 0
432 for field in self.fields:
433 if field.exact is not None:
436 field.emit_template_struct(dim)
444 def __init__(self, field, pat
[all...]
/third_party/node/deps/histogram/src/
H A Dhdr_atomic.h29 static int64_t __inline hdr_atomic_load_64(int64_t* field) in hdr_atomic_load_64() argument
32 return *field; in hdr_atomic_load_64()
35 static void __inline hdr_atomic_store_64(int64_t* field, int64_t value) in hdr_atomic_store_64() argument
38 *field = value; in hdr_atomic_store_64()
41 static int64_t __inline hdr_atomic_exchange_64(volatile int64_t* field, int64_t value) in hdr_atomic_exchange_64() argument
44 return _InterlockedExchange64(field, value); in hdr_atomic_exchange_64()
47 int64_t initial_value = *field; in hdr_atomic_exchange_64()
51 initial_value = _InterlockedCompareExchange64(field, value, comparand); in hdr_atomic_exchange_64()
59 static int64_t __inline hdr_atomic_add_fetch_64(volatile int64_t* field, int64_t value) in hdr_atomic_add_fetch_64() argument
62 return _InterlockedExchangeAdd64(field, valu in hdr_atomic_add_fetch_64()
77 hdr_atomic_compare_exchange_64(volatile int64_t* field, int64_t* expected, int64_t desired) hdr_atomic_compare_exchange_64() argument
109 hdr_atomic_load_64(int64_t* field) hdr_atomic_load_64() argument
116 hdr_atomic_store_64(int64_t* field, int64_t value) hdr_atomic_store_64() argument
121 hdr_atomic_exchange_64(volatile int64_t* field, int64_t value) hdr_atomic_exchange_64() argument
128 hdr_atomic_add_fetch_64(volatile int64_t* field, int64_t value) hdr_atomic_add_fetch_64() argument
133 hdr_atomic_compare_exchange_64(volatile int64_t* field, int64_t* expected, int64_t desired) hdr_atomic_compare_exchange_64() argument
[all...]
/third_party/mesa3d/src/broadcom/cle/
H A Dgen_pack_header.py106 # packet <field> entries in XML start from the bit after the
181 def overlaps(self, field):
182 return self != field and max(self.start, field.start) <= min(self.end, field.end)
203 for field in self.fields:
204 field.emit_template_struct(dim)
213 for field in self.fields:
214 first_byte = field.start // 8
215 last_byte = field
[all...]
/third_party/icu/icu4c/source/test/intltest/
H A Dfldset.cpp25 FieldsSet::FieldsSet(UDebugEnumType field) { in FieldsSet() argument
26 construct(field, udbg_enumCount(field)); in FieldsSet()
37 void FieldsSet::construct(UDebugEnumType field, int32_t fieldCount) { in construct() argument
38 fEnum = field; in construct()
63 str = str + UnicodeString("some field") + "=" + myVal+" not " + theirVal+", "; in diffFrom()
115 int32_t field = handleParseName(inheritFrom, kv[0], kv[1], status); in parseFrom() local
129 if(field != -1) { in parseFrom()
130 handleParseValue(inheritFrom, field, kv[1], status); in parseFrom()
167 void FieldsSet::clear(int32_t field) { in clear() argument
174 set(int32_t field, int32_t amount) set() argument
209 parseValueDefault(const FieldsSet* inheritFrom, int32_t field, const UnicodeString& substr, UErrorCode& status) parseValueDefault() argument
226 parseValueEnum(UDebugEnumType type, const FieldsSet* inheritFrom, int32_t field, const UnicodeString& substr, UErrorCode& status) parseValueEnum() argument
236 handleParseValue(const FieldsSet* inheritFrom, int32_t field, const UnicodeString& substr, UErrorCode& status) handleParseValue() argument
251 handleParseValue(const FieldsSet* inheritFrom, int32_t field, const UnicodeString& substr, UErrorCode& status) handleParseValue() argument
334 handleParseValue(const FieldsSet* inheritFrom, int32_t field, const UnicodeString& substr, UErrorCode& status) handleParseValue() argument
[all...]
/third_party/rust/crates/libc/src/unix/bsd/freebsdlike/freebsd/x86_64/
H A Dalign.rs102 .field("mc_onstack", &self.mc_onstack) in fmt()
103 .field("mc_rdi", &self.mc_rdi) in fmt()
104 .field("mc_rsi", &self.mc_rsi) in fmt()
105 .field("mc_rdx", &self.mc_rdx) in fmt()
106 .field("mc_rcx", &self.mc_rcx) in fmt()
107 .field("mc_r8", &self.mc_r8) in fmt()
108 .field("mc_r9", &self.mc_r9) in fmt()
109 .field("mc_rax", &self.mc_rax) in fmt()
110 .field("mc_rbx", &self.mc_rbx) in fmt()
111 .field("mc_rb in fmt()
[all...]
/third_party/mesa3d/src/intel/genxml/
H A Dgen_pack_header.py266 'field {} has end ({}) < start ({})'.format(self.name, self.end,
270 'bool field ({}) is too wide'.format(self.name)
361 for field in self.fields:
362 field.emit_template_struct(dim)
371 for field in self.fields:
372 if isinstance(field, Group):
373 if field.count == 1:
374 field.collect_dwords(dwords, start + field.start, dim)
376 for i in range(field
[all...]
/third_party/rust/crates/syn/tests/debug/
H A Dgen.rs24 formatter.field("name", Print::ref_cast(val)); in fmt()
33 formatter.field("colon2_token", &Present); in fmt()
36 formatter.field("args", Lite(&self.value.args)); in fmt()
45 formatter.field("attrs", Lite(&self.value.attrs)); in fmt()
47 formatter.field("pat", Lite(&self.value.pat)); in fmt()
60 formatter.field("guard", Print::ref_cast(val)); in fmt()
62 formatter.field("body", Lite(&self.value.body)); in fmt()
64 formatter.field("comma", &Present); in fmt()
72 formatter.field("ident", Lite(&self.value.ident)); in fmt()
85 formatter.field("generic in fmt()
[all...]
/third_party/protobuf/python/google/protobuf/
H A Dtext_format.py156 the order defined in source code instead of the field number, extensions
158 determined by the extension number. By default, use the field number
160 float_format (str): If set, use this to specify float field formatting
162 that has same value in wire will be printed. Also affect double field
164 double_format (str): If set, use this to specify double field formatting
167 use_field_number: If True, print field numbers instead of names.
175 force_colon: If set, a colon will be added after the field name even if the
176 field is a proto message.
215 def _IsMapEntry(field):
216 return (field
[all...]
H A Djson_format.py117 preserving_proto_field_name: If True, use the original proto field
118 names as defined in the .proto file. If False, convert the field
122 sort_keys: If True, then the output will be sorted by field names.
126 float_precision: If set, use this to specify float field valid digits.
157 preserving_proto_field_name: If True, use the original proto field
158 names as defined in the .proto file. If False, convert the field
163 float_precision: If set, use this to specify float field valid digits.
178 def _IsMapEntry(field):
179 return (field.type == descriptor.FieldDescriptor.TYPE_MESSAGE and
180 field
[all...]
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
H A DFieldInfo.java38 /** Information for a single field in a protobuf message class. */
41 private final Field field; field in FieldInfo
52 * The actual type stored in the oneof value for this field. Since the oneof value is an {@link
63 /** Constructs a new descriptor for a field. */
65 Field field, int fieldNumber, FieldType fieldType, boolean enforceUtf8) { in forField()
67 checkNotNull(field, "field"); in forField()
73 field, in forField()
88 /** Constructs a new descriptor for a packed field. */
90 Field field, in in forPackedField()
64 forField( Field field, int fieldNumber, FieldType fieldType, boolean enforceUtf8) forField() argument
89 forPackedField( Field field, int fieldNumber, FieldType fieldType, Field cachedSizeField) forPackedField() argument
114 forRepeatedMessageField( Field field, int fieldNumber, FieldType fieldType, Class<?> messageClass) forRepeatedMessageField() argument
136 forFieldWithEnumVerifier( Field field, int fieldNumber, FieldType fieldType, EnumVerifier enumVerifier) forFieldWithEnumVerifier() argument
156 forPackedFieldWithEnumVerifier( Field field, int fieldNumber, FieldType fieldType, EnumVerifier enumVerifier, Field cachedSizeField) forPackedFieldWithEnumVerifier() argument
181 forProto2OptionalField( Field field, int fieldNumber, FieldType fieldType, Field presenceField, int presenceMask, boolean enforceUtf8, EnumVerifier enumVerifier) forProto2OptionalField() argument
266 forProto2RequiredField( Field field, int fieldNumber, FieldType fieldType, Field presenceField, int presenceMask, boolean enforceUtf8, EnumVerifier enumVerifier) forProto2RequiredField() argument
298 forMapField( Field field, int fieldNumber, Object mapDefaultEntry, EnumVerifier enumVerifier) forMapField() argument
319 FieldInfo( Field field, int fieldNumber, FieldType type, Class<?> messageClass, Field presenceField, int presenceMask, boolean required, boolean enforceUtf8, OneofInfo oneof, Class<?> oneofStoredType, Object mapDefaultEntry, EnumVerifier enumVerifier, Field cachedSizeField) FieldInfo() argument
451 private Field field; global() field in FieldInfo.Builder
470 withField(Field field) withField() argument
[all...]
/third_party/protobuf/src/google/protobuf/util/
H A Dtype_resolver_util.cc114 ConvertFieldDescriptor(descriptor->field(i), type->add_fields()); in ConvertDescriptor()
149 for (const FieldDescriptor* field : fields) { in ConvertOptionsInternal()
150 if (field->is_repeated()) { in ConvertOptionsInternal()
151 const int size = reflection->FieldSize(options, field); in ConvertOptionsInternal()
153 ConvertOptionField(reflection, options, field, i, output->Add()); in ConvertOptionsInternal()
156 ConvertOptionField(reflection, options, field, -1, output->Add()); in ConvertOptionsInternal()
163 const FieldDescriptor* field, int index, in ConvertOptionField()
165 out->set_name(field->is_extension() ? field->full_name() : field in ConvertOptionField()
161 ConvertOptionField(const Reflection* reflection, const Message& options, const FieldDescriptor* field, int index, Option* out) ConvertOptionField() argument
246 ConvertFieldDescriptor(const FieldDescriptor* descriptor, Field* field) ConvertFieldDescriptor() argument
[all...]
/third_party/python/Lib/email/
H A D_parseaddr.py22 # Parse a date field
221 def __init__(self, field):
224 `field' is an unparsed address header field, containing
237 self.field = field
243 while self.pos < len(self.field):
244 if self.field[self.pos] in self.LWS + '\n\r':
245 if self.field[self.pos] not in '\n\r':
246 wslist.append(self.field[sel
[all...]

Completed in 15 milliseconds

12345678910>>...71