HomeSort by relevance Sort by last modified time
    Searched full:fieldname (Results 1 - 25 of 291) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /cts/tools/signature-tools/src/signature/converter/dex/
FieldPool.java 37 private final String fieldName;
39 public FieldKey(String qualifiedClassName, String fieldName) {
41 this.fieldName = fieldName;
47 int result = prime * fieldName.hashCode();
55 if (!fieldName.equals(other.fieldName)) {
65 public SigField getField(String qualifiedClassName, String fieldName) {
66 FieldKey key = new FieldKey(qualifiedClassName, fieldName);
69 sigField = new SigField(fieldName);
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Headers.java 53 public String get(String fieldName) {
54 return get(namesAndValues, fieldName);
108 String fieldName = namesAndValues[i];
109 if (fieldNames.contains(fieldName)) {
110 result.add(fieldName, namesAndValues[i + 1]);
130 private static String get(String[] namesAndValues, String fieldName) {
132 if (fieldName.equalsIgnoreCase(namesAndValues[i])) {
157 public Builder add(String fieldName, String value) {
158 if (fieldName == null) throw new IllegalArgumentException("fieldname == null")
    [all...]
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
ConnectionTest.java 66 String fieldName = element.getName();
71 Object expectedValue = thePublicStatics.get(fieldName);
73 fail("Field " + fieldName + " missing!");
75 assertEquals("Field " + fieldName + " value mismatch: ",
77 assertEquals("Field " + fieldName + " modifier mismatch: ",
81 fail("Illegal access to Field " + fieldName);
ResultSetMetaDataTest.java 61 String fieldName = element.getName();
66 Object expectedValue = thePublicStatics.get(fieldName);
68 fail("Field " + fieldName + " missing!");
70 assertEquals("Field " + fieldName + " value mismatch: ",
72 assertEquals("Field " + fieldName + " modifier mismatch: ",
76 fail("Illegal access to Field " + fieldName);
ParameterMetaDataTest.java 71 String fieldName = element.getName();
76 Object expectedValue = thePublicStatics.get(fieldName);
78 fail("Field " + fieldName + " missing!");
80 assertEquals("Field " + fieldName + " value mismatch: ",
82 assertEquals("Field " + fieldName + " modifier mismatch: ",
86 fail("Illegal access to Field " + fieldName);
ResultSetTest.java 79 String fieldName = element.getName();
84 Object expectedValue = thePublicStatics.get(fieldName);
86 fail("Field " + fieldName + " missing!");
88 assertEquals("Field " + fieldName + " value mismatch: ",
90 assertEquals("Field " + fieldName + " modifier mismatch: ",
94 fail("Illegal access to Field " + fieldName);
StatementTest.java 69 String fieldName = element.getName();
74 Object expectedValue = thePublicStatics.get(fieldName);
76 fail("Field " + fieldName + " missing!");
78 assertEquals("Field " + fieldName + " value mismatch: ",
80 assertEquals("Field " + fieldName + " modifier mismatch: ",
84 fail("Illegal access to Field " + fieldName);
  /external/javassist/src/main/javassist/compiler/
NoFieldException.java 21 private String fieldName;
28 fieldName = name;
34 public String getField() { return fieldName; }
AccessorMaker.java 152 String fieldName = finfo.getName();
153 String key = fieldName + ":getter";
175 code.addGetstatic(Bytecode.THIS, fieldName, fieldType);
179 code.addGetfield(Bytecode.THIS, fieldName, fieldType);
203 String fieldName = finfo.getName();
204 String key = fieldName + ":setter";
228 code.addPutstatic(Bytecode.THIS, fieldName, fieldType);
234 code.addPutfield(Bytecode.THIS, fieldName, fieldType);
  /frameworks/base/core/jni/
android_database_SQLiteDebug.cpp 69 #define GET_FIELD_ID(var, clazz, fieldName, fieldDescriptor) \
70 var = env->GetFieldID(clazz, fieldName, fieldDescriptor); \
71 LOG_FATAL_IF(! var, "Unable to find field " fieldName);
android_content_res_ObbScanner.cpp 87 #define GET_FIELD_ID(var, clazz, fieldName, fieldDescriptor) \
88 var = env->GetFieldID(clazz, fieldName, fieldDescriptor); \
89 LOG_FATAL_IF(! var, "Unable to find field " fieldName);
  /cts/tests/tests/view/src/android/view/inputmethod/cts/
EditorInfoTest.java 36 info.fieldName = "fieldName";
61 assertEquals(info.fieldName, targetInfo.fieldName);
  /dalvik/tools/dexdeps/src/com/android/dexdeps/
FieldRef.java 25 public FieldRef(String declClass, String fieldType, String fieldName) {
28 mFieldName = fieldName;
  /external/llvm/test/CodeGen/X86/
vortex-bug.ll 6 define fastcc i32 @Env_GetFieldStruc(i8* %FieldName, i32* %Status, %struct.fieldstruc* %FieldStruc) nounwind {
19 %tmp139.i = getelementptr i8* %FieldName, i64 %tmp139.rec.i ; <i8*> [#uses=0]
  /external/chromium_org/third_party/skia/include/animator/
SkAnimator.h 226 @param fieldName specifies the name of the attribute
230 int32_t getArrayInt(const char* elementID, const char* fieldName, int index);
242 @param fieldName specifies the name of the attribute
246 SkScalar getArrayScalar(const char* elementID, const char* fieldName, int index);
258 @param fieldName specifies the name of the attribute
262 const char* getArrayString(const char* elementID, const char* fieldName, int index);
285 @param fieldName is the attribute to return
286 @return the attribute matching the fieldName, or null if the element can't be found
288 const SkMemberInfo* getField(const SkDisplayable* element, const char* fieldName);
292 @param fieldName is the attribute to retur
    [all...]
  /external/skia/include/animator/
SkAnimator.h 226 @param fieldName specifies the name of the attribute
230 int32_t getArrayInt(const char* elementID, const char* fieldName, int index);
242 @param fieldName specifies the name of the attribute
246 SkScalar getArrayScalar(const char* elementID, const char* fieldName, int index);
258 @param fieldName specifies the name of the attribute
262 const char* getArrayString(const char* elementID, const char* fieldName, int index);
285 @param fieldName is the attribute to return
286 @return the attribute matching the fieldName, or null if the element can't be found
288 const SkMemberInfo* getField(const SkDisplayable* element, const char* fieldName);
292 @param fieldName is the attribute to retur
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/EventModifiers/
JDWPEventModifierTestCase.java 30 * @param fieldName the field name.
33 protected Value getFieldValue(String classSignature, String fieldName) {
37 long fieldID = debuggeeWrapper.vmMirror.getFieldID(classID, fieldName);
38 assertTrue("Failed to find field " + classSignature + "." + fieldName,
159 * @param fieldName the field name
163 String classSignature, String fieldName) {
164 return createFieldEventBuilder(typeTag, classSignature, fieldName, false);
173 * @param fieldName the field name
177 String classSignature, String fieldName) {
178 return createFieldEventBuilder(typeTag, classSignature, fieldName, true)
    [all...]
  /external/chromium-trace/trace-viewer/src/cc/
util.js 38 function(object, fieldName, fieldValue) {
39 delete object[fieldName];
48 function(object, fieldName, fieldValue) {
  /external/javassist/src/main/javassist/convert/
TransformFieldAccess.java 25 private String fieldname; field in class:TransformFieldAccess
38 this.fieldname = field.getName();
65 fieldClass, fieldname, isPrivate, index);
TransformReadField.java 26 protected String fieldname; field in class:TransformReadField
36 this.fieldname = field.getName();
75 fieldClass, fieldname, isPrivate, index);
  /cts/tools/signature-tools/src/signature/model/util/
ModelUtil.java 74 public static IField getField(IClassDefinition clazz, String fieldName) {
76 if (fieldName.equals(field.getName())) {
84 IClassDefinition annotation, String fieldName) {
86 if (fieldName.equals(field.getName())) {
  /external/mockito/src/org/mockito/internal/util/reflection/
BeanPropertySetter.java 82 * @param fieldName the Field name
85 private String setterName(String fieldName) {
87 .append(fieldName.substring(0, 1).toUpperCase(Locale.ENGLISH))
88 .append(fieldName.substring(1))
  /external/proguard/src/proguard/obfuscate/
MultiMappingProcessor.java 64 String fieldName,
71 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...]

Completed in 761 milliseconds

1 2 3 4 5 6 7 8 91011>>