HomeSort by relevance Sort by last modified time
    Searched defs:Field (Results 1 - 25 of 323) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/proguard/src/proguard/classfile/
Field.java 26 * Representation of a field from a class.
30 public interface Field extends Member
  /dalvik/dexgen/src/com/android/dexgen/rop/
Field.java 24 public interface Field
27 * Get the constant value for this field, if any. This only returns
28 * non-{@code null} for a {@code static final} field which
32 * field isn't a constant
  /dalvik/dx/src/com/android/dx/cf/iface/
Field.java 24 public interface Field
27 * Get the constant value for this field, if any. This only returns
28 * non-{@code null} for a {@code static final} field which
32 * field isn't a constant
  /external/apache-commons-math/src/main/java/org/apache/commons/math/
Field.java 20 * Interface representing a <a href="http://mathworld.wolfram.com/Field.html">field</a>.
24 * @param <T> the type of the field elements
29 public interface Field<T> {
31 /** Get the additive identity of the field.
33 * The additive identity is the element e<sub>0</sub> of the field such that
34 * for all elements a of the field, the equalities a + e<sub>0</sub> =
37 * @return additive identity of the field
41 /** Get the multiplicative identity of the field.
43 * The multiplicative identity is the element e<sub>1</sub> of the field such tha
    [all...]
  /external/skia/src/sksl/ir/
SkSLField.h 20 * A symbol which should be interpreted as a field access. Fields are added to the symboltable
21 * whenever a bare reference to an identifier should refer to a struct field; in GLSL, this is the
24 struct Field : public Symbol {
25 Field(Position position, const Variable& owner, int fieldIndex)
  /external/clang/test/CodeGenCXX/
vtable-pointer-initialization.cpp 3 struct Field {
4 Field();
5 ~Field();
19 Field field; member in struct:A
39 Field field; member in struct:B
skip-vtable-pointer-initialization.cpp 40 // and Field's destructor body is also trivial.
41 struct Field {
42 ~Field() { }
49 Field field; member in struct:Test3::A
62 // Check that we do initialize the vtable pointer in A::~A(), since Field's destructor body
67 struct Field {
68 ~Field() { f(); }
75 Field field; member in struct:Test4::A
99 Field field; member in struct:Test5::A
127 Field field; member in struct:Test6::A
153 Field field; member in struct:Test7::A
179 Field field; member in struct:Test8::A
    [all...]
  /prebuilts/go/darwin-x86/doc/play/
life.go 11 // Field represents a two-dimensional field of cells.
12 type Field struct {
17 // NewField returns an empty field of the specified width and height.
18 func NewField(w, h int) *Field {
23 return &Field{s: s, w: w, h: h}
27 func (f *Field) Set(x, y int, b bool) {
32 // If the x or y coordinates are outside the field boundaries they are wrapped
34 func (f *Field) Alive(x, y int) bool {
43 func (f *Field) Next(x, y int) bool
    [all...]
  /prebuilts/go/linux-x86/doc/play/
life.go 11 // Field represents a two-dimensional field of cells.
12 type Field struct {
17 // NewField returns an empty field of the specified width and height.
18 func NewField(w, h int) *Field {
23 return &Field{s: s, w: w, h: h}
27 func (f *Field) Set(x, y int, b bool) {
32 // If the x or y coordinates are outside the field boundaries they are wrapped
34 func (f *Field) Alive(x, y int) bool {
43 func (f *Field) Next(x, y int) bool
    [all...]
  /art/runtime/mirror/
field.h 38 // C++ mirror of java.lang.reflect.Field.
39 class MANAGED Field : public AccessibleObject {
50 return GetField32(OFFSET_OF_OBJECT_MEMBER(Field, dex_field_index_));
54 return GetFieldObject<Class>(OFFSET_OF_OBJECT_MEMBER(Field, declaring_class_));
58 return GetField32(OFFSET_OF_OBJECT_MEMBER(Field, access_flags_));
79 return GetFieldObject<mirror::Class>(OFFSET_OF_OBJECT_MEMBER(Field, type_));
83 return GetField32(OFFSET_OF_OBJECT_MEMBER(Field, offset_));
98 static mirror::Field* CreateFromArtField(Thread* self, ArtField* field,
120 SetField32<kTransactionActive>(OFFSET_OF_OBJECT_MEMBER(Field, access_flags_), flags)
    [all...]
  /art/tools/dexfuzz/src/dexfuzz/rawdex/formats/
ContainsPoolIndex.java 30 Field,
  /external/icu/android_icu4j/src/main/java/android/icu/text/
ChineseDateFormat.java 22 * This class handles a <code>ChineseCalendar</code>-specific field,
35 * <p>Summary of field changes vs. {@link SimpleDateFormat}:<pre>
83 * 2). To specify an alternate numbering system on a field by field basis, use the field letters from the pattern
170 protected DateFormat.Field patternCharToDateFormatField(char ch) {
171 // no longer any field corresponding to pattern char 'l'
186 public static class Field extends DateFormat.Field {
192 * @deprecated ICU 50 This field is only used by the deprecated ChineseDateFormat class
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
ChineseDateFormat.java 21 * This class handles a <code>ChineseCalendar</code>-specific field,
34 * <p>Summary of field changes vs. {@link SimpleDateFormat}:<pre>
81 * 2). To specify an alternate numbering system on a field by field basis, use the field letters from the pattern
168 protected DateFormat.Field patternCharToDateFormatField(char ch) {
169 // no longer any field corresponding to pattern char 'l'
184 public static class Field extends DateFormat.Field {
190 * @deprecated ICU 50 This field is only used by the deprecated ChineseDateFormat class
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/
Field.java 42 * This class represents a specific field definition in a class.
45 * and shouldn't take into account any non-FieldReference specifics of this field.
47 public interface Field extends FieldReference, Member {
49 * Gets the type of the class that defines this field.
51 * @return The type of the class that defines this field
56 * Gets the name of this field.
58 * @return The name of this field
63 * Gets the type of this field.
65 * @return The type of this field
70 * Gets the access flags for this field
    [all...]
  /external/toolchain-utils/crosperf/
field.py 2 """Module to represent a Field in an experiment file."""
5 class Field(object):
6 """Class representing a Field in an experiment file."""
38 class TextField(Field):
39 """Class of text field."""
54 class BooleanField(Field):
55 """Class of boolean field."""
75 class IntegerField(Field):
76 """Class of integer field."""
91 class FloatField(Field)
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/
SimpleContentHandler.java 24 import org.apache.james.mime4j.field.Field;
71 * @see org.apache.james.mime4j.AbstractContentHandler#field(java.lang.String)
73 public final void field(String fieldData) { method in class:SimpleContentHandler
74 currHeader.addField(Field.parse(fieldData));
  /system/tpm/attestation/common/
proto_print.py 42 # Holds information about a protobuf message field.
45 # repeated: Whether the field is a repeated field.
46 # type_: The type of the field. E.g. int32.
47 # name: The name of the field.
48 Field = collections.namedtuple('Field', 'repeated type_ name')
56 fields: A list of Field tuples.
69 """Adds a new field to the message.
73 field_type: The type of the field. E.g. int32
    [all...]
  /cts/hostsidetests/inputmethodservice/deviceside/lib/src/android/inputmethodservice/cts/db/
Field.java 25 public abstract class Field {
27 /** Field position in a row. */
30 /** Column name of this field. */
33 /** Field type of SQLite. */
36 public static Field newInstance(final int pos, final String name, final int fieldType) {
43 throw new IllegalArgumentException("Unknown field type: " + fieldType);
47 private Field(final int pos, final String name, final int fieldType) {
87 throw new IllegalArgumentException("Unknown field type: " + fieldType);
92 * Abstraction of INTEGER type field.
94 private static final class IntegerField extends Field {
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/IScsiDxe/
IScsiDhcp.c 40 ISCSI_ROOT_PATH_FIELD *Field;
110 Field = &Fields[RP_FIELD_IDX_SERVERNAME];
111 Status = IScsiAsciiStrToIp (Field->Str, &ConfigNvData->TargetIp);
118 Field = &Fields[RP_FIELD_IDX_PROTOCOL];
119 if ((Field->Str != NULL) && ((*(Field->Str) - '0') != EFI_IP_PROTO_TCP)) {
126 Field = &Fields[RP_FIELD_IDX_PORT];
127 if (Field->Str != NULL) {
128 ConfigNvData->TargetPort = (UINT16) AsciiStrDecimalToUintn (Field->Str);
135 Field = &Fields[RP_FIELD_IDX_LUN];
    [all...]
  /libcore/ojluni/src/main/java/java/text/
Format.java 112 * object which identifies what information is contained in the field and its
115 * the field. For examples of these constants, see <code>ERA_FIELD</code> and its
163 * If the <code>pos</code> argument identifies a field used by the format,
165 * field encountered.
169 * @param pos A <code>FieldPosition</code> identifying a field
189 * <code>Field</code>. It is up to each <code>Format</code> implementation
343 * field identifiers in <code>FieldPosition</code>.
347 public static class Field extends AttributedCharacterIterator.Attribute {
353 * Creates a Field with the specified name.
357 protected Field(String name)
    [all...]
  /dalvik/dx/src/com/android/dex/
ClassData.java 20 private final Field[] staticFields;
21 private final Field[] instanceFields;
25 public ClassData(Field[] staticFields, Field[] instanceFields,
33 public Field[] getStaticFields() {
37 public Field[] getInstanceFields() {
49 public Field[] allFields() {
50 Field[] result = new Field[staticFields.length + instanceFields.length];
63 public static class Field {
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/IScsiDxe/
IScsiDhcp.c 43 ISCSI_ROOT_PATH_FIELD *Field;
118 Field = &Fields[RP_FIELD_IDX_SERVERNAME];
126 Status = IScsiAsciiStrToIp (Field->Str, IpMode, &Ip);
135 Field = &Fields[RP_FIELD_IDX_PROTOCOL];
136 if ((Field->Str != NULL) && ((*(Field->Str) - '0') != EFI_IP_PROTO_TCP)) {
143 Field = &Fields[RP_FIELD_IDX_PORT];
144 if (Field->Str != NULL) {
145 ConfigNvData->TargetPort = (UINT16) AsciiStrDecimalToUintn (Field->Str);
152 Field = &Fields[RP_FIELD_IDX_LUN];
    [all...]
IScsiDhcp6.c 45 ISCSI_ROOT_PATH_FIELD *Field;
82 // Extract SERVERNAME field in the Root Path option.
146 Field = &Fields[RP_FIELD_IDX_SERVERNAME];
153 Status = IScsiAsciiStrToIp (Field->Str, IpMode, &Ip);
163 Field = &Fields[RP_FIELD_IDX_PROTOCOL];
164 if ((Field->Str != NULL) && ((*(Field->Str) - '0') != EFI_IP_PROTO_TCP)) {
171 Field = &Fields[RP_FIELD_IDX_PORT];
172 if (Field->Str != NULL) {
173 ConfigNvData->TargetPort = (UINT16) AsciiStrDecimalToUintn (Field->Str);
    [all...]
  /device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
ns_addr.c 58 static void Field (char *buf, u_char *out, int len);
74 * First, figure out what he intends as a field separtor.
94 Field(buf, addr.x_net.c_net, 4);
101 Field(socketname, (u_char *)&addr.x_port, 2);
104 Field(hostname, addr.x_host.c_host, 6);
110 Field(
  /external/skia/src/sfnt/
SkOTTable_gasp.h 32 struct Field {
53 } field; member in union:SkOTTableGridAndScanProcedure::GaspRange::behavior

Completed in 1166 milliseconds

1 2 3 4 5 6 7 8 91011>>