HomeSort by relevance Sort by last modified time
    Searched refs:Field (Results 601 - 625 of 955) sorted by null

<<21222324252627282930>>

  /external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
DeprecatedAPIChecker.java 12 import java.lang.reflect.Field;
111 for (Field f : cls.getDeclaredFields()) {
119 pw.println("## Error ## Field " + clsName + "." + fName + " is not found in the API signature data.");
124 compareDeprecated(isAPIDeprecated(api), f.isAnnotationPresent(Deprecated.class), clsName, fName, "Field");
190 for (Field ec : cls.getDeclaredFields()) {
271 private static APIInfo findFieldInfo(Set<APIInfo> apis, String cls, String field) {
274 if (api.isField() && clsName.equals(cls) && api.getName().equals(field)) {
  /external/llvm/utils/TableGen/
CodeGenRegisters.cpp 603 StringRef Field = RV.getName();
606 if (Field == "SubRegs")
610 if (Field == "AsmName")
614 if (Field == "CostPerUse")
618 if (Field == "CoveredBySubRegs")
622 if (Field == "SubRegIndices" ||
623 Field == "CompositeIndices") {
624 NewReg->addValue(*Def->getValue(Field));
629 if (Field == "DwarfNumbers" ||
630 Field == "DwarfAlias" |
    [all...]
FixedLenDecoderEmitter.cpp 391 // Populates the field of the insn given the start position and the number of
396 bool fieldFromInsn(uint64_t &Field, insn_t &Insn, unsigned StartBit,
512 uint64_t Field;
514 bool ok = Owner->fieldFromInsn(Field, Insn, StartBit, NumBits);
518 // instruction into the bucket keyed off the constant field value.
520 FilteredInstructions[Field].push_back(LastOpcFiltered);
623 // Field value -1 implies a non-empty set of variable instructions.
657 // two as to account for the width of the NumToSkip field itself.
754 // ULEB128 encoded field value.
    [all...]
  /external/v8/benchmarks/
navier-stokes.js 55 function addPoints(field) {
58 field.setVelocity(i, i, n, n);
59 field.setDensity(i, i, 5);
60 field.setVelocity(i, n - i, -n, -n);
61 field.setDensity(i, n - i, 20);
62 field.setVelocity(128 - i, n + i, -n, -n);
63 field.setDensity(128 - i, n + i, 30);
70 function prepareFrame(field)
73 addPoints(field);
300 function Field(dens, u, v)
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/internet/
MimeMessage.java 32 import org.apache.james.mime4j.field.DateTimeField;
33 import org.apache.james.mime4j.field.Field;
79 // headers are parsed by org.apache.james.mime4j.field.DateTimeField which does not have any
175 DateTimeField field = (DateTimeField)Field.parse("Date: " local
177 mSentDate = field.getDate();
187 DateTimeField field = (DateTimeField)Field.parse("Date: " local
189 mSentDate = field.getDate()
580 public void field(String fieldData) { method in class:MimeMessage.MimeMessageBuilder
    [all...]
  /packages/services/Telephony/src/com/android/phone/common/mail/internet/
MimeMessage.java 31 import org.apache.james.mime4j.field.DateTimeField;
32 import org.apache.james.mime4j.field.Field;
78 // headers are parsed by org.apache.james.mime4j.field.DateTimeField which does not have any
174 DateTimeField field = (DateTimeField)Field.parse("Date: " local
176 mSentDate = field.getDate();
186 DateTimeField field = (DateTimeField)Field.parse("Date: " local
188 mSentDate = field.getDate()
579 public void field(String fieldData) { method in class:MimeMessage.MimeMessageBuilder
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
AndroidTargetParser.java 46 import java.lang.reflect.Field;
341 Field[] fields = permissionClass.getFields();
343 for (Field f : fields) {
355 // if the field is inaccessible we ignore it.
357 // looks like this is not a static field. we can ignore.
359 // lets just ignore the field again
  /system/tools/aidl/
ast_java.cpp 67 Field::Field(int m, Variable* v) : ClassElement(), modifiers(m), variable(v) {}
69 void Field::Write(CodeWriter* to) const {
  /external/icu/android_icu4j/src/main/java/android/icu/text/
MessageFormat.java     [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
MessageFormat.java     [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/net/
ConnectivityScreenOffTestActivity.java 49 import java.lang.reflect.Field;
229 final Field field = params.getClass().getField("userActivityTimeout"); local
232 mUserActivityTimeout = field.getLong(params);
235 field.setLong(params, 1);
  /cts/tests/tests/os/src/android/os/storage/cts/
StorageManagerTest.java 40 import java.lang.reflect.Field;
250 for (Field field : StorageVolume.class.getDeclaredFields()) {
251 if (Modifier.isStatic(field.getModifiers())) continue;
252 field.setAccessible(true);
253 final Object originalValue = field.get(volume);
254 final Object clonedValue = field.get(clone);
255 assertEquals("Mismatch for field " + field.getName(), originalValue, clonedValue);
  /dalvik/dx/src/com/android/dx/dex/cf/
CfTranslator.java 23 import com.android.dx.cf.iface.Field;
139 // intern constant pool method, field and type references
173 Field one = fields.get(i);
175 CstFieldRef field = new CstFieldRef(thisClass, one.getNat()); local
180 EncodedField fi = new EncodedField(field, accessFlags);
182 constVal = coerceConstant(constVal, field.getType());
186 EncodedField fi = new EncodedField(field, accessFlags);
193 out.addFieldAnnotations(field, annotations, dexFile);
195 dexFile.getFieldIds().intern(field);
  /developers/build/prebuilts/gradle/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/
FitDistanceWatchFaceService.java 50 import com.google.android.gms.fitness.data.Field;
528 mDistanceTotal = points.get(0).getValue(Field.FIELD_DISTANCE).asFloat();
  /developers/samples/android/wearable/wear/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/
FitDistanceWatchFaceService.java 50 import com.google.android.gms.fitness.data.Field;
528 mDistanceTotal = points.get(0).getValue(Field.FIELD_DISTANCE).asFloat();
  /development/samples/browseable/WatchFace/Wearable/src/com.example.android.wearable.watchface/
FitDistanceWatchFaceService.java 50 import com.google.android.gms.fitness.data.Field;
528 mDistanceTotal = points.get(0).getValue(Field.FIELD_DISTANCE).asFloat();
  /external/apache-commons-math/src/main/java/org/apache/commons/math/dfp/
DfpField.java 20 import org.apache.commons.math.Field;
22 /** Field for Decimal floating point instances.
26 public class DfpField implements Field<Dfp> {
207 // set up the constants at current field accuracy
  /external/clang/include/clang/AST/
Expr.h 77 FieldDecl *Field;
88 SubobjectAdjustment(FieldDecl *Field)
90 this->Field = Field;
428 /// potentially refers to a bit-field.
434 /// \brief If this expression refers to a bit-field, retrieve the
435 /// declaration of that bit-field.
440 /// bit-fields, but it will return null for a conditional bit-field.
    [all...]
  /external/clang/lib/Sema/
SemaExprMember.cpp 69 // The reference refers to a field which is not a member of the containing
194 /// Diagnose a reference to a field with no object available.
763 FieldDecl *Field, DeclAccessPair FoundDecl,
778 // Case 1: the base of the indirect field is not a field.
801 // Case 2: the base of the indirect field is a field and the user
817 // Case 3: the base of the indirect field is a field and we should
838 // Build the implicit member references to the field of th
846 FieldDecl *field = cast<FieldDecl>(*FI); local
864 FieldDecl *field = cast<FieldDecl>(*FI++); local
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
NumberFormatTestTuple.java 10 import java.lang.reflect.Field;
46 * To add a new attribute, first create a public field for it.
80 * Field for arbitrary comments.
231 throw new ExceptionInInitializerError(s + "is a duplicate field.");
244 // start field setters.
245 // add setter for each new field in this block.
423 // end field setters.
425 // start of field clearers
427 // in the next i.e the breaks field.
457 // end field clearer
490 Field field = getClass().getField(fieldName); local
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
NumberFormatTestTuple.java 9 import java.lang.reflect.Field;
45 * To add a new attribute, first create a public field for it.
79 * Field for arbitrary comments.
230 throw new ExceptionInInitializerError(s + "is a duplicate field.");
243 // start field setters.
244 // add setter for each new field in this block.
422 // end field setters.
424 // start of field clearers
426 // in the next i.e the breaks field.
456 // end field clearer
489 Field field = getClass().getField(fieldName); local
    [all...]
  /external/llvm/include/llvm/Analysis/
TargetTransformInfoImpl.h 440 uint64_t Field = ConstIdx->getZExtValue();
441 BaseOffset += DL.getStructLayout(STy)->getElementOffset(Field);
  /external/llvm/lib/Transforms/Scalar/
NaryReassociate.cpp 332 uint64_t Field = cast<ConstantInt>(*I)->getZExtValue();
333 BaseOffset += DL->getStructLayout(STy)->getElementOffset(Field);
  /external/llvm/tools/llvm-dwp/
llvm-dwp.cpp 158 // Length of the unit, including the 4 byte length field.
182 uint32_t DWARFUnitIndex::Entry::SectionContribution::*Field) {
186 Out.EmitIntValue(E.Contributions[i].*Field, 4);
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/
BluetoothRfcommFacade.java 43 import java.lang.reflect.Field;
465 Field field = BluetoothSocket.class.getDeclaredField("mPfd"); local
466 field.setAccessible(true);
467 ParcelFileDescriptor mPfd = (ParcelFileDescriptor) field.get(mSocket);
473 try { field.set(mSocket, mPfd); }

Completed in 1470 milliseconds

<<21222324252627282930>>