Searched defs:fields (Results 126 - 150 of 251) sorted by relevance

1234567891011

/external/llvm/utils/unittest/googletest/src/
H A Dgtest-death-test.cc1102 // vector with the fields. GTEST_HAS_DEATH_TEST implies that we have
1187 // Returns a newly created InternalRunDeathTestFlag object with fields
1197 ::std::vector< ::std::string> fields; local
1198 SplitString(GTEST_FLAG(internal_run_death_test).c_str(), '|', &fields);
1207 if (fields.size() != 6
1208 || !ParseNaturalNumber(fields[1], &line)
1209 || !ParseNaturalNumber(fields[2], &index)
1210 || !ParseNaturalNumber(fields[3], &parent_process_id)
1211 || !ParseNaturalNumber(fields[4], &write_handle_as_size_t)
1212 || !ParseNaturalNumber(fields[
[all...]
/external/mesa3d/src/glsl/
H A Dast_to_hir.cpp701 * arrays, function names, swizzles with repeated fields,
843 const char *field_name = op0->type->fields.structure[i].name;
1638 * the max_array_access field because it is never used for fields
1960 non_array_type = var->type->fields.array;
2708 ? var->type->fields.array : var->type;
2860 && (var->type->fields.array->is_float()
2861 || var->type->fields.array->is_integer()))) {
3073 * function names, swizzles with repeated fields, and constants
3934 /* Make an initial pass over the list of structure fields to determine how
3946 /* Allocate storage for the structure fields an
3951 glsl_struct_field *const fields = ralloc_array(state, glsl_struct_field, local
[all...]
/external/mesa3d/src/gtest/src/
H A Dgtest-death-test.cc1096 // vector with the fields. GTEST_HAS_DEATH_TEST implies that we have
1181 // Returns a newly created InternalRunDeathTestFlag object with fields
1191 ::std::vector< ::std::string> fields; local
1192 SplitString(GTEST_FLAG(internal_run_death_test).c_str(), '|', &fields);
1201 if (fields.size() != 6
1202 || !ParseNaturalNumber(fields[1], &line)
1203 || !ParseNaturalNumber(fields[2], &index)
1204 || !ParseNaturalNumber(fields[3], &parent_process_id)
1205 || !ParseNaturalNumber(fields[4], &write_handle_as_size_t)
1206 || !ParseNaturalNumber(fields[
[all...]
/external/opencv3/3rdparty/libtiff/
H A Dtif_dir.h66 /* bit vector of fields that are set */
122 * Field flags used to indicate fields that have been set in a directory, and
123 * to reference fields when manipulating a directory.
134 /* multi-item fields */
140 /* single-item fields */
194 #define FieldSet(fields, f) (fields[(f)/32] & BITn(f))
195 #define ResetFieldBit(fields, f) (fields[(f)/32] &= ~BITn(f))
272 uint32 count; /* number of elements in fields arra
273 TIFFField* fields; /* actual field info */ member in struct:_TIFFFieldArray
[all...]
/external/pdfium/core/src/fpdfdoc/
H A Ddoc_form.cpp838 bool CPDF_InterForm::ResetForm(const std::vector<CPDF_FormField*>& fields, argument
850 if (bIncludeOrExclude == pdfium::ContainsValue(fields, pField))
1003 const std::vector<CPDF_FormField*>* fields,
1022 if (fields)
1023 bFind = pdfium::ContainsValue(*fields, pField);
1036 std::vector<CPDF_FormField*> fields; local
1039 fields.push_back(m_pFieldTree->m_Root.GetField(i));
1040 return ExportToFDF(pdf_path, fields, true, bSimpleFileSpec);
1045 const std::vector<CPDF_FormField*>& fields,
1076 if (bIncludeOrExclude == pdfium::ContainsValue(fields, pFiel
1002 CheckRequiredFields( const std::vector<CPDF_FormField*>* fields, bool bIncludeOrExclude) const argument
1043 ExportToFDF( const CFX_WideStringC& pdf_path, const std::vector<CPDF_FormField*>& fields, bool bIncludeOrExclude, bool bSimpleFileSpec) const argument
[all...]
/external/pdfium/third_party/libtiff/
H A Dtif_dir.h66 /* bit vector of fields that are set */
122 * Field flags used to indicate fields that have been set in a directory, and
123 * to reference fields when manipulating a directory.
134 /* multi-item fields */
140 /* single-item fields */
194 #define FieldSet(fields, f) (fields[(f)/32] & BITn(f))
195 #define ResetFieldBit(fields, f) (fields[(f)/32] &= ~BITn(f))
272 uint32 count; /* number of elements in fields arra
273 TIFFField* fields; /* actual field info */ member in struct:_TIFFFieldArray
[all...]
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DDescriptors.java50 * its fields and other information about a type. You can get a message
591 /** Get a list of this message type's fields. */
593 return Collections.unmodifiableList(Arrays.asList(fields));
697 private final FieldDescriptor[] fields; field in class:Descriptors.Descriptor
719 this.fields = new FieldDescriptor[0];
756 fields = new FieldDescriptor[proto.getFieldCount()];
758 fields[i] = new FieldDescriptor(
769 oneofs[i].fields = new FieldDescriptor[oneofs[i].getFieldCount()];
773 OneofDescriptor oneofDescriptor = fields[i].getContainingOneof();
775 oneofDescriptor.fields[oneofDescripto
2236 private FieldDescriptor[] fields; field in class:Descriptors.OneofDescriptor
[all...]
H A DGeneratedMessage.java126 // Check that all required fields are present.
226 * A builder becomes dirty whenever a field is modified -- including fields
305 * reset any of their builtin fields back to the initial values.
452 // Check that all required fields are present.
565 * implement all the same operations that you can do with normal fields --
745 // problem when we use LazyField for normal fields/extensions.
856 * implement all the same operations that you can do with normal fields --
1600 * with access to the fields of a message object using Java reflection.
1609 * @param camelCaseNames The camelcase names of all fields in the message.
1632 fields
1699 private final FieldAccessor[] fields; field in class:GeneratedMessage.FieldAccessorTable
[all...]
/external/protobuf/python/google/protobuf/pyext/
H A Dmessage.cc137 // The ExtensionDict might contain non-composite fields, which we
150 // Visit normal fields.
161 // Visit extension fields.
415 // Non-message fields don't need to be released.
1177 // fields have been released.
1221 PyErr_Format(EncodeError_class, "Message %s is missing required fields: %s",
1245 // Formats proto fields for ascii dumps using python formatting functions where
1484 vector<const google::protobuf::FieldDescriptor*> fields; local
1485 self->message->GetReflection()->ListFields(*self->message, &fields);
1502 // Normally, the list will be exactly the size of the fields
[all...]
/external/protobuf/src/google/protobuf/
H A Ddescriptor_unittest.cc365 // Test simple flat messages and fields.
511 // fields. So, in addition to testing that FindFieldByName finds the fields
512 // of the message, we need to test that it does *not* find the fields of
649 // Test simple flat messages and fields.
1835 // Test that message_type() is NULL for non-aggregate fields
1860 // Test that enum_type() is NULL for non-enum fields
1899 // Create fields of every CPP type with default values.
1929 // Add a second set of fields with implicit defalut values.
2288 vector<const FieldDescriptor*> fields; local
[all...]
H A Dtext_format.cc148 GOOGLE_LOG(DFATAL) << "Index must be -1 for singular fields."
196 // Determines if repeated values for non-repeated fields and
250 // Consume fields until we cannot do so anymore.
490 // For historical reasons, fields may optionally be separated by commas or
537 // For historical reasons, fields may optionally be separated by commas or
595 // Define an easy to use macro for setting fields. This macro checks
1205 parser_impl->ReportError(-1, 0, "Message missing required fields: " +
1421 vector<const FieldDescriptor*> fields; local
1422 reflection->ListFields(message, &fields);
1424 sort(fields
[all...]
/external/toybox/toys/posix/
H A Dps.c27 * Added a bunch of new -o fields posix doesn't mention, and we don't
258 void *fields, *kfields;
273 * table 1-4) but we shift and repurpose fields, with the result being: */
309 unsigned short offset[5]; // offset of fields in str[] (skip name, always 0)
328 // String fields
419 // String fields
456 // Output days-hours:mins:secs, skipping non-required fields with zero
457 // TIME has 3 required fields, ETIME has 2. (Posix!) TIME+ is from top
520 // Display process data that get_ps() read from /proc, formatting with TT.fields
526 // Loop through fields t
834 get_headers(struct strawberry *fields, char *buf, int blen) argument
975 default_ko(char *s, void *fields, char *err, struct arg_list *arg) argument
1308 struct strawberry *fields; local
[all...]
/external/vulkan-validation-layers/tests/gtest-1.7.0/src/
H A Dgtest-death-test.cc1206 // vector with the fields. GTEST_HAS_DEATH_TEST implies that we have
1293 // Returns a newly created InternalRunDeathTestFlag object with fields
1303 ::std::vector< ::std::string> fields; local
1304 SplitString(GTEST_FLAG(internal_run_death_test).c_str(), '|', &fields);
1313 if (fields.size() != 6
1314 || !ParseNaturalNumber(fields[1], &line)
1315 || !ParseNaturalNumber(fields[2], &index)
1316 || !ParseNaturalNumber(fields[3], &parent_process_id)
1317 || !ParseNaturalNumber(fields[4], &write_handle_as_size_t)
1318 || !ParseNaturalNumber(fields[
[all...]
/external/doclava/src/com/google/doclava/
H A DClassInfo.java143 ArrayList<MethodInfo> annotationElements, ArrayList<FieldInfo> fields,
158 // mAllSelfFields will not contain *all* self fields. Only the fields that pass
160 mAllSelfFields = fields;
614 for (FieldInfo field : cl.fields()) {
619 public ArrayList<FieldInfo> fields() { method in class:ClassInfo
649 public void gatherFields(ClassInfo owner, ClassInfo cl, HashMap<String, FieldInfo> fields) { argument
652 fields.put(f.name(), f.cloneForClass(owner));
659 HashMap<String, FieldInfo> fields = new HashMap<String, FieldInfo>();
662 gatherFields(this, mRealSuperclass, fields);
140 init(TypeInfo typeInfo, ArrayList<ClassInfo> interfaces, ArrayList<TypeInfo> interfaceTypes, ArrayList<ClassInfo> innerClasses, ArrayList<MethodInfo> constructors, ArrayList<MethodInfo> methods, ArrayList<MethodInfo> annotationElements, ArrayList<FieldInfo> fields, ArrayList<FieldInfo> enumConstants, PackageInfo containingPackage, ClassInfo containingClass, ClassInfo superclass, TypeInfo superclassType, ArrayList<AnnotationInstanceInfo> annotations) argument
[all...]
/external/gmock/test/
H A Dgmock-matchers_test.cc60 GTEST_API_ string JoinAsTuple(const Strings& fields);
1339 // If both fields match, Pair() should explain about them both.
1340 EXPECT_EQ("whose both fields match, where the first field is a value "
1348 EXPECT_EQ("whose both fields match, where the first field is a value "
1355 EXPECT_EQ("whose both fields match, where the second field is a value "
1363 // Both fields match.
4967 const char* fields[] = { "1" }; local
4968 EXPECT_EQ("1", JoinAsTuple(Strings(fields, fields + 1)));
4972 const char* fields[] local
4977 const char* fields[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9", "10" }; local
[all...]
/external/icu/icu4c/source/i18n/
H A Dsmpdtfmt.cpp911 /* Initialize the fields we use to disambiguate ambiguous years. Separate
1017 // if several fields share the same NumberFormat, which will almost
1070 * NOTE: if new fields adds in, the table needs to update.
1088 // NOTE: if new fields adds in, the table needs to update.
1860 void SimpleDateFormat::adoptNumberFormat(const UnicodeString& fields, NumberFormat *formatToAdopt, UErrorCode &status){ argument
1880 for (int i=0; i<fields.length(); i++) {
1881 UChar field = fields.charAt(i);
1984 // For parsing abutting numeric fields. 'abutPat' is the
1986 // numeric fields. 'abutStart' is the offset into 'text'
1987 // where parsing the fields begin
[all...]
/external/kernel-headers/original/uapi/linux/
H A Daudit.h225 /* Rule fields */
451 * fields. It corresponds with AUDIT_ADD_RULE, AUDIT_DEL_RULE and
459 __u32 fields[AUDIT_MAX_FIELDS]; member in struct:audit_rule_data
462 __u32 buflen; /* total length of string fields */
463 char buf[0]; /* string fields buffer */
/external/pdfium/fpdfsdk/src/javascript/
H A DField.cpp189 std::vector<CPDF_FormField*> fields; local
194 fields.push_back(pFormField);
196 return fields;
/external/clang/lib/CodeGen/
H A DCGDebugInfo.cpp999 // Ignore unnamed fields unless they're anonymous structs/unions.
1027 // Field number for non-static fields.
1624 // Collect data fields (including static variables and any initializers).
1844 // Ignore unnamed fields.
1868 // byte of storage of the bitfield. For other fields, use zero.
2609 // subprogram DIE will miss DW_AT_decl_file and DW_AT_decl_line fields.
3002 // all union fields.
3012 for (const auto *Field : RD->fields()) {
3016 // Ignore unnamed fields. Do not ignore unnamed records.
3169 SmallVector<llvm::Metadata *, 16> fields; local
[all...]
H A DCGObjCGNU.cpp248 /// Push the property attributes into two structure fields.
269 // The second field is the next four fields left shifted by two, with the
272 // Two padding fields
583 /// the extended form of the class structure, and the extra fields are simply
1174 std::vector<llvm::Constant*> fields; local
1175 fields.push_back(BVtable);
1176 fields.push_back(typeName);
1179 fields, CGM.getPointerAlign(),
2021 llvm::Constant *fields[2] = { local
2025 nullptr), fields, CharUnit
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/util/
H A DCalendar.java32 * <strong>[icu enhancement]</strong> ICU's replacement for {@link java.util.Calendar}.&nbsp;Methods, fields, and other functionality specific to ICU are labeled '<strong>[icu]</strong>'.
35 * a <code>Date</code> object and a set of integer fields such as
51 * time fields have been initialized with the current date and time:
69 * <code>Calendar</code> defines the range of values returned by certain fields,
93 * <code>WEEK_OF_YEAR</code> fields, <code>Calendar</code> must determine the
104 * <p> When computing a <code>Date</code> from time fields, some special
112 * information to specify the missing fields. This may vary by calendar; for
116 * <p><strong>Inconsistent information.</strong> If fields conflict, the calendar
117 * will give preference to fields set more recently. For example, when
119 * combinations of fields
1257 private transient int fields[]; field in class:Calendar
[all...]
/external/icu/icu4c/source/test/intltest/
H A Ddtfmttst.cpp443 * A list of the names of all the fields in DateFormat.
722 * Verify the behavior of patterns in which digits for different fields run together
754 * Verify the behavior of patterns in which digits for different fields run together
1393 /* Create a formatter for date fields. */
1400 /* Create a formatter for time fields. */
4128 // ensure we are really parsing the fields we should be
4641 UnicodeString fields = (UnicodeString) "M"; local
4653 fmt->adoptNumberFormat(fields, check_nf, status);
4675 fields = DATA[i][0];
4683 if (fields
[all...]
H A Dregextst.cpp1638 UnicodeString fields[10]; local
1641 n = pat1->split("Now is the time", fields, 10, status);
1644 REGEX_ASSERT(fields[0]=="Now");
1645 REGEX_ASSERT(fields[1]=="is");
1646 REGEX_ASSERT(fields[2]=="the");
1647 REGEX_ASSERT(fields[3]=="time");
1648 REGEX_ASSERT(fields[4]=="");
1650 n = pat1->split("Now is the time", fields, 2, status);
1653 REGEX_ASSERT(fields[0]=="Now");
1654 REGEX_ASSERT(fields[
2966 UnicodeString fields[10]; local
4118 UnicodeString fields[7]; local
4487 UnicodeString fields[7]; local
[all...]
/external/icu/icu4c/source/tools/tzcode/
H A Dzic.c158 static void inleap(char ** fields, int nfields);
159 static void inlink(char ** fields, int nfields);
160 static void inrule(char ** fields, int nfields);
161 static int inzcont(char ** fields, int nfields);
162 static int inzone(char ** fields, int nfields);
163 static int inzsub(char ** fields, int nfields, int iscont);
216 ** Which fields are which on a Zone line.
231 ** Which fields are which on a Zone continuation line.
260 ** Which fields are which on a Link line.
268 ** Which fields ar
976 register char ** fields; local
1118 inrule(register char **const fields, const int nfields) argument
1144 inzone(register char **const fields, const int nfields) argument
1178 inzcont(register char **const fields, const int nfields) argument
1188 inzsub(register char **const fields, const int nfields, const int iscont) argument
1265 inleap(register char ** const fields, const int nfields) argument
1368 inlink(register char **const fields, const int nfields) argument
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DCalendar.java34 * a <code>Date</code> object and a set of integer fields such as
50 * time fields have been initialized with the current date and time:
68 * <code>Calendar</code> defines the range of values returned by certain fields,
92 * <code>WEEK_OF_YEAR</code> fields, <code>Calendar</code> must determine the
103 * <p> When computing a <code>Date</code> from time fields, some special
111 * information to specify the missing fields. This may vary by calendar; for
115 * <p><strong>Inconsistent information.</strong> If fields conflict, the calendar
116 * will give preference to fields set more recently. For example, when
118 * combinations of fields. The most recent combination, as determined by the
158 * fields ma
1317 private transient int fields[]; field in class:Calendar
[all...]

Completed in 1058 milliseconds

1234567891011