HomeSort by relevance Sort by last modified time
    Searched full:field (Results 151 - 175 of 5019) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/iptables/include/linux/netfilter_ipv4/
ipt_DSCP.h 1 /* iptables module for setting the IPv4 DSCP field
7 * See RFC2474 for a description of the DSCP field within the IP Header.
  /external/kernel-headers/original/linux/netfilter_ipv4/
ipt_DSCP.h 1 /* iptables module for setting the IPv4 DSCP field
7 * See RFC2474 for a description of the DSCP field within the IP Header.
  /external/webkit/WebCore/manual-tests/
inspector-document-methods-override.html 1 <p>This page test that using the Web Inspector's search field on a page that
6 then type &ldquo;p&rdquo; in the search field (without the quotes). If the
  /external/webkit/WebCore/manual-tests/resources/
TestApplet.class 
  /external/proguard/src/proguard/classfile/attribute/visitor/
AttributeNameFilter.java 114 public void visitDeprecatedAttribute(Clazz clazz, Field field, DeprecatedAttribute deprecatedAttribute)
118 deprecatedAttribute.accept(clazz, field, attributeVisitor);
141 public void visitSyntheticAttribute(Clazz clazz, Field field, SyntheticAttribute syntheticAttribute)
145 syntheticAttribute.accept(clazz, field, attributeVisitor);
168 public void visitSignatureAttribute(Clazz clazz, Field field, SignatureAttribute signatureAttribute)
172 signatureAttribute.accept(clazz, field, attributeVisitor);
186 public void visitConstantValueAttribute(Clazz clazz, Field field, ConstantValueAttribute constantValueAttribute
    [all...]
RequiredAttributeFilter.java 128 public void visitDeprecatedAttribute(Clazz clazz, Field field, DeprecatedAttribute deprecatedAttribute)
132 deprecatedAttribute.accept(clazz, field, optionalAttributeVisitor);
155 public void visitSyntheticAttribute(Clazz clazz, Field field, SyntheticAttribute syntheticAttribute)
159 syntheticAttribute.accept(clazz, field, optionalAttributeVisitor);
182 public void visitSignatureAttribute(Clazz clazz, Field field, SignatureAttribute signatureAttribute)
186 signatureAttribute.accept(clazz, field, optionalAttributeVisitor);
200 public void visitConstantValueAttribute(Clazz clazz, Field field, ConstantValueAttribute constantValueAttribute
    [all...]
  /external/proguard/src/proguard/optimize/
ChangedCodePrinter.java 99 public void visitDeprecatedAttribute(Clazz clazz, Field field, DeprecatedAttribute deprecatedAttribute)
101 attributeVisitor.visitDeprecatedAttribute(clazz, field, deprecatedAttribute);
105 public void visitSyntheticAttribute(Clazz clazz, Field field, SyntheticAttribute syntheticAttribute)
107 attributeVisitor.visitSyntheticAttribute(clazz, field, syntheticAttribute);
111 public void visitSignatureAttribute(Clazz clazz, Field field, SignatureAttribute syntheticAttribute)
113 attributeVisitor.visitSignatureAttribute(clazz, field, syntheticAttribute);
135 public void visitConstantValueAttribute(Clazz clazz, Field field, ConstantValueAttribute constantValueAttribute
    [all...]
  /external/openssl/crypto/asn1/
asn1t.h 289 #define ASN1_EX_TYPE(flags, tag, stname, field, type) { \
290 (flags), (tag), offsetof(stname, field),\
291 #field, ASN1_ITEM_ref(type) }
300 #define ASN1_IMP_EX(stname, field, type, tag, ex) \
301 ASN1_EX_TYPE(ASN1_TFLG_IMPLICIT | ex, tag, stname, field, type)
303 #define ASN1_EXP_EX(stname, field, type, tag, ex) \
304 ASN1_EX_TYPE(ASN1_TFLG_EXPLICIT | ex, tag, stname, field, type)
306 /* Any defined by macros: the field used is in the table itself */
316 #define ASN1_SIMPLE(stname, field, type) ASN1_EX_TYPE(0,0, stname, field, type
    [all...]
  /external/openssl/include/openssl/
asn1t.h 289 #define ASN1_EX_TYPE(flags, tag, stname, field, type) { \
290 (flags), (tag), offsetof(stname, field),\
291 #field, ASN1_ITEM_ref(type) }
300 #define ASN1_IMP_EX(stname, field, type, tag, ex) \
301 ASN1_EX_TYPE(ASN1_TFLG_IMPLICIT | ex, tag, stname, field, type)
303 #define ASN1_EXP_EX(stname, field, type, tag, ex) \
304 ASN1_EX_TYPE(ASN1_TFLG_EXPLICIT | ex, tag, stname, field, type)
306 /* Any defined by macros: the field used is in the table itself */
316 #define ASN1_SIMPLE(stname, field, type) ASN1_EX_TYPE(0,0, stname, field, type
    [all...]
  /dalvik/libcore/concurrent/src/main/java/java/util/concurrent/atomic/
AtomicLongFieldUpdater.java 23 * Because this class cannot ensure that all uses of the field
30 * @param <T> The type of the object holding the updatable field
34 * Creates and returns an updater for objects with the given field.
38 * @param tclass the class of the objects holding the field
39 * @param fieldName the name of the field to be updated.
41 * @throws IllegalArgumentException if the field is not a
44 * exception if the class does not hold field or is the wrong type.
60 * Atomically sets the field of the given object managed by this updater
64 * necessarily with respect to other changes in the field.
66 * @param obj An object whose field to conditionally se
237 Field field = null; local
323 Field field = null; local
    [all...]
  /external/icu4c/test/intltest/
normconf.cpp 284 * there are five columns, corresponding to field[0]..field[4].
292 * @param field the 5 columns
296 UBool NormalizerConformanceTest::checkConformance(const UnicodeString* field,
308 Normalizer::normalize(field[i], UNORM_NFC, options, out, status);
309 pass &= assertEqual("C", field[i], out, field[1], "c2!=C(c", fieldNum);
310 iterativeNorm(field[i], UNORM_NFC, options, out, +1);
311 pass &= assertEqual("C(+1)", field[i], out, field[1], "c2!=C(c", fieldNum)
    [all...]
  /dalvik/docs/opcodes/
opcode-60-sget.html 17 Perform the identified object static field operation with the identified static
18 field, loading or storing into the value register.
22 field argument to be a more direct offset.
38 <td>s<i>staticop</i> vAA, field@BBBB<br/>
48 <code>B:</code> static field reference index (16 bits)</td>
64 B must be a valid index into the field reference pool.
67 The field denoted by B must be static. The type of the field denoted by B
76 The value of the given instance field is read from the given object and
77 moved into the given register vA, that is, vA'=&lt;class&gt;.&lt;field&gt;
    [all...]
  /dalvik/dx/src/com/android/dx/cf/iface/
ClassFile.java 33 * Gets the field {@code magic}.
40 * Gets the field {@code minor_version}.
47 * Gets the field {@code major_version}.
54 * Gets the field {@code access_flags}.
61 * Gets the field {@code this_class}, interpreted as a type constant.
68 * Gets the field {@code super_class}, interpreted as a type constant
76 * Gets the field {@code constant_pool} (along with
84 * Gets the field {@code interfaces} (along with
92 * Gets the field {@code fields} (along with
100 * Gets the field {@code methods} (along wit
    [all...]
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
FieldList.java 42 * Get the {@code n}th field.
44 * @param n {@code n >= 0, n < size();} which field
45 * @return {@code non-null;} the field in question
47 public Field get(int n);
  /packages/apps/Email/src/org/apache/james/mime4j/field/address/
Builder.java 20 package org.apache.james.mime4j.field.address;
26 import org.apache.james.mime4j.field.address.parser.*;
27 import org.apache.james.mime4j.field.address.parser.ASTaddr_spec;
28 import org.apache.james.mime4j.field.address.parser.ASTaddress;
29 import org.apache.james.mime4j.field.address.parser.ASTaddress_list;
30 import org.apache.james.mime4j.field.address.parser.ASTangle_addr;
31 import org.apache.james.mime4j.field.address.parser.ASTdomain;
32 import org.apache.james.mime4j.field.address.parser.ASTgroup_body;
33 import org.apache.james.mime4j.field.address.parser.ASTlocal_part;
34 import org.apache.james.mime4j.field.address.parser.ASTmailbox;
    [all...]
  /external/bluetooth/glib/docs/reference/glib/tmpl/
relations.sgml 36 field, use g_relation_count().
39 To get all the records which have a particular value in a given field,
44 To delete all records which have a particular value in a given field,
82 Creates an index on the given field.
87 @field: the field to index, counting from 0.
88 @hash_func: a function to produce a hash value from the field data.
89 @key_equal_func: a function to compare two values of the given field.
118 in the given field.
123 @field: the field of each record to match
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/7/
missingSinces.txt 59 NO DOC BLOCK: android.app.WallpaperManager Field ACTION_LIVE_WALLPAPER_CHOOSER
60 NO DOC BLOCK: android.content.Intent Field ACTION_LOCALE_CHANGED
61 NO DOC BLOCK: android.R.attr Field author
62 NO DOC BLOCK: android.R.attr Field autoStart
63 NO DOC BLOCK: android.media.MediaRecorder.AudioSource Field CAMCORDER
64 NO DOC BLOCK: android.app.WallpaperManager Field COMMAND_DROP
65 NO DOC BLOCK: android.app.WallpaperManager Field COMMAND_TAP
66 NO DOC BLOCK: android.os.Build.VERSION_CODES Field ECLAIR_MR1
67 NO DOC BLOCK: android.content.Intent Field EXTRA_CHANGED_COMPONENT_NAME_LIST
68 NO DOC BLOCK: android.content.pm.PackageManager Field FEATURE_CAMER
    [all...]
  /dalvik/dx/tests/015-field-attrib-Synthetic/
info.txt 6 field with a valid Synthetic attribute.
  /dalvik/dx/tests/016-field-attrib-Deprecated/
info.txt 6 field with a valid Deprecated attribute.
  /dalvik/dx/tests/026-field-attrib-Signature/
info.txt 6 field with a syntactically valid Signature attribute.
  /dalvik/tests/004-annotations/src/android/test/anno/
AnnoArrayField.java 7 @Target({ElementType.FIELD})
AnnoFancyField.java 5 @Target(ElementType.FIELD)
ExportedProperty.java 6 @Target({ ElementType.FIELD, ElementType.METHOD })
  /dalvik/tests/075-verification-error/
expected.txt 11 Got expected IllegalAccessError (field-class)

Completed in 1014 milliseconds

1 2 3 4 5 67 8 91011>>