/dalvik/libcore/concurrent/src/main/java/java/util/concurrent/atomic/ |
AtomicIntegerFieldUpdater.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 57 * Atomically sets the field of the given object managed by this updater 61 * necessarily with respect to other changes in the field. 63 * @param obj An object whose field to conditionally se 237 Field field = null; local [all...] |
AtomicReferenceFieldUpdater.java | 41 * Because this class cannot ensure that all uses of the field 48 * @param <T> The type of the object holding the updatable field 49 * @param <V> The type of the field 54 * Creates and returns an updater for objects with the given field. 58 * @param tclass the class of the objects holding the field. 59 * @param vclass the class of the field 60 * @param fieldName the name of the field to be updated. 62 * @throws IllegalArgumentException if the field is not a volatile reference type. 64 * exception if the class does not hold field or is the wrong type. 79 * Atomically sets the field of the given object managed by this update 170 Field field = null; local [all...] |
/dalvik/vm/ |
DvmDex.h | 55 struct Field** pResFields; 124 INLINE struct Field* dvmDexGetResolvedField(const DvmDex* pDvmDex, 154 struct Field* field) 157 pDvmDex->pResFields[fieldIdx] = field; 214 INLINE struct Field* dvmDexGetResolvedField(const DvmDex* pDvmDex, 272 struct Field* field) 281 pDvmDex->pResFields[newIdx] = field; 309 INLINE struct Field* dvmDexGetResolvedField(const DvmDex* pDvmDex [all...] |
/external/openssl/crypto/bn/ |
bn_nist.c | 347 int BN_nist_mod_192(BIGNUM *r, const BIGNUM *a, const BIGNUM *field, 364 field = &_bignum_nist_p_192; /* just to make sure */ 367 return BN_nnmod(r, a, field, ctx); 369 i = BN_ucmp(field, a); 431 int BN_nist_mod_224(BIGNUM *r, const BIGNUM *a, const BIGNUM *field, 450 field = &_bignum_nist_p_224; /* just to make sure */ 453 return BN_nnmod(r, a, field, ctx); 455 i = BN_ucmp(field, a); 542 int BN_nist_mod_256(BIGNUM *r, const BIGNUM *a, const BIGNUM *field, 560 field = &_bignum_nist_p_256; /* just to make sure * [all...] |
/external/webkit/WebCore/page/ |
EventSource.cpp | 260 String field(&m_receiveBuf[bufPos], noValue ? lineLength : fieldLength); 271 if (field == "data") { 276 } else if (field == "event") 278 else if (field == "id") 280 else if (field == "retry") {
|
/frameworks/base/libs/rs/ |
rsProgram.cpp | 155 for (uint32_t field=0; field < e->getFieldCount(); field++) { 156 const Element *f = e->getField(field); 169 s.append(e->getFieldName(field));
|
/cts/tools/dex-tools/test/dex/reader/ |
DexTestsCommon.java | 108 for (DexField field : clazz.getFields()) { 109 if(fieldName.equals(field.getName())){ 110 return field; 113 fail("Field: " + fieldName +" not present in class: " + clazz.getName()); 114 throw new IllegalArgumentException("Field: " + fieldName +" not present in class: " + clazz.getName());
|
/dalvik/libcore/luni/src/test/java/java/io/ |
FileTest.java | 123 private String field; field in class:FileTest.MyFile 126 field = ""; 129 field.length();
|
/dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/net/ |
ContentHandlerFactoryTest.java | 14 import java.lang.reflect.Field; 25 Field factoryField = null; 112 Field [] fields = URLConnection.class.getDeclaredFields(); 114 for (Field field : fields) { 115 if (ContentHandlerFactory.class.equals(field.getType())) { 117 factoryField = field;
|
/dalvik/libcore/luni/src/test/java/tests/api/java/net/ |
DatagramSocketImplFactoryTest.java | 27 import java.lang.reflect.Field; 41 Field factoryField = null; 109 Field [] fields = DatagramSocket.class.getDeclaredFields(); 111 for (Field field : fields) { 112 if (DatagramSocketImplFactory.class.equals(field.getType())) { 114 factoryField = field;
|
SocketImplFactoryTest.java | 13 import java.lang.reflect.Field; 26 Field factoryField = null; 89 Field [] fields = Socket.class.getDeclaredFields(); 91 for (Field field : fields) { 92 if (SocketImplFactory.class.equals(field.getType())) { 94 factoryField = field;
|
/development/testrunner/ |
am_instrument_parser.py | 145 for field in re_fields.finditer(result_block_string): 146 key, value = (field.group('key').strip(), field.group('value').strip())
|
/external/icu4c/i18n/ |
buddhcal.cpp | 94 int32_t BuddhistCalendar::handleGetLimit(UCalendarDateFields field, ELimitType limitType) const 96 if(field == UCAL_ERA) { 99 return GregorianCalendar::handleGetLimit(field,limitType);
|
chnsecal.cpp | 169 int32_t ChineseCalendar::handleGetLimit(UCalendarDateFields field, ELimitType limitType) const { 170 return LIMITS[field][limitType]; 181 * YEAR field as the cycle and year-of-cycle, or the EXTENDED_YEAR 182 * field as the continuous year count, depending on which is newer. 200 * <p>Note: This method also reads the IS_LEAP_MONTH field to determine 226 * <p>Compute the ChineseCalendar-specific field IS_LEAP_MONTH. 237 * Field resolution table that incorporates IS_LEAP_MONTH. 265 * Override Calendar to add IS_LEAP_MONTH to the field resolution 277 * <p>Note: This method reads the IS_LEAP_MONTH field to determine 281 * by reading the IS_LEAP_MONTH field [all...] |
dtptngen.cpp | 146 // patternChar, field, type, minLen, weight 457 UnicodeString field = fp->items[i]; local 458 if ( fp->isQuoteLiteral(field) ) { 466 if (fp->isPatternSeparator(field) && gotMm) { 467 mmss+=field; 470 UChar ch=field.charAt(0); 473 mmss+=field; 480 mmss+= field; 503 UnicodeString rbPattern, value, field; local 716 DateTimePatternGenerator::setAppendItemFormat(UDateTimePatternField field, const UnicodeString& value) 995 UnicodeString field = fp->items[i]; local 1543 UnicodeString field = fp->items[i]; local [all...] |
ethpccal.cpp | 129 EthiopicCalendar::handleGetLimit(UCalendarDateFields field, ELimitType limitType) const 131 if (isAmeteAlemEra() && field == UCAL_ERA) { 134 return CECalendar::handleGetLimit(field, limitType);
|
taiwncal.cpp | 97 int32_t TaiwanCalendar::handleGetLimit(UCalendarDateFields field, ELimitType limitType) const 99 if(field == UCAL_ERA) { 106 return GregorianCalendar::handleGetLimit(field,limitType);
|
dtptngen_impl.h | 102 UDateTimePatternField field; member in struct:dtTypeElem 148 UBool isPatternSeparator(UnicodeString& field); 172 void addMissing(int32_t field) { missingFieldMask |= (1<<field); }; 173 void addExtra(int32_t field) { extraFieldMask |= (1<<field); };
|
/external/webkit/WebKit/win/ |
WebMutableURLRequest.h | 107 /* [in] */ BSTR field, 123 /* [in] */ BSTR field); 154 /* [in] */ BSTR field);
|
/external/wpa_supplicant_6/wpa_supplicant/src/drivers/ |
MobileApple80211.c | 127 static int (*__Apple80211CopyValue)(Apple80211Ref handle, int field, 130 int Apple80211CopyValue(Apple80211Ref handle, int field, CFDictionaryRef arg2, 133 return __Apple80211CopyValue(handle, field, arg2, value);
|
/frameworks/base/core/jni/ |
Time.cpp | 38 #define COMPARE_FIELD(field) do { \ 39 int diff = a.t.field - b.t.field; \
|
/ndk/sources/cpufeatures/ |
cpu-features.c | 73 /* Extract the content of a the first occurence of a given field in 80 extract_cpuinfo_field(char* buffer, int buflen, const char* field) 82 int fieldlen = strlen(field); 88 /* Look for first field occurence, and ensures it starts the line. 93 p = memmem(p, bufend-p, field, fieldlen); 184 /* Extract architecture from the "CPU Architecture" field, 186 * We cannot rely on the 'Processor' field here. 201 * in the future. Unfortunately, there is no 'Features' field to 211 /* Extract the list of CPU features from 'Features' field */
|
/packages/apps/Email/src/org/apache/james/mime4j/message/ |
Message.java | 32 import org.apache.james.mime4j.field.Field;
33 import org.apache.james.mime4j.field.UnstructuredField;
72 * Gets the <code>Subject</code> field.
74 * @return the <code>Subject</code> field or <code>null</code> if it
78 return (UnstructuredField) getHeader().getField(Field.SUBJECT);
142 * @see org.apache.james.mime4j.ContentHandler#field(java.lang.String)
144 public void field(String fieldData) {
method in class:Message.MessageBuilder 146 ((Header) stack.peek()).addField(Field.parse(fieldData));
|
/dalvik/dx/src/com/android/dx/dex/file/ |
ClassDefItem.java | 274 * Adds a static field. 276 * @param field {@code non-null;} the field to add 277 * @param value {@code null-ok;} initial value for the field, if any 279 public void addStaticField(EncodedField field, Constant value) { 280 classData.addStaticField(field, value); 284 * Adds an instance field. 286 * @param field {@code non-null;} the field to add 288 public void addInstanceField(EncodedField field) { [all...] |
/dalvik/vm/oo/ |
Resolve.c | 21 * If we are resolving a static method or static field, we make the 108 * verification. Instance field and virtual method accesses can 378 * Resolve an instance field reference. 380 * Returns NULL and throws an exception on error (no such field, illegal 390 LOGVV("--- resolving field %u (referrer=%s cl=%p)\n", 396 * Find the field's class. 415 * could still be in the process of initializing it if the field 418 assert(dvmIsClassInitialized(resField->field.clazz) || 419 dvmIsClassInitializing(resField->field.clazz)); 425 dvmDexSetResolvedField(pDvmDex, ifieldIdx, (Field*)resField) [all...] |