/external/v8/tools/gcmole/ |
gcmole.cc | 1093 bool IsDerivedFrom(clang::CXXRecordDecl* record, 1095 return (record == base) || record->isDerivedFrom(base); 1107 clang::CXXRecordDecl* record = 1109 if (record == NULL) return false; 1111 if (!InV8Namespace(record)) return false; 1113 if (!record->hasDefinition()) return false; 1115 record = record->getDefinition(); 1117 return IsDerivedFrom(record, object_decl_) & [all...] |
/external/v8/test/mjsunit/regress/ |
regress-1060.js | 28 // Make sure that we do not record multiple bailouts in the unoptimized code
|
regress-1104.js | 29 // an arguments object access should not record duplicate AST IDs for
|
regress-1149.js | 28 // We should not try to record duplicate bailout IDs for the 'left-hand
|
/frameworks/base/core/java/android/net/nsd/ |
DnsSdTxtRecord.java | 30 * This class handles TXT record data for DNS based service discovery as specified at 33 * DNS-SD specifies that a TXT record corresponding to an SRV record consist of 47 /** Constructs a new, empty TXT record. */ 52 /** Constructs a new TXT record from a byte array in the standard format. */ 193 /** Return a key in the TXT record by zero-based index. Returns null if index exceeds the total number of keys. */ 214 * Look up a key in the TXT record by zero-based index and return its value. 293 DnsSdTxtRecord record = (DnsSdTxtRecord)o; local 294 return Arrays.equals(record.mData, mData);
|
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/ |
SimSmsInterfaceManager.java | 126 * @param index record index of message to update 146 // manipulating the SIM record 149 byte[] record = makeSmsRecordData(status, pdu); 152 index, record, null, response);
|
/libcore/luni/src/test/java/libcore/java/util/logging/ |
OldLoggerTest.java | 222 public void publish(LogRecord record) {} 226 public boolean isLoggable(LogRecord record) {
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/accessibility/ |
AccessibilityEntityProvider.java | 123 final AccessibilityRecordCompat record = new AccessibilityRecordCompat(event); local 124 record.setSource(mKeyboardView, virtualViewId);
|
/external/bluetooth/bluez/audio/ |
headset.c | 1442 const sdp_record_t *record, uint16_t svc) 1447 if (sdp_get_access_protos(record, &protos) < 0) { 1448 error("Unable to get access protos from headset record"); 1458 error("Unable to get RFCOMM channel from Headset record"); 1465 headset->hfp_handle = record->handle; 1468 headset->hsp_handle = record->handle; 1480 sdp_record_t *record = NULL; local 1487 error("Unable to get service record: %s (%d)", 1506 record = r->data; 1508 if (sdp_get_service_classes(record, &classes) < 0) 2097 const sdp_record_t *record; local 2199 const sdp_record_t *record; local [all...] |
a2dp.c | 1319 sdp_record_t *record; local 1327 record = sdp_record_alloc(); 1328 if (!record) 1333 sdp_set_browse_groups(record, root); 1340 sdp_set_service_classes(record, svclass_id); 1345 sdp_set_profile_descs(record, pfseq); 1360 sdp_set_access_protos(record, aproto); 1363 sdp_attr_add(record, SDP_ATTR_SUPPORTED_FEATURES, features); 1366 sdp_set_info_attr(record, "Audio Source", 0, 0); 1368 sdp_set_info_attr(record, "Audio Sink", 0, 0) 1585 sdp_record_t *record; local [all...] |
/external/bluetooth/bluez/src/ |
sdp-xml.c | 389 * Will convert the sdp record to XML. The appender and data can be used 390 * to control where to output the record (e.g. file or a data buffer). The 404 appender(data, "<record>\n"); 407 appender(data, "</record>\n"); 438 sdp_data_t *sdp_xml_parse_uuid(const char *data, sdp_record_t *record) 469 if (record && ret) 470 sdp_pattern_add_uuid(record, &ret->val.uuid); 747 sdp_record_t *record) 774 return sdp_xml_parse_uuid(data, record);
|
/external/chromium/net/base/ |
dnsrr_resolver.cc | 275 PDNS_RECORD record = NULL; local 278 NULL /* pExtra (reserved) */, &record, NULL /* pReserved */); 290 for (DNS_RECORD* cur = record; cur; cur = cur->pNext) { 292 response_.ttl = record->dwTtl; 294 // of these types then we have to reserialise the record. 334 DnsRecordListFree(record, DnsFreeRecordList);
|
/frameworks/base/core/java/android/widget/ |
ActivityChooserModel.java | 170 * The tag for a record in the history file. 172 private static final String TAG_HISTORICAL_RECORD = "historical-record"; 206 * Default weight for a choice record. 451 * adding a historical record for that action and construct intent with 529 * historical record with weight high enough that this activity will 531 * will eventually change if not used. Also the weight of the record for 546 // Add a record with weight enough to boost the chosen at the top. 733 * Adds a historical record. 735 * @param historicalRecord The record to add. 736 * @return True if the record was added 1071 HistoricalRecord record = historicalRecords.remove(0); local [all...] |
AdapterView.java | 923 // Add a record for ourselves as well. 924 AccessibilityEvent record = AccessibilityEvent.obtain(); local 925 onInitializeAccessibilityEvent(record); 927 child.dispatchPopulateAccessibilityEvent(record); 928 event.appendRecord(record); [all...] |
/external/clang/lib/CodeGen/ |
CGExprAgg.cpp | 206 // Only record types have members that might require garbage collection. 211 RecordDecl *Record = RecordTy->getDecl(); 212 if (isa<CXXRecordDecl>(Record) && 213 (!cast<CXXRecordDecl>(Record)->hasTrivialCopyConstructor() || 214 !cast<CXXRecordDecl>(Record)->hasTrivialDestructor())) 218 return Record->hasObjectMember(); 340 RecordDecl *record = initList->getType()->castAs<RecordType>()->getDecl(); local 341 RecordDecl::field_iterator field = record->field_begin(); 342 if (field == record->field_end()) { 360 if (field == record->field_end()) 947 RecordDecl *record = E->getType()->castAs<RecordType>()->getDecl(); local [all...] |
CGDeclCXX.cpp | 84 const CXXRecordDecl *record = 0; local 86 (record = type->getAsCXXRecordDecl())) { 87 assert(!record->hasTrivialDestructor()); 88 CXXDestructorDecl *dtor = record->getDestructor();
|
/external/webkit/Source/WebKit/android/nav/ |
WebView.cpp | 1044 TileProfileRecord* record = TilesManager::instance()->getProfiler()->getTile(frame, tile); local 1063 TileProfileRecord* record = TilesManager::instance()->getProfiler()->getTile(frame, tile); local [all...] |
/external/skia/src/core/ |
SkPicturePlayback.h | 34 explicit SkPicturePlayback(const SkPictureRecord& record);
|
/frameworks/av/media/libmedia/ |
AudioRecord.cpp | 67 // We double the size of input buffer for ping pong use of record buffer. 180 ALOGE("Could not get audio input for record source %d", inputSource); 371 // the record head position will reset to 0, so if a marker is set, we need 470 sp<IAudioRecord> record = audioFlinger->openRecord(getpid(), input, local 478 if (record == 0) { 479 ALOGE("AudioFlinger could not create record track, status: %d", status); 482 sp<IMemory> cblk = record->getCblk(); 488 mAudioRecord = record;
|
/ndk/sources/host-tools/nawk-20071023/ |
awk.h | 49 extern int recsize; /* size of current record, orig RECSIZE */ 64 extern char *record; /* points to $0 */ 67 extern int donefld; /* 1 if record broken into fields */ 68 extern int donerec; /* 1 if record is valid (no fld has changed */
|
/packages/apps/Tag/src/com/android/apps/tag/record/ |
RecordUtils.java | 17 package com.android.apps.tag.record; 60 * Creates one or more views for a parsed record that wants to display an actionable intent.
|
/external/chromium/chrome/browser/sync/engine/ |
syncer_thread2_unittest.cc | 40 // Used when tests want to record syncing activity to examine later. 179 bool RecordSyncShareImpl(SyncSession* s, SyncShareRecords* record, 181 record->times.push_back(TimeTicks::Now()); 182 record->snapshots.push_back(make_linked_ptr(new SyncSessionSnapshot( 184 return record->times.size() >= signal_after; 187 ACTION_P4(RecordSyncShareAndPostSignal, record, signal_after, test, event) { 188 if (RecordSyncShareImpl(arg0, record, signal_after) && event) 192 ACTION_P3(RecordSyncShare, record, signal_after, event) { 193 if (RecordSyncShareImpl(arg0, record, signal_after) && event) [all...] |
/external/freetype/src/truetype/ |
ttpload.c | 510 /* The maximum number of bytes in an hdmx device record is the */ 583 FT_Byte* record = face->hdmx_table + 8; local 591 result = record + nn * record_size + gindex;
|
/external/libsepol/src/ |
nodes.c | 85 ocontext_t * node, int proto, sepol_node_t ** record) 136 *record = tmp_record; 140 ERR(handle, "could not convert node to record");
|
ports.c | 102 ocontext_t * port, sepol_port_t ** record) 131 *record = tmp_record; 136 "to record", low, high, sepol_port_get_proto_str(rec_proto));
|