HomeSort by relevance Sort by last modified time
    Searched refs:record (Results 226 - 250 of 312) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
LoggerTest.java     [all...]
  /external/bluetooth/bluez/src/
device.c 613 const char *record)
622 dbus_message_iter_append_basic(&entry, DBUS_TYPE_STRING, &record);
1346 DBG("Skipping record with no service classes");
2496 const sdp_record_t *record; local
    [all...]
  /external/clang/lib/CodeGen/
ItaniumCXXABI.cpp 820 const CXXRecordDecl *record = local
822 return (record && !record->hasTrivialDestructor());
    [all...]
CGDebugInfo.cpp 480 /// CreatePointeeType - Create Pointee type. If Pointee is a record
481 /// then emit record's fwd if debug info size reduction is enabled.
669 /// record fields. This is used while creating debug info entry for a Record.
671 CollectRecordFields(const RecordDecl *record, llvm::DIFile tunit,
676 bool IsMsStruct = record->hasAttr<MsStructAttr>();
678 const ASTRecordLayout &layout = CGM.getContext().getASTRecordLayout(record);
679 for (RecordDecl::field_iterator I = record->field_begin(),
680 E = record->field_end();
840 /// a Record
    [all...]
CGClass.cpp 292 // If the record matches the base, this is the complete ctor/dtor
531 static bool hasTrivialCopyOrMoveConstructor(const CXXRecordDecl *Record,
533 return Moving ? Record->hasTrivialMoveConstructor() :
534 Record->hasTrivialCopyConstructor();
598 const CXXRecordDecl *Record = BaseElementTy->getAsCXXRecordDecl();
600 (Record && hasTrivialCopyOrMoveConstructor(Record,
1179 const CXXRecordDecl *record = cast<CXXRecordDecl>(rtype->getDecl()); local
    [all...]
  /external/clang/lib/AST/
Type.cpp 328 case Record:
877 if (const RecordType *Record = dyn_cast<RecordType>(CanonicalType)) {
878 if (CXXRecordDecl *ClassDecl = dyn_cast<CXXRecordDecl>(Record->getDecl()))
912 case Record:
2270 const CXXRecordDecl *record = local
    [all...]
  /external/mesa3d/src/glsl/
ir_clone.cpp 202 return new(mem_ctx) ir_dereference_record(this->record->clone(mem_ctx, ht),
ir_to_llvm.cpp 340 int idx = deref->record->type->field_index(deref->field);
342 return bld.CreateConstInBoundsGEP2_32(llvm_pointer(deref->record), 0, idx);
    [all...]
  /external/webkit/Source/JavaScriptCore/assembler/
MacroAssemblerARMv7.h 63 JumpLinkType computeJumpType(LinkRecord& record, const uint8_t* from, const uint8_t* to) { return m_assembler.computeJumpType(record, from, to); }
66 void link(LinkRecord& record, uint8_t* from, uint8_t* to) { return m_assembler.link(record, from, to); }
    [all...]
  /external/webkit/Source/WebKit/android/nav/
WebView.cpp 2554 TileProfileRecord* record = TilesManager::instance()->getProfiler()->getTile(frame, tile); local
2573 TileProfileRecord* record = TilesManager::instance()->getProfiler()->getTile(frame, tile); local
    [all...]
  /external/blktrace/btreplay/doc/
btreplay.tex 156 Each input data file (one per device per CPU) results in a new record
159 these record data files by spawning a new pair of threads per file. One
160 thread manages the submitting of AIOs per bunch in the record data file,
419 record files in the directory specified (either via the \texttt{-d}
  /external/skia/samplecode/
SampleAll.cpp 362 SkCanvas* record = picture.beginRecording(320, 480); local
363 drawPicture(record, 120);
  /external/valgrind/main/memcheck/tests/
xml1.stderr.exp 357 <text>396 bytes in 1 blocks are definitely lost in loss record ... of ...</text>
  /external/webkit/Source/WebCore/storage/
IDBSQLiteBackingStore.cpp 405 return String(); // Null String means record not found.
411 String record = query.getColumnBlobAsString(3); local
414 return record;
    [all...]
  /external/zlib/contrib/pascal/
zlibpas.pas 27 z_stream = packed record
  /ndk/build/core/
add-application.mk 16 # this script is used to record an application definition in the
231 # Record all app-specific variable definitions
236 # Record the Application.mk for debugging
  /external/chromium/chrome/browser/resources/
new_new_tab.js 26 // The URL prefix for pings that record app launches by URL.
27 PING_BY_URL: 'record-app-launch-by-url',
29 // The URL prefix for pings that record app launches by ID.
30 PING_BY_ID: 'record-app-launch-by-id',
33 PING_WEBSTORE: 'record-webstore-launch'
    [all...]
  /external/jsilver/src/com/google/streamhtmlparser/impl/
HtmlParserImpl.java 489 protected void record(char input) { method in class:HtmlParserImpl
  /external/kernel-headers/original/linux/
perf_event.h 329 * The MMAP events record the PROT_EXEC mappings so that we can
423 * # The RAW record below is opaque data wrt the ABI
1002 extern void perf_tp_event(u64 addr, u64 count, void *record,
  /external/pcre/
pcregexp.pas 267 tpcre_extra = record
277 pcre_callout_block = record
  /external/webkit/Source/WebCore/bindings/v8/
V8DOMWindowShell.cpp 356 android::TimeCounter::record(android::TimeCounter::JavaScriptInitTimeCounter, __FUNCTION__);
  /external/webkit/Source/WebKit/android/jni/
JavaBridge.cpp 383 TimeCounter::record(TimeCounter::SharedTimerTimeCounter, __FUNCTION__);
  /frameworks/base/media/tests/ScoAudioTest/src/com/android/scoaudiotest/
ScoAudioTest.java 420 mPlayImageResource = R.drawable.record;
  /frameworks/base/core/java/android/view/
GLES20Canvas.java 98 protected GLES20Canvas(boolean record, boolean translucent) {
101 if (record) {
    [all...]
  /external/clang/lib/Sema/
SemaExprMember.cpp 29 CXXRecordDecl *Record,
31 if (Bases.count(Record->getCanonicalDecl()))
34 RecordDecl *RD = Record->getDefinition();
36 Record = cast<CXXRecordDecl>(RD);
38 for (CXXRecordDecl::base_class_iterator I = Record->bases_begin(),
39 E = Record->bases_end(); I != E; ++I) {
149 const Sema::ExpressionEvaluationContextRecord& record local
151 bool isUnevaluatedExpression = (record.Context == Sema::Unevaluated);
572 // The record definition is complete, now look up the member.
    [all...]

Completed in 1258 milliseconds

1 2 3 4 5 6 7 8 91011>>