HomeSort by relevance Sort by last modified time
    Searched full:fieldname (Results 26 - 50 of 253) sorted by null

12 3 4 5 6 7 8 91011

  /external/proguard/src/proguard/obfuscate/
MultiMappingProcessor.java 64 String fieldName,
71 fieldName,
MappingProcessor.java 51 * @param fieldName the original field name.
56 String fieldName,
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/bytecode/
AndroidTranslator.java 189 private void addBypassShadowField(CtClass ctClass, String fieldName) {
192 ctClass.getField(fieldName);
194 CtField field = new CtField(CtClass.booleanType, fieldName, ctClass);
296 // String fieldName = "__" + methodName.substring(3);
297 // if (declareField(ctClass, fieldName, paramTypes[0])) {
298 // methodBody = fieldName + " = $1;\n" + methodBody;
301 // String fieldName = "__" + methodName.substring(3);
302 // if (declareField(ctClass, fieldName, returnType)) {
303 // methodBody = "return " + fieldName + ";\n";
463 private boolean declareField(CtClass ctClass, String fieldName, CtClass fieldType) throws CannotCompileException, NotFoundException
    [all...]
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/
XMPPathFactory.java 107 * @param fieldName The name of the field. Must be a simple XML name, must not be
110 * <tt>ns:structName/fNS:fieldName</tt>, where &quot;ns&quot; is the prefix for
115 String fieldName) throws XMPException
118 assertFieldName(fieldName);
120 XMPPath fieldPath = XMPPathParser.expandXPath(fieldNS, fieldName);
212 * @param fieldName The name of the field used as the selector. Must be a simple XML name, must
217 * <tt>ns:arrayName[fNS:fieldName='fieldValue']</tt>, where &quot;ns&quot; is the
222 String fieldName, String fieldValue) throws XMPException
224 XMPPath fieldPath = XMPPathParser.expandXPath(fieldNS, fieldName);
227 throw new XMPException("The fieldName name must be simple", XMPError.BADXPATH)
    [all...]
  /cts/tools/dex-tools/test/dex/reader/
DexTestsCommon.java 105 protected DexField getField(DexClass clazz, String fieldName) {
107 assertNotNull(fieldName);
109 if(fieldName.equals(field.getName())){
113 fail("Field: " + fieldName +" not present in class: " + clazz.getName());
114 throw new IllegalArgumentException("Field: " + fieldName +" not present in class: " + clazz.getName());
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/reflect/
FieldTest.java 262 String fieldName = null;
273 fieldName = "objectField";
274 objectField = fieldClass.getDeclaredField(fieldName);
276 fieldName = "booleanField";
277 booleanField = fieldClass.getDeclaredField(fieldName);
279 fieldName = "byteField";
280 byteField = fieldClass.getDeclaredField(fieldName);
282 fieldName = "charField";
283 charField = fieldClass.getDeclaredField(fieldName);
285 fieldName = "shortField"
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/network_configuration/js/
network_config.js 65 for (var fieldName in properties) {
66 var entry = properties[fieldName];
70 result[fieldName] = nestedResult;
  /frameworks/base/core/jni/
android_content_res_Configuration.cpp 86 #define GET_FIELD_ID(var, clazz, fieldName, fieldDescriptor) \
87 var = env->GetFieldID(clazz, fieldName, fieldDescriptor); \
88 LOG_FATAL_IF(! var, "Unable to find field " fieldName);
android_view_PointerIcon.cpp 122 #define GET_FIELD_ID(var, clazz, fieldName, fieldDescriptor) \
123 var = env->GetFieldID(clazz, fieldName, fieldDescriptor); \
124 LOG_FATAL_IF(! var, "Unable to find field " fieldName);
  /frameworks/base/services/jni/
com_android_server_input_InputApplicationHandle.cpp 133 #define GET_FIELD_ID(var, clazz, fieldName, fieldDescriptor) \
134 var = env->GetFieldID(clazz, fieldName, fieldDescriptor); \
135 LOG_FATAL_IF(! var, "Unable to find field " fieldName);
  /external/chromium-trace/trace-viewer/src/base/unittest/
assertions.js 10 for (var fieldName in prototype) {
11 if (fieldName.indexOf('assert') != 0)
13 var fieldValue = prototype[fieldName];
16 fn(fieldName, fieldValue);
209 function(fieldName, fieldValue) {
210 global[fieldName] = fieldValue.bind(this);
  /libcore/luni/src/main/native/
libcore_icu_ICU.cpp 278 static void setIntegerField(JNIEnv* env, jobject obj, const char* fieldName, int value) {
280 jfieldID fid = env->GetFieldID(JniConstants::localeDataClass, fieldName, "Ljava/lang/Integer;");
284 static void setStringField(JNIEnv* env, jobject obj, const char* fieldName, jstring value) {
285 jfieldID fid = env->GetFieldID(JniConstants::localeDataClass, fieldName, "Ljava/lang/String;");
290 static void setStringArrayField(JNIEnv* env, jobject obj, const char* fieldName, jobjectArray value) {
291 jfieldID fid = env->GetFieldID(JniConstants::localeDataClass, fieldName, "[Ljava/lang/String;");
295 static void setStringArrayField(JNIEnv* env, jobject obj, const char* fieldName, const UnicodeString* valueArray, int32_t size) {
307 setStringArrayField(env, obj, fieldName, result.get());
310 static void setStringField(JNIEnv* env, jobject obj, const char* fieldName, UResourceBundle* bundle, int index) {
315 setStringField(env, obj, fieldName, env->NewString(chars, charCount))
    [all...]
  /packages/apps/Camera2/src/com/android/camera/util/
ApiHelper.java 55 public static int getIntFieldIfExists(Class<?> klass, String fieldName,
58 Field f = klass.getDeclaredField(fieldName);
  /external/nist-sip/java/gov/nist/javax/sip/header/
SIPObject.java 101 String fieldName = f.getName();
102 if (fieldName.compareTo("stringRepresentation") == 0) {
105 if (fieldName.compareTo("indentation") == 0) {
143 System.out.println("accessed field " + fieldName);
192 String fieldName = f.getName();
193 if (fieldName.compareTo("stringRepresentation") == 0) {
196 if (fieldName.compareTo("indentation") == 0) {
303 String fieldName = f.getName();
304 if (fieldName.compareTo("stringRepresentation") == 0) {
308 if (fieldName.compareTo("indentation") == 0)
    [all...]
  /dalvik/vm/oo/
Object.cpp 28 const char* fieldName, const char* signature)
43 if (strcmp(fieldName, pField->name) == 0 &&
62 const char* fieldName, const char* signature)
69 pField = dvmFindInstanceField(clazz, fieldName, signature);
74 return dvmFindInstanceFieldHier(clazz->super, fieldName, signature);
86 const char* fieldName, const char* signature)
100 if (strcmp(fieldName, pField->name) == 0 &&
116 const char* fieldName, const char* signature)
123 pField = dvmFindStaticField(clazz, fieldName, signature);
141 pField = dvmFindStaticField(iface, fieldName, signature)
    [all...]
  /external/javassist/src/main/javassist/bytecode/
FieldInfo.java 48 * @param fieldName field name
53 public FieldInfo(ConstPool cp, String fieldName, String desc) {
55 name = cp.addUtf8Info(fieldName);
56 cachedName = fieldName;
  /external/nist-sip/java/gov/nist/javax/sip/message/
MessageObject.java 72 String fieldName = f.getName();
73 if (fieldName.compareTo("stringRepresentation") == 0) {
77 if (fieldName.compareTo("indentation") == 0) {
81 sprint(fieldName + ":");
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/file/
Structure.java 129 * @param fieldName
133 public Object getFieldValue(String fieldName) {
135 if (field.name.equalsIgnoreCase(fieldName)) {
145 * @param fieldName
149 public Object getFlatFieldValue(String fieldName) {
152 if (field.name.equalsIgnoreCase(fieldName)) {
155 value = ((Structure) value).getFlatFieldValue(fieldName);
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
InputPort.java 137 * @param fieldName the field to pull frame data into.
141 public void bindToFieldNamed(String fieldName) {
142 Field field = findFieldNamed(fieldName, mFilter.getClass());
145 + fieldName + "'!");
313 private Field findFieldNamed(String fieldName, Class<?> clazz) {
316 field = clazz.getDeclaredField(fieldName);
321 field = findFieldNamed(fieldName, superClass);
  /external/nist-sip/java/gov/nist/javax/sip/address/
NetObject.java 95 String fieldName = f.getName();
96 if (fieldName.compareTo("stringRepresentation") == 0) {
99 if (fieldName.compareTo("indentation") == 0) {
185 String fieldName = f.getName();
186 if (fieldName.compareTo("stringRepresentation") == 0) {
189 if (fieldName.compareTo("indentation") == 0) {
292 String fieldName = f.getName();
293 if (fieldName.compareTo("stringRepresentation") == 0) {
297 if (fieldName.compareTo("indentation") == 0) {
301 sprint(fieldName + ":")
    [all...]
  /external/llvm/lib/TableGen/
Record.cpp     [all...]
  /libcore/libart/src/main/java/java/lang/reflect/
Field.java 254 * the effect of {@code object.fieldName}
282 * boolean}. This reproduces the effect of {@code object.fieldName}
308 * This reproduces the effect of {@code object.fieldName}
334 * This reproduces the effect of {@code object.fieldName}
360 * double}. This reproduces the effect of {@code object.fieldName}
386 * . This reproduces the effect of {@code object.fieldName}
412 * This reproduces the effect of {@code object.fieldName}
438 * This reproduces the effect of {@code object.fieldName}
464 * . This reproduces the effect of {@code object.fieldName}
490 * reproduces the effect of {@code object.fieldName = value
    [all...]
  /libcore/libdvm/src/main/java/java/lang/reflect/
Field.java 241 * the effect of {@code object.fieldName}
271 * boolean}. This reproduces the effect of {@code object.fieldName}
299 * This reproduces the effect of {@code object.fieldName}
326 * This reproduces the effect of {@code object.fieldName}
362 * double}. This reproduces the effect of {@code object.fieldName}
389 * . This reproduces the effect of {@code object.fieldName}
416 * This reproduces the effect of {@code object.fieldName}
443 * This reproduces the effect of {@code object.fieldName}
492 * . This reproduces the effect of {@code object.fieldName}
556 * reproduces the effect of {@code object.fieldName = value
    [all...]
  /frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
ColladaParser.java 247 String fieldName = field.getTagName();
249 if (fieldName.equals("translate")) {
253 } else if (fieldName.equals("rotate")) {
258 } else if (fieldName.equals("scale")) {
262 } else if (fieldName.equals("instance_geometry")) {
264 } else if (fieldName.equals("instance_light")) {
266 } else if (fieldName.equals("instance_camera")) {
268 } else if (fieldName.equals("node")) {
  /libcore/luni/src/main/java/java/util/concurrent/atomic/
AtomicLongFieldUpdater.java 39 * @param fieldName the name of the field to be updated
48 public static <U> AtomicLongFieldUpdater<U> newUpdater(Class<U> tclass, String fieldName) {
50 return new CASUpdater<U>(tclass, fieldName);
52 return new LockedUpdater<U>(tclass, fieldName);
246 CASUpdater(Class<T> tclass, String fieldName) {
251 field = tclass.getDeclaredField(fieldName); // android-changed
340 LockedUpdater(Class<T> tclass, String fieldName) {
345 field = tclass.getDeclaredField(fieldName); // android-changed

Completed in 3059 milliseconds

12 3 4 5 6 7 8 91011