| /base/hiviewdfx/hiview/core/ |
| H A D | plugin_config.cpp | 36 std::string field = "";
in StartParse() local 48 HIVIEW_LOGW("match field failed.");
in StartParse() 53 field = StringUtil::TrimStr(result[fieldNameField]);
in StartParse() 55 HIVIEW_LOGD("find field:%{public}s.", field.c_str());
in StartParse() 59 if (field == "plugins") {
in StartParse() 61 } else if (field == "pipelines") {
in StartParse() 63 } else if (field == "pipelinegroups") {
in StartParse()
|
| /third_party/rust/crates/clap/clap_derive/src/derives/ |
| H A D | parser.rs | 42 .map(|field| { in derive_parser() 43 let item = Item::from_args_field(field, item.casing(), item.env_casing())?; in derive_parser() 44 Ok((field, item)) in derive_parser() 58 .map(|field| { in derive_parser() 59 let item = Item::from_args_field(field, item.casing(), item.env_casing())?; in derive_parser() 60 Ok((field, item)) in derive_parser()
|
| /third_party/skia/third_party/externals/angle2/src/compiler/translator/ |
| H A D | ValidateTypeSizeLimitations.cpp | 124 for (const TField *field : fields) in setFieldOrVariableProperties() 129 setFieldProperties(*field->type(), field->name(), staticUse, isShaderIOBlock, in setFieldOrVariableProperties() 142 for (const TField *field : fields) in setFieldOrVariableProperties() 145 setFieldProperties(*field->type(), field->name(), staticUse, true, isPatch, in setFieldOrVariableProperties()
|
| H A D | OutputGLSLBase.cpp | 290 void TOutputGLSLBase::writeFieldLayoutQualifier(const TField *field) in writeFieldLayoutQualifier() argument 292 if (!field->type()->isMatrix() && !field->type()->isStructureContainingMatrices()) in writeFieldLayoutQualifier() 300 switch (field->type()->getLayoutQualifier().matrixPacking) in writeFieldLayoutQualifier() 413 // Function arguments are the only place (other than image/SSBO/field declaration) where in writeVariableType() 631 // and "bar" is field. In AST, it is represented as a binary in visitBinary() 633 // The node itself represents ".". The struct field "bar" is in visitBinary() 638 const TField *field = structure->fields()[index->getIConst(0)]; in visitBinary() local 640 out << hashFieldName(field); in visitBinary() 651 const TField *field in visitBinary() local 1122 hashFieldName(const TField *field) hashFieldName() argument 1160 const TField *field = fields[i]; declareStruct() local [all...] |
| /third_party/protobuf/src/google/protobuf/ |
| H A D | descriptor_unittest.cc | 748 foo_ = message_->field(0); in SetUp() 749 bar_ = message_->field(1); in SetUp() 750 baz_ = message_->field(2); in SetUp() 751 qux_ = message_->field(3); in SetUp() 757 foo2_ = message2_->field(0); in SetUp() 758 bar2_ = message2_->field(1); in SetUp() 759 quux2_ = message2_->field(2); in SetUp() 765 map_ = message3_->field(0); in SetUp() 819 EXPECT_EQ(foo_, message_->field(0)); in TEST_F() 820 EXPECT_EQ(bar_, message_->field( in TEST_F() 2287 FieldDescriptorProto* field = AddField( GetFieldDescriptorOfType() local 2311 const FieldDescriptor* field = GetFieldDescriptorOfType(type); GetTypeNameForFieldType() local 2316 const FieldDescriptor* field = GetFieldDescriptorOfType(type); GetCppTypeForFieldType() local 2322 const FieldDescriptor* field = GetFieldDescriptorOfType(type); GetCppTypeNameForFieldType() local 2328 const FieldDescriptor* field = GetFieldDescriptorOfType(type); GetMessageDescriptorForFieldType() local 2334 const FieldDescriptor* field = GetFieldDescriptorOfType(type); GetEnumDescriptorForFieldType() local 3002 const FieldDescriptor* field = message->FindFieldByName("field1"); TEST() local 3445 const FieldDescriptor* field = msg->FindFieldByName("fieldname"); TEST() local 7070 FieldDescriptorProto* field = message->add_field(); PopulateFile() local 7875 const FieldDescriptor* field = desc->FindFieldByName("bar"); TEST_F() local 7911 const FieldDescriptor* field = desc->FindFieldByName("enum1"); TEST_F() local 7956 const FieldDescriptor* field = desc->FindFieldByName("message1"); TEST_F() local [all...] |
| /third_party/rust/crates/libc/src/unix/hermit/ |
| H A D | mod.rs | 119 .field("d_ino", &self.d_ino) in fmt() 120 .field("d_off", &self.d_off) in fmt() 121 .field("d_reclen", &self.d_reclen) in fmt() 122 // FIXME: .field("d_name", &self.d_name) in fmt() 149 .field("sun_family", &self.sun_family) in fmt() 150 // FIXME: .field("sun_path", &self.sun_path) in fmt() 176 .field("sa_len", &self.sa_len) in fmt() 177 .field("sa_family", &self.sa_family) in fmt() 178 // FIXME: .field("sa_data", &self.sa_data) in fmt() 207 .field("sin_le in fmt() [all...] |
| /third_party/ffmpeg/libavformat/ |
| H A D | rtpdec_rfc4175.c | 37 int field; member 210 if (!data->interlaced || data->field) { in rfc4175_finalize_packet() 218 data->field = 0; in rfc4175_finalize_packet() 228 int length, line, offset, cont, field; in rfc4175_handle_packet() local 237 if (data->frame && (!data->interlaced || data->field)) { in rfc4175_handle_packet() 242 * or the previous second field (interlace). Let's finalize the in rfc4175_handle_packet() 282 field = (headers[2] & 0x80) >> 7; in rfc4175_handle_packet() 287 data->field = field; in rfc4175_handle_packet() 296 line = 2 * line + field; in rfc4175_handle_packet() [all...] |
| /third_party/mesa3d/src/amd/vulkan/ |
| H A D | radv_radeon_winsys.h | 121 #define RADEON_SURF_GET(v, field) \ 122 (((v) >> RADEON_SURF_##field##_SHIFT) & RADEON_SURF_##field##_MASK) 123 #define RADEON_SURF_SET(v, field) (((v)&RADEON_SURF_##field##_MASK) << RADEON_SURF_##field##_SHIFT) 124 #define RADEON_SURF_CLR(v, field) \ 125 ((v) & ~(RADEON_SURF_##field##_MASK << RADEON_SURF_##field##_SHIFT))
|
| /third_party/node/deps/v8/src/torque/ |
| H A D | kythe-data.cc | 87 kythe_entity_t KytheData::AddClassFieldDefinition(const Field* field) { in AddClassFieldDefinition() argument 88 DCHECK(field); in AddClassFieldDefinition() 90 // Check if we know that field already. in AddClassFieldDefinition() 91 auto it = that->class_fields_.find(field); in AddClassFieldDefinition() 93 // Register this field. in AddClassFieldDefinition() 94 KythePosition pos = MakeKythePosition(field->pos); in AddClassFieldDefinition() 96 KytheConsumer::Kind::ClassField, field->name_and_type.name, pos); in AddClassFieldDefinition() 97 that->class_fields_.insert(it, std::make_pair(field, field_id)); in AddClassFieldDefinition() 102 const Field* field) { in AddClassFieldUse() 103 DCHECK(field); in AddClassFieldUse() 101 AddClassFieldUse(SourcePosition use_position, const Field* field) AddClassFieldUse() argument [all...] |
| /third_party/protobuf/src/google/protobuf/util/internal/ |
| H A D | proto_writer.h | 118 // Renders a DataPiece 'value' into a field whose wire type is determined 119 // from the given field 'name'. 166 // Constructor for the root element. No parent nor field. 170 // Constructor for a field of an element. 171 ProtoElement(ProtoElement* parent, const google::protobuf::Field* field, 178 // - computes the space needed by the size field, and augment the 190 // Registers field for accounting required fields. 191 void RegisterField(const google::protobuf::Field* field); 214 // Describes the element as a field in the parent message. 265 // Lookup the field i [all...] |
| /third_party/skia/third_party/externals/angle2/src/compiler/translator/TranslatorMetalDirect/ |
| H A D | EmitMetal.cpp | 42 explicit VarDecl(const TField &field) : mField(&field), mIsField(true) {} in VarDecl() 50 ANGLE_INLINE const TField &field() const in field() function 60 const TType &type() const { return isField() ? *field().type() : variable().getType(); } in type() 64 return isField() ? field().symbolType() : variable().symbolType(); in symbolType() 153 void emitFieldDeclaration(const TField &field, 156 void emitAttributeDeclaration(const TField &field, FieldAnnotationIndices &annotationIndices); 157 void emitUniformBufferDeclaration(const TField &field, 857 emitNameOf(object.field()); in emitNameOf() 1008 void GenMetalTraverser::emitFieldDeclaration(const TField &field, in emitFieldDeclaration() argument [all...] |
| /third_party/mesa3d/src/mesa/main/ |
| H A D | get.c | 249 #define BUFFER_FIELD(field, type) \ 250 LOC_BUFFER, type, offsetof(struct gl_framebuffer, field) 251 #define CONTEXT_FIELD(field, type) \ 252 LOC_CONTEXT, type, offsetof(struct gl_context, field) 253 #define ARRAY_FIELD(field, type) \ 254 LOC_ARRAY, type, offsetof(struct gl_vertex_array_object, field) 259 #define BUFFER_INT(field) BUFFER_FIELD(field, TYPE_INT) 260 #define BUFFER_ENUM(field) BUFFER_FIELD(field, TYPE_ENU [all...] |
| /third_party/protobuf/ruby/ext/google/protobuf_c/ |
| H A D | message.c | 92 // oneof_case is a field index, so find that field. in which_oneof_field() 110 // Check if the field is a well known wrapper type 111 bool is_wrapper_type_field(const upb_fielddef* field) { in is_wrapper_type_field() argument 113 if (upb_fielddef_type(field) != UPB_TYPE_MESSAGE) { in is_wrapper_type_field() 116 m = upb_fielddef_msgsubdef(field); in is_wrapper_type_field() 194 // Find the field name in extract_method_call() 198 // Check if field exists and is a wrapper type in extract_method_call() 221 // Find enum field name in extract_method_call() 225 // Check if enum field exist in extract_method_call() 628 const upb_fielddef* field = upb_msg_iter_field(&it); Message_to_h() local 676 const upb_fielddef* field; Message_index() local 695 const upb_fielddef* field; Message_index_set() local [all...] |
| /third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
| H A D | ExtensionRegistry.java | 43 * A table of known extensions, searchable by name or field number. When parsing a protocol message 138 * Find an extension for immutable APIs by fully-qualified field name, in the proto namespace. 148 * Find an extension for mutable APIs by fully-qualified field name, in the proto namespace. i.e. 165 * Find an extension by containing type and field number for immutable APIs. 175 * Find an extension by containing type and field number for mutable APIs. 305 + "(non-extension) field."); in add() 330 final FieldDescriptor field = extension.descriptor; in add() 331 if (field.getContainingType().getOptions().getMessageSetWireFormat() in add() 332 && field.getType() == FieldDescriptor.Type.MESSAGE in add() 333 && field in add() [all...] |
| /third_party/rust/crates/rust-openssl/openssl/src/ |
| H A D | error.rs | 293 builder.field("code", &self.code()); 295 builder.field("library", &library); 298 builder.field("function", &function); 301 builder.field("reason", &reason); 303 builder.field("file", &self.file()); 304 builder.field("line", &self.line()); 306 builder.field("data", &data);
|
| /third_party/mesa3d/src/intel/tools/ |
| H A D | aubinator_viewer.cpp | 641 snprintf(name, sizeof(name), "field filter##%p", &cfg->field_filter); in display_decode_options() 849 const struct intel_field *field = reg->fields; in display_registers_window() local 850 while (field) { in display_registers_window() 851 ImGui::Text("%s : %i -> %i\n", field->name, field->start, field->end); in display_registers_window() 852 field = field->next; in display_registers_window() 888 field_filter.Draw("field filter"); in display_commands_window() 905 const struct intel_field *field in display_commands_window() local 926 const struct intel_field *field = cmd->fields; display_commands_window() local [all...] |
| /third_party/icu/icu4c/source/i18n/ |
| H A D | chnsecal.h | 41 * <p>This class defines one addition field beyond those defined by 42 * <code>Calendar</code>: The <code>IS_LEAP_MONTH</code> field takes the 56 * <code>EXTENDED_YEAR</code> field contains the sequential year count. 57 * The <code>ERA</code> field contains the cycle number, and the 58 * <code>YEAR</code> field contains the year of the cycle, a value between 67 * <p>Because <code>ChineseCalendar</code> defines an additional field and 68 * redefines the way the <code>ERA</code> field is used, it requires a new 165 virtual int32_t handleGetLimit(UCalendarDateFields field, ELimitType limitType) const override; 173 virtual void add(UCalendarDateFields field, int32_t amount, UErrorCode &status) override; 174 virtual void add(EDateFields field, int32_ [all...] |
| H A D | formatted_string_builder.cpp | 150 FormattedStringBuilder::insertCodePoint(int32_t index, UChar32 codePoint, Field field, UErrorCode &status) { in insertCodePoint() argument 158 getFieldPtr()[position] = field; in insertCodePoint() 162 getFieldPtr()[position] = getFieldPtr()[position + 1] = field; in insertCodePoint() 167 int32_t FormattedStringBuilder::insert(int32_t index, const UnicodeString &unistr, Field field, in insert() argument 174 return insertCodePoint(index, unistr.charAt(0), field, status); in insert() 176 return insert(index, unistr, 0, unistr.length(), field, status); in insert() 182 Field field, UErrorCode &status) { in insert() 190 getFieldPtr()[position + i] = field; in insert() 197 int32_t startOther, int32_t endOther, Field field, UErrorCode& status) { in splice() 217 getFieldPtr()[position + i] = field; in splice() 181 insert(int32_t index, const UnicodeString &unistr, int32_t start, int32_t end, Field field, UErrorCode &status) insert() argument 196 splice(int32_t startThis, int32_t endThis, const UnicodeString &unistr, int32_t startOther, int32_t endOther, Field field, UErrorCode& status) splice() argument [all...] |
| /third_party/libsnd/programs/ |
| H A D | sndfile-metadata-get.c | 138 #define HANDLE_BEXT_ARG(cmd, name, field) \ in process_args() 140 { printf ("%-22s : %.*s\n", name, (int) sizeof (binfo->field), binfo->field) ; \ in process_args() 145 #define HANDLE_BEXT_ARG_INT(cmd, name, field) \ in process_args() 147 { printf ("%-22s : %6.2f\n", name, binfo->field / 100.0) ; \ in process_args()
|
| /third_party/ltp/libs/libltpuinput/ |
| H A D | tst_uinput.c | 49 static char *parse_field(char *line, char field) in parse_field() argument 53 switch (field) { in parse_field() 69 char *get_input_field_value(char field) in get_input_field_value() argument 84 if (line[0] == field) in get_input_field_value() 85 return parse_field(line, field); in get_input_field_value()
|
| /third_party/rust/crates/cxx/gen/build/src/ |
| H A D | cfg.rs | 275 /// /// documentation of the struct field 301 /// /// documentation of the struct field 330 .field("include_prefix", include_prefix) in fmt() 331 .field("exported_header_dirs", exported_header_dirs) in fmt() 332 .field("exported_header_prefixes", exported_header_prefixes) in fmt() 333 .field("exported_header_links", exported_header_links) in fmt() 334 .field("doxygen", doxygen) in fmt()
|
| /third_party/skia/third_party/externals/icu/source/i18n/ |
| H A D | chnsecal.h | 41 * <p>This class defines one addition field beyond those defined by 42 * <code>Calendar</code>: The <code>IS_LEAP_MONTH</code> field takes the 56 * <code>EXTENDED_YEAR</code> field contains the sequential year count. 57 * The <code>ERA</code> field contains the cycle number, and the 58 * <code>YEAR</code> field contains the year of the cycle, a value between 67 * <p>Because <code>ChineseCalendar</code> defines an additional field and 68 * redefines the way the <code>ERA</code> field is used, it requires a new 165 virtual int32_t handleGetLimit(UCalendarDateFields field, ELimitType limitType) const; 173 virtual void add(UCalendarDateFields field, int32_t amount, UErrorCode &status); 174 virtual void add(EDateFields field, int32_ [all...] |
| /third_party/rust/crates/serde/serde_derive_internals/src/ |
| H A D | ast.rs | 39 /// A field of a struct. 53 /// One unnamed field. 85 for field in &mut variant.fields { 86 if field.attrs.flatten() { 89 field.attrs.rename_by_rules( 99 for field in fields { 100 if field.attrs.flatten() { 103 field.attrs.rename_by_rules(attrs.rename_all_rules()); 206 .map(|(i, field)| Field { in fields_from_ast() 207 member: match &field in fields_from_ast() [all...] |
| /third_party/rust/crates/serde/serde_derive/src/internals/ |
| H A D | ast.rs | 39 /// A field of a struct. 53 /// One unnamed field. 85 for field in &mut variant.fields { 86 if field.attrs.flatten() { 89 field.attrs.rename_by_rules( 99 for field in fields { 100 if field.attrs.flatten() { 103 field.attrs.rename_by_rules(attrs.rename_all_rules()); 206 .map(|(i, field)| Field { in fields_from_ast() 207 member: match &field in fields_from_ast() [all...] |
| /third_party/node/deps/icu-small/source/i18n/ |
| H A D | formatted_string_builder.cpp | 150 FormattedStringBuilder::insertCodePoint(int32_t index, UChar32 codePoint, Field field, UErrorCode &status) { in insertCodePoint() argument 158 getFieldPtr()[position] = field; in insertCodePoint() 162 getFieldPtr()[position] = getFieldPtr()[position + 1] = field; in insertCodePoint() 167 int32_t FormattedStringBuilder::insert(int32_t index, const UnicodeString &unistr, Field field, in insert() argument 174 return insertCodePoint(index, unistr.charAt(0), field, status); in insert() 176 return insert(index, unistr, 0, unistr.length(), field, status); in insert() 182 Field field, UErrorCode &status) { in insert() 190 getFieldPtr()[position + i] = field; in insert() 197 int32_t startOther, int32_t endOther, Field field, UErrorCode& status) { in splice() 217 getFieldPtr()[position + i] = field; in splice() 181 insert(int32_t index, const UnicodeString &unistr, int32_t start, int32_t end, Field field, UErrorCode &status) insert() argument 196 splice(int32_t startThis, int32_t endThis, const UnicodeString &unistr, int32_t startOther, int32_t endOther, Field field, UErrorCode& status) splice() argument [all...] |