Home
last modified time | relevance | path

Searched refs:field (Results 1 – 25 of 96) sorted by relevance

1234

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/
D_parseaddr.py182 def __init__(self, field): argument
198 self.field = field
203 while self.pos < len(self.field):
204 if self.field[self.pos] in self.LWS + '\n\r':
206 elif self.field[self.pos] == '(':
217 while self.pos < len(self.field):
237 if self.pos >= len(self.field):
242 elif self.field[self.pos] in '.@':
250 elif self.field[self.pos] == ':':
254 fieldlen = len(self.field)
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Drfc822.py508 def __init__(self, field): argument
523 self.field = field
528 while self.pos < len(self.field):
529 if self.field[self.pos] in self.LWS + '\n\r':
531 elif self.field[self.pos] == '(':
559 if self.pos >= len(self.field):
564 elif self.field[self.pos] in '.@':
572 elif self.field[self.pos] == ':':
576 fieldlen = len(self.field)
578 while self.pos < len(self.field):
[all …]
Dmailcap.py100 field, i = parsefield(line, i, n)
101 fields.append(field)
107 for field in rest:
108 i = field.find('=')
110 fkey = field
113 fkey = field[:i].strip()
114 fvalue = field[i+1:].strip()
170 def subst(field, MIMEtype, filename, plist=[]): argument
173 i, n = 0, len(field)
175 c = field[i]; i = i+1
[all …]
Dast.py96 ('%s=%s' % field for field in fields)
166 for field in node._fields:
168 yield field, getattr(node, field)
178 for name, field in iter_fields(node):
179 if isinstance(field, AST):
180 yield field
181 elif isinstance(field, list):
182 for item in field:
245 for field, value in iter_fields(node):
291 for field, old_value in iter_fields(node):
[all …]
Dpstats.py217 def sort_stats(self, *field): argument
218 if not field:
221 if len(field) == 1 and isinstance(field[0], (int, long)):
223 field = [ {-1: "stdname",
226 2: "cumulative"}[field[0]] ]
232 for word in field:
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
Dasdl_c.py168 for field in sum.attributes:
170 type = str(field.type)
172 emit("%s %s;" % (type, field.name), depth + 1);
187 def visitField(self, field, depth): argument
190 ctype = get_c_type(field.type)
191 name = field.name
192 if field.seq:
193 if field.type.value in ('cmpop',):
466 def visitFieldDeclaration(self, field, name, sum=None, prod=None, depth=0): argument
467 ctype = get_c_type(field.type)
[all …]
Dasdl.py189 def p_fields_0(self, (field,)): argument
191 return [field]
193 def p_fields_1(self, (field, _, fields)): argument
195 return fields + [field]
360 def visitField(self, field, name): argument
361 key = str(field.type)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
Dast.py96 ('%s=%s' % field for field in fields)
166 for field in node._fields:
168 yield field, getattr(node, field)
178 for name, field in iter_fields(node):
179 if isinstance(field, AST):
180 yield field
181 elif isinstance(field, list):
182 for item in field:
245 for field, value in iter_fields(node):
291 for field, old_value in iter_fields(node):
[all …]
/device/linaro/bootloader/edk2/QuarkSocPkg/QuarkNorthCluster/MemoryInit/Pei/
Dmeminit.c117 Dco.field.PMICTL = 0; //0 - PRI owned by MEMORY_MANAGER in select_memory_manager()
132 Dco.field.PMICTL = 1; //1 - PRI owned by HTE in select_hte()
184 Dpmc0.field.CLKGTDIS = 1; in prog_decode_before_jedec()
185 Dpmc0.field.DISPWRDN = 1; in prog_decode_before_jedec()
186 Dpmc0.field.DYNSREN = 0; in prog_decode_before_jedec()
187 Dpmc0.field.PCLSTO = 0; in prog_decode_before_jedec()
192 Dsch.field.OOODIS = 1; in prog_decode_before_jedec()
193 Dsch.field.NEWBYPDIS = 1; in prog_decode_before_jedec()
198 Drfc.field.tREFI = 0; in prog_decode_before_jedec()
203 Dcal.field.ZQCINT = 0; in prog_decode_before_jedec()
[all …]
Dgen5_iosf_sb_definitions.h69 } field; member
95 } field; member
116 } field; member
130 } field; member
152 } field; member
173 } field; member
196 } field; member
217 } field; member
235 } field; member
252 } field; member
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/gdb/
Dlibpython.py128 def field(self, name): member in PyObjectPtr
167 return PyObjectPtr.from_pyobject_ptr(self.field(name))
193 return PyTypeObjectPtr(self.field('ob_type'))
212 return self.type().field('tp_name').string()
289 tp_name = t.field('tp_name').string()
290 tp_flags = int(t.field('tp_flags'))
413 return ( ( typeobj.field('tp_basicsize') +
414 nitems * typeobj.field('tp_itemsize') +
429 dictoffset = int_from_int(typeobj.field('tp_dictoffset'))
527 if int_from_int(self.field('ob_ival')):
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
D_csv.c119 char *field; /* build current field in here */ member
539 PyObject *field; in parse_save_field() local
541 field = PyString_FromStringAndSize(self->field, self->field_len); in parse_save_field()
542 if (field == NULL) in parse_save_field()
549 tmp = PyNumber_Float(field); in parse_save_field()
551 Py_DECREF(field); in parse_save_field()
554 Py_DECREF(field); in parse_save_field()
555 field = tmp; in parse_save_field()
557 PyList_Append(self->fields, field); in parse_save_field()
558 Py_DECREF(field); in parse_save_field()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
D_csv.c119 char *field; /* build current field in here */ member
529 PyObject *field; in parse_save_field() local
531 field = PyString_FromStringAndSize(self->field, self->field_len); in parse_save_field()
532 if (field == NULL) in parse_save_field()
539 tmp = PyNumber_Float(field); in parse_save_field()
541 Py_DECREF(field); in parse_save_field()
544 Py_DECREF(field); in parse_save_field()
545 field = tmp; in parse_save_field()
547 PyList_Append(self->fields, field); in parse_save_field()
548 Py_DECREF(field); in parse_save_field()
[all …]
/device/linaro/bootloader/edk2/QuarkSocPkg/QuarkNorthCluster/Include/
DDdrMemoryController.h172 } field; member
186 } field; member
204 } field; member
218 } field; member
/device/google/dragon/audio/hal/
Dutlist.h116 #define LL_SEARCH_SCALAR(head, out, field, val) \ argument
119 if ((out)->field == (val)) \
123 #define LL_SEARCH_SCALAR_WITH_CAST(head, out, nout, field, val) \ argument
127 if ((nout)->field == (val)) \
/device/google/contexthub/firmware/os/inc/
Dutil.h30 #define alignof(type) offsetof(struct { char x; type field; }, field)
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Include/
DEfiDebug.h92 #define CR(record, TYPE, field, signature) \ argument
93 _CR(record, TYPE, field)->Signature != signature ? \
95 _CR(record, TYPE, field)
/device/linaro/bootloader/edk2/QuarkPlatformPkg/Library/PlatformSecLib/Ia32/
DPlatform.inc81 SB_OPCODE_FIELD EQU 018h ; Bit location of Opcode field
88 SB_PORT_FIELD EQU 010h ; Bit location of Port ID field
94 SB_ADDR_FIELD EQU 008h ; Bit location of Register field
95 SB_BE_FIELD EQU 004h ; Bit location of Byte Enables field
/device/linaro/bootloader/arm-trusted-firmware/include/stdlib/sys/
Dcdefs.h391 #define __offsetof(type, field) __builtin_offsetof(type, field) argument
394 #define __offsetof(type, field) \ argument
395 ((__size_t)(__uintptr_t)((const volatile void *)&((type *)0)->field))
397 #define __offsetof(type, field) \ argument
400 (static_cast<type *> (0)->field))))
/device/linaro/bootloader/edk2/IntelFrameworkPkg/
DFrameworkSpecConformance.txt15 # 4. Some defintitions don't exactly match Framework specification, some new field members are intr…
76 …The field type of the definition is *NOT* consistent with CacheSubclass specification. Specificati…
140 …on is *NOT* consistent with ProcSubclass specification, in which the name of third field is defined
168 …a. In ProcSubclass specification 0.9, the field name whose value equals to 0x58 is "EfiProcessorFa…
169 …Due to the name has been defined in previous field, changing it to "EfiProcessorFamilyUltraSparcII…
351 …The field name "MemorySpeed" in the definition above is *NOT* consistent with MemSubclass specific…
628 … is *NOT* consistent with MiscSubclass specification, in which the type of last field is defined as
664 …a. The field "ManagementDeviceThresholdLink" above is *NOT* defined in MiscSubclass specification …
667 …b. The field "ComponentType" above is *NOT* defined in MiscSubclass specifications 0.9. It's imple…
677 … consistent with MiscSubclass specification 0.9, in which the first field is assigned a wrong field
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_string.py165 for field in format_string.split('|'):
166 if field[0] == '+':
168 field_name, _, format_spec = field[1:].partition(':')
171 yield field, None, None, None
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/command/
Dbdist_rpm.py444 for field in ('Vendor',
451 val = getattr(self, string.lower(field))
453 spec_file.append('%s: %s' % (field, string.join(val)))
455 spec_file.append('%s: %s' % (field, val))
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/msi/
Dmsilib.py267 field = value[i]
268 if isinstance(field, (int, long)):
269 r.SetIntegerData(i+1,field)
270 elif isinstance(field, basestring):
271 r.SetStringData(i+1,field)
272 elif field is None:
274 elif isinstance(field, Binary):
275 r.SetStream(i+1, field.name)
277 raise TypeError, "Unsupported type %s" % field.__class__.__name__
/device/linaro/bootloader/edk2/QuarkPlatformPkg/Acpi/AcpiTables/Fadt/
DFadt1.0.aslc25 EFI_ACPI_OEM_ID, // OEMID is a 6 bytes long field
60 DUTY_OFFSET, // bit location of duty cycle field in p_cnt reg
61 DUTY_WIDTH, // bit width of duty cycle field in p_cnt reg
/device/linaro/bootloader/OpenPlatformPkg/Platforms/ARM/VExpress/AcpiTables/rtsm_ve-aemv8a/
Ddbg2.asl54 [0002] OEM Data Length : 0000 [Optional field not present]
55 [0002] OEM Data Offset : 0000 [Optional field not present]

1234