/art/runtime/gc/accounting/ |
space_bitmap.cc | 178 // Walk instance fields of the given Class. Separate function to allow recursion on the super 183 // Visit fields of parent classes first. 188 // Walk instance fields 189 mirror::ObjectArray<mirror::ArtField>* fields = klass->GetIFields(); local 190 if (fields != NULL) { 191 for (int32_t i = 0; i < fields->GetLength(); i++) { 192 mirror::ArtField* field = fields->Get(i); 204 // For an unvisited object, visit it then all its children found via fields. 214 // Walk instance fields of all objects 217 // Walk static fields of a Clas 219 mirror::ObjectArray<mirror::ArtField>* fields = klass->GetSFields(); local [all...] |
/external/chromium_org/third_party/protobuf/src/google/protobuf/ |
unknown_field_set.h | 35 // Contains classes used to keep track of unrecognized fields seen while 63 // An UnknownFieldSet contains fields that were encountered while parsing a 80 // Remove all fields. 83 // Remove all fields and deallocate internal data objects 96 // storing the unknown fields in memory. Does NOT include 103 // Returns the number of fields present in the UnknownFieldSet. 105 // Get a field in the set, where 0 <= index < field_count(). The fields 109 // 0 <= index < field_count(). The fields appear in the order in which 113 // Adding fields --------------------------------------------------- 125 // Delete fields with indices in the range [start .. start+num-1] [all...] |
/external/jmdns/src/javax/jmdns/impl/ |
DNSEntry.java | 13 import javax.jmdns.ServiceInfo.Fields; 36 final Map<Fields, String> _qualifiedNameMap; 48 String domain = _qualifiedNameMap.get(Fields.Domain); 49 String protocol = _qualifiedNameMap.get(Fields.Protocol); 50 String application = _qualifiedNameMap.get(Fields.Application); 51 String instance = _qualifiedNameMap.get(Fields.Instance).toLowerCase(); 96 String subtype = this.getQualifiedNameMap().get(Fields.Subtype); 146 public Map<Fields, String> getQualifiedNameMap() { 151 return _qualifiedNameMap.get(Fields.Application).equals("dns-sd") && _qualifiedNameMap.get(Fields.Instance).equals("_services") [all...] |
/external/protobuf/src/google/protobuf/compiler/javamicro/ |
javamicro_message.cc | 71 // Sort the fields of the given Descriptor by number into a new[]'d array 74 const FieldDescriptor** fields = local 77 fields[i] = descriptor->field(i); 79 sort(fields, fields + descriptor->field_count(), 81 return fields; 91 // Returns true if the message type has any required fields. If it doesn't, 101 // a. The type has no required fields. 102 // b. We are in the midst of checking if the type has required fields, 104 // has any required fields, they'll be found when we return to it [all...] |
javamicro_file.cc | 58 // We conservatively assume that unknown fields are extensions. 61 vector<const FieldDescriptor*> fields; 62 reflection->ListFields(message, &fields); 64 for (int i = 0; i < fields.size(); i++) { 65 if (fields[i]->is_extension()) return true; 67 if (fields[i]->cpp_type() == FieldDescriptor::CPPTYPE_MESSAGE) { 68 if (fields[i]->is_repeated()) { 69 int size = reflection->FieldSize(message, fields[i]); 72 reflection->GetRepeatedMessage(message, fields[i], j); 76 const Message& sub_message = reflection->GetMessage(message, fields[i]) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_uuid.py | 19 for (string, curly, hex, bytes, bytes_le, fields, integer, urn, 152 uuid.UUID(fields=fields), uuid.UUID(int=integer), 159 equal(u.fields, fields) 160 equal(u.time_low, fields[0]) 161 equal(u.time_mid, fields[1]) 162 equal(u.time_hi_version, fields[2]) 163 equal(u.clock_seq_hi_variant, fields[3]) 164 equal(u.clock_seq_low, fields[4] [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_uuid.py | 19 for (string, curly, hex, bytes, bytes_le, fields, integer, urn, 152 uuid.UUID(fields=fields), uuid.UUID(int=integer), 159 equal(u.fields, fields) 160 equal(u.time_low, fields[0]) 161 equal(u.time_mid, fields[1]) 162 equal(u.time_hi_version, fields[2]) 163 equal(u.clock_seq_hi_variant, fields[3]) 164 equal(u.clock_seq_low, fields[4] [all...] |
/external/icu4c/test/intltest/ |
regextst.cpp | 1606 UnicodeString fields[10]; local 2907 UnicodeString fields[10]; local 4025 UnicodeString fields[7]; local 4394 UnicodeString fields[7]; local [all...] |
/external/chromium_org/chrome/browser/resources/ |
certificate_viewer.js | 27 initializeTree($('cert-fields'), showCertificateFieldValue); 101 * @param {Object} certInfo Certificate information in named fields. 121 // populate the fields view. 150 * Clear any previous certificate fields in the tree. 153 var treeItem = $('cert-fields'); 161 * Request certificate fields for the selected certificate in the hierarchy. 171 * Show the returned certificate fields for the selected certificate. 172 * @param {Object} certFields A dictionary containing the fields tree 177 var treeItem = $('cert-fields'); 189 var item = $('cert-fields').selectedItem [all...] |
/external/protobuf/src/google/protobuf/compiler/javanano/ |
javanano_file.cc | 59 // We conservatively assume that unknown fields are extensions. 62 vector<const FieldDescriptor*> fields; 63 reflection->ListFields(message, &fields); 65 for (int i = 0; i < fields.size(); i++) { 66 if (fields[i]->is_extension()) return true; 68 if (fields[i]->cpp_type() == FieldDescriptor::CPPTYPE_MESSAGE) { 69 if (fields[i]->is_repeated()) { 70 int size = reflection->FieldSize(message, fields[i]); 73 reflection->GetRepeatedMessage(message, fields[i], j); 77 const Message& sub_message = reflection->GetMessage(message, fields[i]) [all...] |
/frameworks/compile/libbcc/include/bcinfo/Wrap/ |
bitcode_wrapperer.h | 32 // The bitcode wrapper header is the following 7 fixed 4-byte fields: 40 // plus 0 or more variable-length fields (consisting of ID, length, data) 43 // fields. 47 // file (and optionally additional header fields), or for outputting a raw 56 // wrapper magic number. As a side effect, _wrapper_ fields are set. 75 // Print current wrapper header fields to stderr for debugging. 129 // Write all variable-sized header fields to the output. Return true 196 // This value changes as new fields are added with AddHeaderField 211 // Vector of variable header fields 213 // If any bufferdata from header fields is owned, it is stored here an [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/ |
test_bitfields.py | 111 def fail_fields(self, *fields): 113 {"_fields_": fields}) 116 # bit fields are not allowed on non-integer types. 118 self.assertEqual(result, (TypeError, 'bit fields not allowed for type c_char_p')) 121 self.assertEqual(result, (TypeError, 'bit fields not allowed for type c_void_p')) 125 self.assertEqual(result, (TypeError, 'bit fields not allowed for type LP_c_int')) 128 self.assertEqual(result, (TypeError, 'bit fields not allowed for type c_char')) 136 self.assertEqual(result, (TypeError, 'bit fields not allowed for type c_wchar')) 142 self.assertEqual(result, (TypeError, 'bit fields not allowed for type Dummy')) 235 # anonymous bit-fields gave a strange error messag [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/ |
test_bitfields.py | 111 def fail_fields(self, *fields): 113 {"_fields_": fields}) 116 # bit fields are not allowed on non-integer types. 118 self.assertEqual(result, (TypeError, 'bit fields not allowed for type c_char_p')) 121 self.assertEqual(result, (TypeError, 'bit fields not allowed for type c_void_p')) 125 self.assertEqual(result, (TypeError, 'bit fields not allowed for type LP_c_int')) 128 self.assertEqual(result, (TypeError, 'bit fields not allowed for type c_char')) 136 self.assertEqual(result, (TypeError, 'bit fields not allowed for type c_wchar')) 142 self.assertEqual(result, (TypeError, 'bit fields not allowed for type Dummy')) 235 # anonymous bit-fields gave a strange error messag [all...] |
/libcore/luni/src/main/java/java/util/ |
SimpleTimeZone.java | 477 int[] fields = Grego.timeToFields(time + rawOffset, null); local 478 return getOffset(GregorianCalendar.AD, fields[0], fields[1], fields[2], 479 fields[3], fields[5]); 871 ObjectOutputStream.PutField fields = stream.putFields(); local 900 ObjectInputStream.GetField fields = stream.readFields(); local [all...] |
/external/chromium_org/content/browser/renderer_host/pepper/ |
pepper_tcp_socket.cc | 304 ppapi::PPB_X509Certificate_Fields* fields) { 306 fields->SetField(PP_X509CERTIFICATE_PRIVATE_ISSUER_COMMON_NAME, 308 fields->SetField(PP_X509CERTIFICATE_PRIVATE_ISSUER_LOCALITY_NAME, 310 fields->SetField(PP_X509CERTIFICATE_PRIVATE_ISSUER_STATE_OR_PROVINCE_NAME, 312 fields->SetField(PP_X509CERTIFICATE_PRIVATE_ISSUER_COUNTRY_NAME, 314 fields->SetField(PP_X509CERTIFICATE_PRIVATE_ISSUER_ORGANIZATION_NAME, 316 fields->SetField(PP_X509CERTIFICATE_PRIVATE_ISSUER_ORGANIZATION_UNIT_NAME, 320 fields->SetField(PP_X509CERTIFICATE_PRIVATE_SUBJECT_COMMON_NAME, 322 fields->SetField(PP_X509CERTIFICATE_PRIVATE_SUBJECT_LOCALITY_NAME, 324 fields->SetField(PP_X509CERTIFICATE_PRIVATE_SUBJECT_STATE_OR_PROVINCE_NAME [all...] |
/external/chromium_org/third_party/icu/source/tools/gensprep/ |
gensprep.c | 274 char *fields[][2], int32_t fieldCount, 284 code=(uint32_t)uprv_strtoul(fields[0][0], &end, 16); 286 fprintf(stderr, "gensprep: error parsing NormalizationCorrections.txt mapping at %s\n", fields[0][0]); 290 s = fields[1][0]; 297 u_versionFromString(version,fields[3][0] ); 319 char *fields[4][2]; local 325 u_parseDelimitedFile(filename, ';', fields, 4, normalizationCorrectionsLineFn, NULL, pErrorCode); 337 char *fields[][2], int32_t fieldCount, 349 s = u_skipWhitespace(fields[0][0]); 353 length = fields[0][1] - s 424 char *fields[3][2]; local [all...] |
/external/icu4c/tools/gensprep/ |
gensprep.c | 277 char *fields[][2], int32_t fieldCount, 287 code=(uint32_t)uprv_strtoul(fields[0][0], &end, 16); 289 fprintf(stderr, "gensprep: error parsing NormalizationCorrections.txt mapping at %s\n", fields[0][0]); 293 s = fields[1][0]; 300 u_versionFromString(version,fields[3][0] ); 322 char *fields[4][2]; local 328 u_parseDelimitedFile(filename, ';', fields, 4, normalizationCorrectionsLineFn, NULL, pErrorCode); 340 char *fields[][2], int32_t fieldCount, 352 s = u_skipWhitespace(fields[0][0]); 356 length = fields[0][1] - s 427 char *fields[3][2]; local [all...] |
/external/chromium/chrome/browser/autofill/ |
form_field.cc | 30 // shipping name/address fields 47 // billing name/address fields 64 // credit card fields 240 // TODO(jhawkins): Handle select fields. 247 // Several fields are optional. 265 FormFieldSet::FormFieldSet(FormStructure* fields) { 270 bool is_ecml = CheckECML(fields); 272 // Parse fields. 273 std::vector<AutofillField*>::const_iterator field = fields->begin(); 274 while (field != fields->end() && *field != NULL) [all...] |
autofill_download_unittest.cc | 128 form.fields.push_back(webkit_glue::FormField(ASCIIToUTF16("username"), 134 form.fields.push_back(webkit_glue::FormField(ASCIIToUTF16("First Name"), 140 form.fields.push_back(webkit_glue::FormField(ASCIIToUTF16("Last Name"), 146 form.fields.push_back(webkit_glue::FormField(ASCIIToUTF16("email"), 152 form.fields.push_back(webkit_glue::FormField(ASCIIToUTF16("email2"), 158 form.fields.push_back(webkit_glue::FormField(ASCIIToUTF16("password"), 164 form.fields.push_back(webkit_glue::FormField(string16(), 175 form.fields.clear(); 176 form.fields.push_back(webkit_glue::FormField(ASCIIToUTF16("address"), 182 form.fields.push_back(webkit_glue::FormField(ASCIIToUTF16("address2") [all...] |
/external/chromium_org/components/autofill/content/renderer/ |
form_cache.cc | 129 // allowable fields. The corresponding maximum number of allowable fields 146 num_fields_seen += form.fields.size(); 150 if (form.fields.size() >= minimum_required_fields) { 192 // Don't modify the value of disabled fields. 238 DCHECK_EQ(form.data.fields.size(), form.fields.size()); 274 if (control_elements.size() != form.fields.size()) { 284 form.data.fields[i].name) { 290 std::string placeholder = form.fields[i].overall_type [all...] |
/libcore/luni/src/main/java/java/net/ |
Inet6Address.java | 254 ObjectOutputStream.PutField fields = stream.putFields(); local 256 fields.put("ipaddress", null); 258 fields.put("ipaddress", ipaddress); 261 fields.put("scope_id", scope_id); 262 fields.put("scope_id_set", scope_id_set); 263 fields.put("scope_ifname_set", scope_ifname_set); 264 fields.put("ifname", ifname); 269 ObjectInputStream.GetField fields = stream.readFields(); local 270 ipaddress = (byte[]) fields.get("ipaddress", null); 271 scope_id = fields.get("scope_id", 0) [all...] |
/external/chromium_org/components/autofill/core/browser/ |
autofill_download_unittest.cc | 138 form.fields.push_back(field); 143 form.fields.push_back(field); 148 form.fields.push_back(field); 153 form.fields.push_back(field); 158 form.fields.push_back(field); 163 form.fields.push_back(field); 168 form.fields.push_back(field); 174 form.fields.clear(); 179 form.fields.push_back(field); 184 form.fields.push_back(field) [all...] |
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/sget/ |
Test_sget.java | 182 * @title sget shall not work for reference fields 196 * @title sget shall not work for short fields 210 * @title sget shall not work for boolean fields 224 * @title sget shall not work for char fields 238 * @title sget shall not work for byte fields 252 * @title sget shall not work for double fields 266 * @title sget shall not work for long fields
|
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/sget_boolean/ |
Test_sget_boolean.java | 176 * @title sget_boolean shall not work for reference fields 190 * @title sget_boolean shall not work for short fields 204 * @title sget_boolean shall not work for int fields 218 * @title sget_boolean shall not work for char fields 232 * @title sget_boolean shall not work for byte fields 246 * @title sget_boolean shall not work for double fields 260 * @title sget_boolean shall not work for long fields
|
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/sget_byte/ |
Test_sget_byte.java | 177 * @title sget_byte shall not work for reference fields 191 * @title sget_byte shall not work for short fields 205 * @title sget_byte shall not work for int fields 219 * @title sget_byte shall not work for char fields 233 * @title sget_byte shall not work for boolean fields 247 * @title sget_byte shall not work for double fields 261 * @title sget_byte shall not work for long fields
|