/external/ipsec-tools/src/racoon/ |
var.h | 99 #define LIST_FOREACH(elm, head, field) \ 100 for (elm = LIST_FIRST(head); elm; elm = LIST_NEXT(elm, field))
|
/external/proguard/src/proguard/classfile/attribute/ |
Attribute.java | 41 * An extra field in which visitors can store information. 83 * Accepts the given visitor in the context of the given field. 85 public void accept(Clazz clazz, Field field, AttributeVisitor attributeVisitor) 87 // Delegate the default invocation if the field is null anyway. 88 if (field == null) 106 accept(clazz, (Field)null, attributeVisitor);
|
/external/proguard/src/proguard/classfile/attribute/annotation/visitor/ |
AnnotationTypeFilter.java | 69 public void visitAnnotation(Clazz clazz, Field field, Annotation annotation) 73 annotationVisitor.visitAnnotation(clazz, field, annotation);
|
/external/qemu/distrib/sdl-1.2.12/src/audio/windx5/ |
directx.h | 67 #define FIELD_OFFSET(type, field) ((LONG)&(((type *)0)->field))
|
/external/qemu/distrib/sdl-1.2.12/src/video/windx5/ |
directx.h | 67 #define FIELD_OFFSET(type, field) ((LONG)&(((type *)0)->field))
|
/external/webkit/JavaScriptCore/wtf/ |
StdLibExtras.h | 49 #define OBJECT_OFFSETOF(class, field) (reinterpret_cast<ptrdiff_t>(&(reinterpret_cast<class*>(0x4000)->field)) - 0x4000)
|
/frameworks/base/media/libdrm/mobile1/src/jni/ |
drm1_jni.c | 424 jfieldID field; local 430 field = (*env)->GetFieldID(env, clazz, name, "I"); 433 if (NULL == field) 436 *value = (*env)->GetIntField(env, obj, field); 444 jfieldID field; local 450 field = (*env)->GetFieldID(env, clazz, name, "I"); 453 if (NULL == field) 456 (*env)->SetIntField(env, obj, field, value); 464 jfieldID field; local 470 field = (*env)->GetFieldID(env, clazz, name, "J") 533 jfieldID field; local 659 jfieldID field; local 781 jfieldID field; local 858 jfieldID field; local 1037 jfieldID field; local [all...] |
/hardware/ti/wlan/wl1271/TWD/TwIf/ |
TwIf.h | 60 * Defines a TNETWIF read/write field with padding. 63 #define PADDING(field) \ 65 field;
|
/packages/apps/Contacts/src/com/android/contacts/ui/widget/ |
ReadOnlyContactEditorView.java | 160 View field = mInflater.inflate( local 163 v = (TextView) field.findViewById(R.id.label); 165 v = (TextView) field.findViewById(R.id.data); 167 mGeneral.addView(field); 175 View field = mInflater.inflate( local 178 v = (TextView) field.findViewById(R.id.label); 180 v = (TextView) field.findViewById(R.id.data); 182 mGeneral.addView(field); 195 * Sets the {@link EditorListener} on the name field
|
/packages/apps/Email/src/org/apache/james/mime4j/ |
MimeStreamParser.java | 272 * field should be the complete field data excluding the
275 String field = sb.substring(start, pos);
local 279 * Check for a valid field.
281 int index = field.indexOf(':');
283 if (index != -1 && fieldChars.get(field.charAt(0))) {
285 String fieldName = field.substring(0, index).trim();
294 handler.field(field);
295 bd.addField(fieldName, field.substring(index + 1)); [all...] |
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/wlan/ti/wilink_6_1/TWD/TwIf/ |
TwIf.h | 60 * Defines a TNETWIF read/write field with padding. 63 #define PADDING(field) \ 65 field;
|
/frameworks/base/core/java/com/google/android/mms/pdu/ |
PduComposer.java | 334 * In the implementation of EncodedStringValue, the charset field will 481 private int appendHeader(int field) { 482 switch (field) { 484 appendOctet(field); 486 int version = mPduHeader.getOctet(field); 497 byte[] textString = mPduHeader.getTextString(field); 502 appendOctet(field); 509 EncodedStringValue[] addr = mPduHeader.getEncodedStringValues(field); 522 appendOctet(field); 529 appendOctet(field); [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...] |
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/https/ |
HttpsURLConnectionImpl.java | 222 public void addRequestProperty(String field, String newValue) { 223 httpsEngine.addRequestProperty(field, newValue); 232 public long getHeaderFieldDate(String field, long defaultValue) { 233 return httpsEngine.getHeaderFieldDate(field, defaultValue); 237 public int getHeaderFieldInt(String field, int defaultValue) { 238 return httpsEngine.getHeaderFieldInt(field, defaultValue); 272 public String getRequestProperty(String field) { 273 return httpsEngine.getRequestProperty(field); 312 public void setRequestProperty(String field, String newValue) { 313 httpsEngine.setRequestProperty(field, newValue) [all...] |
/external/icu4c/i18n/ |
gregocal.cpp | 74 // range limit on the year field is smaller (~ +/-140000). [alan 3.0] 107 * Field name Minimum Minimum Maximum Maximum 646 for (int32_t field = 0; field < UCAL_FIELD_COUNT; field++) { 648 if (field != UCAL_DATE && 649 field != UCAL_DAY_OF_YEAR && 650 isSet((UCalendarDateFields)field) && 651 ! boundsCheck(internalGet((UCalendarDateFields)field), (UCalendarDateFields)field)) [all...] |
ucal.cpp | 380 UCalendarDateFields field, 387 ((Calendar*)cal)->add(field, amount, *status); 392 UCalendarDateFields field, 399 ((Calendar*)cal)->roll(field, amount, *status); 404 UCalendarDateFields field, 410 return ((Calendar*)cal)->get(field, *status); 415 UCalendarDateFields field, 419 ((Calendar*)cal)->set(field, value); 424 UCalendarDateFields field) 427 return ((Calendar*)cal)->isSet(field); [all...] |
/build/tools/droiddoc/src/ |
SinceTagger.java | 138 for (FieldInfo field : doc.fields()) { 139 if (field.getSince() == null 140 && spec.allFields().containsKey(field.name())) { 141 field.setSince(versionName); 182 for (FieldInfo field : missingVersions(claz.fields())) { 183 Errors.error(Errors.NO_SINCE_DATA, field.position(), 184 "XML missing field " + claz.qualifiedName() 185 + "#" + field.name());
|
/external/icu4c/i18n/unicode/ |
ucal.h | 55 * A <code>UCalendar</code> object can produce all the time field values 69 * the Gregorian calendar, the default for a field is the same as that of the 77 * most recently set single field, will be used. 128 * <code>Calendar</code> provides an API for field "rolling", where fields 135 * adding the specified (signed) amount of time to a particular time field. 178 * Field number indicating the era, e.g., AD or BC in the Gregorian (Julian) calendar. 185 * Field number indicating the year. This is a calendar-specific value. 191 * Field number indicating the month. This is a calendar-specific value. 212 * Field number indicating the 225 * Field number indicating th [all...] |
/external/openssl/crypto/x509/ |
x509_vpm.c | 112 * The "inh_flags" field determines how this function behaves. 133 /* Macro to test if a field should be copied from src to dest */ 135 #define test_x509_verify_param_copy(field, def) \ 137 ((src->field != def) && (to_default || (dest->field == def)))) 139 /* Macro to test and copy a field if necessary */ 141 #define x509_verify_param_copy(field, def) \ 142 if (test_x509_verify_param_copy(field, def)) \ 143 dest->field = src->field [all...] |
/external/srec/tools/cmd/ |
srecres2utd.pl | 197 foreach $field (@fields) { 198 if ($field =~ /^sd13$/){ 199 print UTD "$token->{$field}" , ":"; 200 } elsif($field =~ /^(\S+)(\d+)$/) { 205 print UTD "$token->{$field}" , ":"; 214 foreach $field (@fields) { 215 print UTD "$field" , ":";
|
/frameworks/base/wifi/java/android/net/wifi/ |
WifiConfiguration.java | 312 for (EnterpriseField field : enterpriseFields) { 313 field.setValue(null); 390 for (EnterpriseField field : enterpriseFields) { 391 sbuf.append('\n').append(" " + field.varName() + ": "); 392 String value = field.value(); 454 for (EnterpriseField field : enterpriseFields) { 455 dest.writeString(field.value()); 480 for (EnterpriseField field : config.enterpriseFields) { 481 field.setValue(in.readString());
|
/dalvik/libcore/luni/src/test/java/tests/api/java/lang/reflect/ |
ParameterizedTypeTest.java | 25 import java.lang.reflect.Field; 134 Field field = clazz.getDeclaredField("e"); local 135 assertInstanceOf(ParameterizedType.class, field.getGenericType()); 136 ParameterizedType parameterizedType = (ParameterizedType) field.getGenericType();
|
/dalvik/libcore/luni/src/test/java/tests/api/java/net/ |
URLStreamHandlerFactoryTest.java | 4 import java.lang.reflect.Field; 22 Field factoryField = null; 77 Field [] fields = URL.class.getDeclaredFields(); 79 for (Field field : fields) { 80 if (URLStreamHandlerFactory.class.equals(field.getType())) { 82 factoryField = field;
|
/dalvik/vm/reflect/ |
Reflect.h | 62 Field* dvmSlotToField(ClassObject* clazz, int slot); 101 Field* dvmGetFieldFromReflectObj(Object* obj); 103 Object* dvmCreateReflectObjForField(const ClassObject* clazz, Field* field); 135 ArrayObject* dvmGetFieldAnnotations(const Field* field); 154 ArrayObject* dvmGetFieldSignatureAnnotation(const Field* field);
|