Searched refs:field (Results 301 - 325 of 4666) sorted by relevance

<<11121314151617181920>>

/external/proguard/src/proguard/classfile/attribute/annotation/
H A DAnnotationsAttribute.java75 * Applies the given visitor to all field annotations.
77 public void annotationsAccept(Clazz clazz, Field field, AnnotationVisitor annotationVisitor) argument
83 annotationVisitor.visitAnnotation(clazz, field, annotations[index]);
/external/proguard/src/proguard/classfile/editor/
H A DClassEditor.java118 * Adds the given field.
120 public void addField(Field field) argument
125 // Make sure there is enough space for the new field.
137 System.out.println(targetClass.getName()+": adding field ["+field.getName(targetClass)+" "+field.getDescriptor(targetClass)+"]");
140 // Add the field.
141 fields[targetClass.u2fieldsCount++] = field;
146 * Removes the given field. Note that removing a field tha
149 removeField(Field field) argument
170 findFieldIndex(Field field) argument
[all...]
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DUninitializedMessageException.java67 * message. Each name is a full path to a field, e.g. "foo.bar[5].baz".
89 for (final String field : missingFields) {
95 description.append(field);
/external/protobuf/src/google/protobuf/
H A Dtext_format.h76 // Outputs a textual representation of the value of the field supplied on
79 // field if it is not set.
81 const FieldDescriptor* field,
104 const FieldDescriptor* field,
148 // Print a single field.
151 const FieldDescriptor* field,
154 // Print a repeated primitive field in short form.
157 const FieldDescriptor* field,
160 // Print the name of a field -- i.e. everything that comes before the
164 const FieldDescriptor* field,
[all...]
/external/smack/src/org/jivesoftware/smackx/packet/
H A DDataForm.java165 * Adds a new field as part of the form.
167 * @param field the field to add to the form.
169 public void addField(FormField field) { argument
171 fields.add(field);
200 * Returns true if this DataForm has at least one FORM_TYPE field which is
235 FormField field = i.next();
236 buf.append(field.toXML());
270 FormField field = i.next();
271 buf.append(field
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
H A DFieldUtil.java54 public static boolean isStatic(@Nonnull Field field) { argument
55 return AccessFlags.STATIC.isSet(field.getAccessFlags());
/external/stlport/src/
H A Dmonetary.cpp27 pos_format.field[0] = (char) money_base::symbol;
28 pos_format.field[1] = (char) money_base::sign;
29 pos_format.field[2] = (char) money_base::none;
30 pos_format.field[3] = (char) money_base::value;
32 neg_format.field[0] = (char) money_base::symbol;
33 neg_format.field[1] = (char) money_base::sign;
34 neg_format.field[2] = (char) money_base::none;
35 neg_format.field[3] = (char) money_base::value;
/external/valgrind/main/none/tests/s390x/
H A Dtest.h49 static inline void dump_field(void *field, int size) argument
53 printf("%2.2X ", ((char *) field)[i]);
/external/chromium_org/third_party/boringssl/src/include/openssl/
H A Dasn1t.h277 #define ASN1_EX_TYPE(flags, tag, stname, field, type) { \
278 (flags), (tag), offsetof(stname, field),\
279 #field, ASN1_ITEM_ref(type) }
288 #define ASN1_IMP_EX(stname, field, type, tag, ex) \
289 ASN1_EX_TYPE(ASN1_TFLG_IMPLICIT | ex, tag, stname, field, type)
291 #define ASN1_EXP_EX(stname, field, type, tag, ex) \
292 ASN1_EX_TYPE(ASN1_TFLG_EXPLICIT | ex, tag, stname, field, type)
294 /* Any defined by macros: the field used is in the table itself */
299 #define ASN1_SIMPLE(stname, field, type) ASN1_EX_TYPE(0,0, stname, field, typ
[all...]
/external/chromium_org/third_party/libaddressinput/src/cpp/src/
H A Daddress_normalizer.cc54 AddressField field = LookupKey::kHierarchy[depth]; local
55 if (address->IsFieldEmpty(field)) {
58 const std::string& field_value = address->GetFieldValue(field);
74 field, matches_latin_name ? rule->GetLatinName() : *key_it);
H A Dvalidation_task.h70 // Checks the POSTAL_CODE field for problems.
74 // Checks the STREET_ADDRESS field for USES_P_O_BOX problems.
77 // Writes (|field|,|problem|) to |problems_|.
78 void ReportProblem(AddressField field, AddressProblem problem) const;
80 // Writes (|field|,|problem|) to |problems_|, if this pair should be reported.
81 void ReportProblemMaybe(AddressField field, AddressProblem problem) const;
83 // Returns whether (|field|,|problem|) should be reported.
84 bool ShouldReport(AddressField field, AddressProblem problem) const;
/external/chromium_org/v8/test/mjsunit/compiler/
H A Descape-analysis.js401 // Test materialization of a field that requires a Smi value.
407 function field(x) { function
413 field(1); field(2);
414 %OptimizeFunctionOnNextCall(field);
415 field(3); field(4);
417 field(5.5); field(6.5);
421 // Test materialization of a field tha
[all...]
/external/clang/test/Analysis/
H A Dno-outofbounds.c26 void field() { function
/external/clang/test/CodeGen/
H A Dvisibility.c51 struct Test1 { int field; }; member in struct:Test1
/external/deqp/framework/platform/android/
H A DtcuAndroidJNI.cpp53 jfieldID field = getExecServiceField(env, obj); local
54 return (tcu::Android::ExecService*)(deIntptr)env->GetLongField(obj, field);
59 jfieldID field = getExecServiceField(env, obj); local
60 env->SetLongField(obj, field, (jlong)(deIntptr)service);
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DClassDataItem.java115 * Adds a static field.
117 * @param field {@code non-null;} the field to add
118 * @param value {@code null-ok;} initial value for the field, if any
120 public void addStaticField(EncodedField field, Constant value) { argument
121 if (field == null) {
122 throw new NullPointerException("field == null");
130 staticFields.add(field);
131 staticValues.put(field, value);
135 * Adds an instance field
139 addInstanceField(EncodedField field) argument
[all...]
/external/e2fsprogs/lib/ext2fs/
H A Dtst_inode_size.c28 static int do_field(const char *field, unsigned size, unsigned cur_size, argument
33 field, cur_size, size);
38 field, cur_offset, offset);
41 printf("%8d %-30s %3u\n", offset, field, (unsigned) size);
50 printf("%8s %-30s %3s\n", "offset", "field", "size");
/external/libcxx/test/localization/locale.categories/category.monetary/locale.moneypunct/
H A Dmoney_base.pass.cpp16 // struct pattern {char field[4];};
32 p.field[0] = std::money_base::none;
/external/nanopb-c/tests/options/
H A Doptions.proto28 // Forced callback field
44 required Enum1 field = 1 [default = EnumValue2];
55 required Enum2 field = 1 [default = EnumValue1];
65 // Message with ignored field
66 // Note: doesn't really test if the field is missing in the output,
/external/proguard/src/proguard/classfile/attribute/annotation/visitor/
H A DAnnotationVisitor.java37 public void visitAnnotation(Clazz clazz, Field field, Annotation annotation); argument
/external/proguard/src/proguard/optimize/info/
H A DNonPrivateMemberMarker.java131 private static void markCanNotBeMadePrivate(Field field) argument
133 FieldOptimizationInfo info = FieldOptimizationInfo.getFieldOptimizationInfo(field);
142 * Returns whether the given field can be made private.
144 public static boolean canBeMadePrivate(Field field) argument
146 FieldOptimizationInfo info = FieldOptimizationInfo.getFieldOptimizationInfo(field);
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
H A Duserdatarequest.h37 QString field; member in class:UserDataRequest
/external/chromium_org/native_client_sdk/src/doc/reference/
H A Dnacl-manifest-format.rst23 section that discusses each field in detail. The only field that is required
24 is the ``program`` field.
42 The ``program`` field specifies the main program that will be loaded
80 Portable Native Client applications can also specify an ``optlevel`` field.
81 The ``optlevel`` field is an optimization level *hint*, which is a number
139 The ``files`` field specifies a dictionary of file resources to be used by a
143 instead). However, the ``files`` manifest field is important for dynamically
154 ``"main.nexe"`` field of the ``files`` dictionary.
222 If the manifest contains a field tha
[all...]
/external/chromium_org/ppapi/shared_impl/private/
H A Dppb_x509_certificate_private_shared.h29 void SetField(PP_X509Certificate_Private_Field field, base::Value* value);
30 PP_Var GetFieldAsPPVar(PP_X509Certificate_Private_Field field) const;
60 virtual PP_Var GetField(PP_X509Certificate_Private_Field field) OVERRIDE;
/external/chromium_org/third_party/jinja2/
H A Dvisitor.py59 for field, old_value in node.iter_fields():
75 delattr(node, field)
77 setattr(node, field, new_node)

Completed in 805 milliseconds

<<11121314151617181920>>