Home
last modified time | relevance | path

Searched refs:field (Results 651 - 675 of 1878) sorted by relevance

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

/third_party/mksh/
H A Dcheck.pl151 # of multiple fields, delimited by a field separator character.
190 belongs to (see category field).
973 local($field, $val, $flags, $do_chop, $need_redo, $start_lineno);
988 ($field, $val) = ($1, $2);
989 $sfield = $field;
990 $flags = $test_fields{$field};
992 print STDERR "$prog:$file:$.: unrecognised field \"$field\"\n";
996 local($cnt) = $cnt{$field}++;
997 $test{$field}
[all...]
/third_party/rust/crates/libc/src/unix/linux_like/linux/gnu/b64/x86_64/
H A Dmod.rs63 this field"
300 // FIXME: the shadow stack field requires glibc >= 2.28.
326 // Ignore padding field in eq()
335 .field("cwd", &self.cwd) in fmt()
336 .field("ftw", &self.ftw) in fmt()
337 .field("fop", &self.fop) in fmt()
338 .field("rip", &self.rip) in fmt()
339 .field("rdp", &self.rdp) in fmt()
340 .field("mxcsr", &self.mxcsr) in fmt()
341 .field("mxcr_mas in fmt()
[all...]
/third_party/rust/crates/libc/src/unix/linux_like/linux/musl/b64/x86_64/
H A Dmod.rs168 // Ignore padding field in eq()
177 .field("cwd", &self.cwd) in fmt()
178 .field("ftw", &self.ftw) in fmt()
179 .field("fop", &self.fop) in fmt()
180 .field("rip", &self.rip) in fmt()
181 .field("rdp", &self.rdp) in fmt()
182 .field("mxcsr", &self.mxcsr) in fmt()
183 .field("mxcr_mask", &self.mxcr_mask) in fmt()
184 .field("st_space", &self.st_space) in fmt()
185 // FIXME: .field("xmm_spac in fmt()
[all...]
/third_party/protobuf/java/compatibility_tests/v2.5.0/tests/src/main/java/com/google/protobuf/test/
H A DDescriptorsTest.java168 FieldDescriptor field = messageType.getFields().get(0); in testDescriptor()
169 assertEquals("optional_int32", field.getName()); in testDescriptor()
170 assertEquals(field, messageType.findFieldByName("optional_int32")); in testDescriptor()
172 assertEquals(field, messageType.findFieldByNumber(1)); in testDescriptor()
363 FieldDescriptor field = descriptor.findFieldByName("field1"); in testCustomOptions()
364 assertNotNull(field); in testCustomOptions()
367 field.getOptions().hasExtension(UnittestCustomOptions.fieldOpt1)); in testCustomOptions()
369 field.getOptions().getExtension(UnittestCustomOptions.fieldOpt1)); in testCustomOptions()
466 * Tests the translate/crosslink for an example where a message field's name
641 FieldDescriptor field in testComplexNamespacePublicDependency()
[all...]
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
H A DResourcesHLSL.cpp40 static TString InterfaceBlockFieldTypeString(const TField &field, in InterfaceBlockFieldTypeString() argument
44 const TType &fieldType = *field.type(); in InterfaceBlockFieldTypeString()
278 // Sampler that is a field of a uniform structure. in assignSamplerInStructUniformRegister()
836 const TField &field = *interfaceBlock.fields()[0]; in uniformBlockWithOneLargeArrayMemberString() local
838 typeString = InterfaceBlockFieldTypeString(field, blockStorage, true); in uniformBlockWithOneLargeArrayMemberString()
839 const TType &fieldType = *field.type(); in uniformBlockWithOneLargeArrayMemberString()
845 Decorate(field.name()) + "; };\n"; in uniformBlockWithOneLargeArrayMemberString()
856 Decorate(field.name()) + ";\n"; in uniformBlockWithOneLargeArrayMemberString()
867 Decorate(field.name()) + +" : register(t" + str(registerIndex) + ");\n"; in uniformBlockWithOneLargeArrayMemberString()
871 hlsl += "StructuredBuffer <" + typeString + "> " + Decorate(field in uniformBlockWithOneLargeArrayMemberString()
921 const TField &field = *interfaceBlock.fields()[typeIndex]; uniformBlockMembersString() local
[all...]
H A DShaderVars.cpp218 for (const auto &field : fields) in getExternalSize()
220 memorySize += field.getExternalSize(); in getExternalSize()
315 // If this is a shader I/O block without an instance name, return the field given only the in findField()
316 // field name. in findField()
338 for (size_t field = 0; field < fields.size(); ++field) in findField()
340 if (fields[field].name == fieldName) in findField()
342 *fieldIndexOut = static_cast<GLuint>(field); in findField()
343 return &fields[field]; in findField()
[all...]
/third_party/mesa3d/src/glx/
H A Dglxextensions.c340 * Convert the server's extension string to a bit-field.
343 * \param server_support Bit-field of supported extensions.
400 char *env, *field; in __ParseExtensionOverride() local
410 for (field = strtok(env, " "); field!= NULL; field = strtok(NULL, " ")) { in __ParseExtensionOverride()
413 switch (field[0]) { in __ParseExtensionOverride()
416 ++field; in __ParseExtensionOverride()
420 ++field; in __ParseExtensionOverride()
427 ext = find_extension(ext_list, field, strle in __ParseExtensionOverride()
[all...]
/third_party/ffmpeg/libavcodec/
H A Dthreadframe.h42 * @param field The field being decoded, for field-picture codecs.
43 * 0 for top field or frame pictures, 1 for bottom field.
45 void ff_thread_report_progress(ThreadFrame *f, int progress, int field);
56 * @param field The field being referenced, for field-picture codecs.
57 * 0 for top field o
[all...]
/third_party/skia/third_party/externals/freetype/src/sdf/
H A Dmodule.mk21 $(ECHO_DRIVER)sdf $(ECHO_DRIVER_DESC)signed distance field renderer$(ECHO_DRIVER_DONE)
26 $(ECHO_DRIVER)bsdf $(ECHO_DRIVER_DESC)bitmap to signed distance field converter$(ECHO_DRIVER_DONE)
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/
H A Dwpas_glue.h19 const char * wpa_supplicant_ctrl_req_to_string(enum wpa_ctrl_req_type field,
23 enum wpa_ctrl_req_type wpa_supplicant_ctrl_req_from_string(const char *field);
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/
H A Dwpas_glue.h21 const char * wpa_supplicant_ctrl_req_to_string(enum wpa_ctrl_req_type field,
25 enum wpa_ctrl_req_type wpa_supplicant_ctrl_req_from_string(const char *field);
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DChineseCalendar.java43 * <code>EXTENDED_YEAR</code> field contains the sequential year count.
44 * The <code>ERA</code> field contains the cycle number, and the
45 * <code>YEAR</code> field contains the year of the cycle, a value between
54 * <p>Because <code>ChineseCalendar</code> defines an additional field and
55 * redefines the way the <code>ERA</code> field is used, it requires a new
169 * @param year The value used to set the calendar's {@link #YEAR YEAR} time field.
170 * @param month The value used to set the calendar's {@link #MONTH MONTH} time field.
173 * time field.
174 * @param date The value used to set the calendar's {@link #DATE DATE} time field.
186 * @param year the value used to set the {@link #YEAR YEAR} time field i
433 handleGetLimit(int field, int limitType) handleGetLimit() argument
561 add(int field, int amount) add() argument
581 roll(int field, int amount) roll() argument
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/
H A DChineseCalendar.java44 * <code>EXTENDED_YEAR</code> field contains the sequential year count.
45 * The <code>ERA</code> field contains the cycle number, and the
46 * <code>YEAR</code> field contains the year of the cycle, a value between
55 * <p>Because <code>ChineseCalendar</code> defines an additional field and
56 * redefines the way the <code>ERA</code> field is used, it requires a new
167 * @param year The value used to set the calendar's {@link #YEAR YEAR} time field.
168 * @param month The value used to set the calendar's {@link #MONTH MONTH} time field.
171 * time field.
172 * @param date The value used to set the calendar's {@link #DATE DATE} time field.
183 * @param year the value used to set the {@link #YEAR YEAR} time field i
422 handleGetLimit(int field, int limitType) handleGetLimit() argument
544 add(int field, int amount) add() argument
563 roll(int field, int amount) roll() argument
[all...]
/third_party/libbpf/src/
H A Dlibbpf_internal.h347 #define OPTS_HAS(opts, field) \
348 ((opts) && opts->sz >= offsetofend(typeof(*(opts)), field))
349 #define OPTS_GET(opts, field, fallback_value) \
350 (OPTS_HAS(opts, field) ? (opts)->field : fallback_value)
351 #define OPTS_SET(opts, field, value) \
353 if (OPTS_HAS(opts, field)) \
354 (opts)->field = value; \
/third_party/node/test/common/
H A Dreport.js78 fields.forEach((field) => {
89 if (Array.isArray(field)) {
90 [actual, expect] = field;
92 actual = field;
228 heapSpaceFields.forEach((field) => {
229 assert(Number.isSafeInteger(space[field]));
254 // This field may not exsit
334 Object.keys(actual).forEach((field) => {
335 assert(expected.includes(field), `'${field}' no
[all...]
/third_party/rust/crates/libc/src/unix/linux_like/android/b32/
H A Darm.rs74 .field("uc_sigmask_with_padding", &self.uc_sigmask) in fmt()
95 .field("uc_sigmask", unsafe { &self.uc_sigmask }) in fmt()
114 // Ignore padding field in eq()
121 .field("uc_flags", &self.uc_flags) in fmt()
122 .field("uc_link", &self.uc_link) in fmt()
123 .field("uc_stack", &self.uc_stack) in fmt()
124 .field("uc_mcontext", &self.uc_mcontext) in fmt()
125 .field( in fmt()
129 .field("uc_regspace", &&self.uc_regspace[..]) in fmt()
130 // Ignore padding field in fmt()
[all...]
/third_party/rust/crates/libc/src/unix/linux_like/android/
H A Dmod.rs602 .field("nl_family", &self.nl_family) in fmt()
603 .field("nl_pid", &self.nl_pid) in fmt()
604 .field("nl_groups", &self.nl_groups) in fmt()
635 .field("d_ino", &self.d_ino) in fmt()
636 .field("d_off", &self.d_off) in fmt()
637 .field("d_reclen", &self.d_reclen) in fmt()
638 .field("d_type", &self.d_type) in fmt()
639 // FIXME: .field("d_name", &self.d_name) in fmt()
673 .field("d_ino", &self.d_ino) in fmt()
674 .field("d_of in fmt()
[all...]
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/
H A DGeneratedMessageTest.java93 FieldDescriptor field = in testGetFieldBuilderForExtensionField()
95 fieldBuilder.setField(field, expected); in testGetFieldBuilderForExtensionField()
102 fieldBuilder.setField(field, expected); in testGetFieldBuilderForExtensionField()
116 FieldDescriptor field = in testGetFieldBuilderWithExistingMessage()
118 fieldBuilder.setField(field, expected); in testGetFieldBuilderWithExistingMessage()
125 fieldBuilder.setField(field, expected); in testGetFieldBuilderWithExistingMessage()
139 FieldDescriptor field = in testGetFieldBuilderWithExistingBuilder()
141 fieldBuilder.setField(field, expected); in testGetFieldBuilderWithExistingBuilder()
155 fieldBuilder.setField(field, expected); in testGetFieldBuilderWithExistingBuilder()
170 FieldDescriptor field in testGetRepeatedFieldBuilderForExtensionField()
[all...]
H A DDescriptorsTest.java164 FieldDescriptor field = messageType.getFields().get(0); in testDescriptor()
165 assertEquals("optional_int32", field.getName()); in testDescriptor()
166 assertEquals(field, messageType.findFieldByName("optional_int32")); in testDescriptor()
168 assertEquals(field, messageType.findFieldByNumber(1)); in testDescriptor()
342 .findFieldByName("field") in testCustomOptions()
350 FieldDescriptor field = descriptor.findFieldByName("field1"); in testCustomOptions()
351 assertNotNull(field); in testCustomOptions()
353 assertTrue(field.getOptions().hasExtension(UnittestCustomOptions.fieldOpt1)); in testCustomOptions()
356 field.getOptions().getExtension(UnittestCustomOptions.fieldOpt1)); in testCustomOptions()
450 * Tests the translate/crosslink for an example where a message field'
[all...]
/third_party/icu/icu4c/source/common/
H A Dputil.cpp2288 uint8_t field; local
2308 /* write the decimal field value */
2309 field=versionArray[0];
2310 if(field>=100) {
2311 *versionString++=(char)('0'+field/100);
2312 field%=100;
2314 if(field>=10) {
2315 *versionString++=(char)('0'+field/10);
2316 field%=10;
2318 *versionString++=(char)('0'+field);
[all...]
/third_party/node/deps/icu-small/source/common/
H A Dputil.cpp2303 uint8_t field; local
2323 /* write the decimal field value */
2324 field=versionArray[0];
2325 if(field>=100) {
2326 *versionString++=(char)('0'+field/100);
2327 field%=100;
2329 if(field>=10) {
2330 *versionString++=(char)('0'+field/10);
2331 field%=10;
2333 *versionString++=(char)('0'+field);
[all...]
/third_party/skia/third_party/externals/icu/source/common/
H A Dputil.cpp2279 uint8_t field; local
2299 /* write the decimal field value */
2300 field=versionArray[0];
2301 if(field>=100) {
2302 *versionString++=(char)('0'+field/100);
2303 field%=100;
2305 if(field>=10) {
2306 *versionString++=(char)('0'+field/10);
2307 field%=10;
2309 *versionString++=(char)('0'+field);
[all...]
/base/security/device_auth/frameworks/deviceauth_lite/inc/json/
H A Dcommonutil.h29 int32_t byte_convert(json_pobject obj, const char *field, uint8_t *hex, uint32_t *length, uint32_t max_len);
30 int32_t string_convert(json_pobject obj, const char *field, uint8_t *str, uint32_t *length, uint32_t max_len);
/base/security/device_auth/frameworks/deviceauth_lite/test/unittest/
H A Dcommonutil_test.h32 int32_t byte_convert(json_pobject obj, const char *field, uint8_t *hex, uint32_t *length, uint32_t max_len);
33 int32_t string_convert(json_pobject obj, const char *field, uint8_t *str, uint32_t *length, uint32_t max_len);
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DUFieldPosition.java38 public UFieldPosition(int field) { in UFieldPosition() argument
39 super(field); in UFieldPosition()

Completed in 32 milliseconds

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