HomeSort by relevance Sort by last modified time
    Searched full:fieldname (Results 51 - 75 of 191) sorted by null

1 23 4 5 6 7 8

  /frameworks/base/services/jni/
com_android_server_InputWindowHandle.cpp 216 #define GET_FIELD_ID(var, clazz, fieldName, fieldDescriptor) \
217 var = env->GetFieldID(clazz, fieldName, fieldDescriptor); \
218 LOG_FATAL_IF(! var, "Unable to find field " fieldName);
com_android_server_PowerManagerService.cpp 151 #define GET_FIELD_ID(var, clazz, fieldName, fieldDescriptor) \
152 var = env->GetFieldID(clazz, fieldName, fieldDescriptor); \
153 LOG_FATAL_IF(! var, "Unable to find field " fieldName);
  /external/llvm/utils/TableGen/
SetTheory.cpp 191 StringRef FieldName;
193 FieldExpander(StringRef fn) : FieldName(fn) {}
196 ST.evaluate(Def->getValueInit(FieldName), Elts);
221 void SetTheory::addFieldExpander(StringRef ClassName, StringRef FieldName) {
222 addExpander(ClassName, new FieldExpander(FieldName));
Record.h 532 virtual RecTy *getFieldType(const std::string &FieldName) const { return 0; }
539 const std::string &FieldName) const {
574 virtual RecTy *getFieldType(const std::string &FieldName) const;
    [all...]
SetTheory.h 105 /// FieldName in the Record to get the set elements. That is all that is
112 void addFieldExpander(StringRef ClassName, StringRef FieldName);
  /libcore/luni/src/main/java/java/util/concurrent/atomic/
AtomicIntegerFieldUpdater.java 38 * @param fieldName the name of the field to be updated
45 public static <U> AtomicIntegerFieldUpdater<U> newUpdater(Class<U> tclass, String fieldName) {
46 return new AtomicIntegerFieldUpdaterImpl<U>(tclass, fieldName);
244 AtomicIntegerFieldUpdaterImpl(Class<T> tclass, String fieldName) {
249 field = tclass.getDeclaredField(fieldName);
AtomicReferenceFieldUpdater.java 57 * @param fieldName the name of the field to be updated.
63 public static <U, W> AtomicReferenceFieldUpdater<U,W> newUpdater(Class<U> tclass, Class<W> vclass, String fieldName) {
66 fieldName);
174 String fieldName) {
180 field = tclass.getDeclaredField(fieldName);
  /libcore/luni/src/test/java/tests/api/java/lang/reflect/
FieldTest.java 374 String fieldName = null;
385 fieldName = "objectField";
386 objectField = fieldClass.getDeclaredField(fieldName);
388 fieldName = "booleanField";
389 booleanField = fieldClass.getDeclaredField(fieldName);
391 fieldName = "byteField";
392 byteField = fieldClass.getDeclaredField(fieldName);
394 fieldName = "charField";
395 charField = fieldClass.getDeclaredField(fieldName);
397 fieldName = "shortField"
    [all...]
  /external/nist-sip/java/gov/nist/core/
GenericObject.java 426 String fieldName = f.getName();
427 if (fieldName.compareTo("stringRepresentation") == 0) {
430 if (fieldName.compareTo("indentation") == 0) {
511 String fieldName = f.getName();
512 if (fieldName.compareTo("stringRepresentation") == 0) {
515 if (fieldName.compareTo("indentation") == 0) {
606 String fieldName = f.getName();
607 if (fieldName.compareTo("stringRepresentation") == 0) {
611 if (fieldName.compareTo("indentation") == 0) {
615 sprint(fieldName + ":")
    [all...]
  /external/javassist/src/main/javassist/
CtNewMethod.java 233 String fieldName = finfo.getName();
236 code.addGetfield(Bytecode.THIS, fieldName, fieldType);
239 code.addGetstatic(Bytecode.THIS, fieldName, fieldType);
274 String fieldName = finfo.getName();
278 code.addPutfield(Bytecode.THIS, fieldName, fieldType);
282 code.addPutstatic(Bytecode.THIS, fieldName, fieldType);
  /libcore/luni/src/main/java/libcore/net/http/
HttpURLConnectionImpl.java 124 * Returns the value of the field corresponding to the {@code fieldName}, or
128 @Override public final String getHeaderField(String fieldName) {
131 return fieldName == null
133 : rawHeaders.get(fieldName);
405 String fieldName = responseCode == HTTP_PROXY_AUTH
408 successorRequestHeaders.set(fieldName, credentials);
  /frameworks/base/core/jni/
android_view_TextureView.cpp 215 #define GET_FIELD_ID(var, clazz, fieldName, fieldDescriptor) \
216 var = env->GetFieldID(clazz, fieldName, fieldDescriptor); \
217 LOG_FATAL_IF(!var, "Unable to find field" fieldName);
android_emoji_EmojiFactory.cpp 280 const char fieldname[], const char type[])
282 jfieldID id = env->GetFieldID(clazz, fieldname, type);
android_view_InputChannel.cpp 293 #define GET_FIELD_ID(var, clazz, fieldName, fieldDescriptor) \
294 var = env->GetFieldID(clazz, fieldName, fieldDescriptor); \
295 LOG_FATAL_IF(! var, "Unable to find field " fieldName);
  /libcore/luni/src/main/java/java/text/
Format.java 240 * @param fieldName
243 protected Field(String fieldName) {
244 super(fieldName);
  /external/javassist/src/main/javassist/convert/
TransformWriteField.java 36 fieldClass, fieldname, isPrivate, index);
  /external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
DataFormatFieldTest.java 57 protected MyField(String fieldName, int calendarField) {
58 super(fieldName, calendarField);
  /external/webkit/Source/WebCore/inspector/front-end/
HeapSnapshotProxy.js 134 nodeFieldValuesByIndex: function(fieldName, indexes, callback)
138 callback(this._snapshot.nodeFieldValuesByIndex(fieldName, indexes));
  /external/javassist/src/main/javassist/compiler/
MemberResolver.java 305 public CtField lookupFieldByJvmName(String jvmClassName, Symbol fieldName)
308 return lookupField(jvmToJavaName(jvmClassName), fieldName);
314 public CtField lookupField(String className, Symbol fieldName)
319 return cc.getField(fieldName.get());
322 throw new CompileError("no such field: " + fieldName.get());
  /frameworks/base/core/java/android/view/inputmethod/
EditorInfo.java 261 public String fieldName;
325 + " fieldName=" + fieldName);
348 dest.writeString(fieldName);
370 res.fieldName = source.readString();
  /dalvik/vm/oo/
Object.h 640 const char* fieldName, const char* signature);
642 const char* fieldName, const char* signature);
648 const char* fieldName, const char* signature);
650 const char* fieldName, const char* signature);
651 Field* dvmFindFieldHier(const ClassObject* clazz, const char* fieldName,
661 const char* fieldName, const char* signature)
663 InstField* pField = dvmFindInstanceField(clazz, fieldName, signature);
  /external/protobuf/src/google/protobuf/compiler/java/
java_helpers.cc 57 const string& FieldName(const FieldDescriptor* field) {
102 return UnderscoresToCamelCaseImpl(FieldName(field), false);
106 return UnderscoresToCamelCaseImpl(FieldName(field), true);
  /cts/tools/dex-tools/src/dex/reader/
DexEncodedValueImpl.java 189 String fieldName = stringPool[fieldIdItem.name_idx];
191 return typeName + "!" + fieldName;
  /dalvik/vm/mterp/common/
asm-constants.h 55 * MTERP_OFFSET(name, StructType, fieldname, offset)
57 * Declares that the expected offset of StructType.fieldname is "offset".
  /external/guava/src/com/google/common/collect/
Serialization.java 212 final Class<T> clazz, String fieldName) {
214 Field field = clazz.getDeclaredField(fieldName);

Completed in 662 milliseconds

1 23 4 5 6 7 8