/external/chromium_org/base/threading/ |
simple_thread.cc | 14 SimpleThread::SimpleThread(const std::string& name_prefix) 15 : name_prefix_(name_prefix), name_(name_prefix), 19 SimpleThread::SimpleThread(const std::string& name_prefix, 21 : name_prefix_(name_prefix), name_(name_prefix), options_(options), 64 const std::string& name_prefix) 65 : SimpleThread(name_prefix), 70 const std::string& name_prefix, 72 : SimpleThread(name_prefix, options) [all...] |
simple_thread.h | 76 // Every thread has a name, in the form of |name_prefix|/TID, for example 78 explicit SimpleThread(const std::string& name_prefix); 79 SimpleThread(const std::string& name_prefix, const Options& options); 90 std::string name_prefix() { return name_prefix_; } function in class:base::SimpleThread 133 const std::string& name_prefix); 135 const std::string& name_prefix, 158 DelegateSimpleThreadPool(const std::string& name_prefix, int num_threads);
|
simple_thread_unittest.cc | 120 EXPECT_EQ(thread.name_prefix(), "event_waiter"); 124 EXPECT_EQ(thread.name_prefix(), "event_waiter"); 133 EXPECT_EQ(thread.name_prefix(), "event_waiter");
|
worker_pool_posix.cc | 69 WorkerThread(const std::string& name_prefix, 71 : name_prefix_(name_prefix), 126 PosixDynamicThreadPool::PosixDynamicThreadPool(const std::string& name_prefix, 128 : name_prefix_(name_prefix),
|
worker_pool_posix.h | 50 // All worker threads will share the same |name_prefix|. They will exit after 52 PosixDynamicThreadPool(const std::string& name_prefix,
|
/art/runtime/gc/collector/ |
concurrent_copying.h | 29 const std::string& name_prefix = "") 31 name_prefix + (name_prefix.empty() ? "" : " ") +
|
partial_mark_sweep.cc | 28 PartialMarkSweep::PartialMarkSweep(Heap* heap, bool is_concurrent, const std::string& name_prefix) 29 : MarkSweep(heap, is_concurrent, name_prefix.empty() ? "partial " : name_prefix) {
|
sticky_mark_sweep.cc | 27 StickyMarkSweep::StickyMarkSweep(Heap* heap, bool is_concurrent, const std::string& name_prefix) 29 name_prefix.empty() ? "sticky " : name_prefix) {
|
partial_mark_sweep.h | 33 explicit PartialMarkSweep(Heap* heap, bool is_concurrent, const std::string& name_prefix = "");
|
sticky_mark_sweep.h | 33 explicit StickyMarkSweep(Heap* heap, bool is_concurrent, const std::string& name_prefix = "");
|
mark_compact.h | 61 explicit MarkCompact(Heap* heap, const std::string& name_prefix = "");
|
mark_compact.cc | 70 MarkCompact::MarkCompact(Heap* heap, const std::string& name_prefix) 71 : GarbageCollector(heap, name_prefix + (name_prefix.empty() ? "" : " ") + "mark compact"),
|
semi_space.cc | 88 SemiSpace::SemiSpace(Heap* heap, bool generational, const std::string& name_prefix) 90 name_prefix + (name_prefix.empty() ? "" : " ") + "marksweep + semispace"), [all...] |
/external/chromium_org/v8/src/ |
profile-generator-inl.h | 15 const char* name_prefix, 21 name_prefix_(name_prefix),
|
profile-generator.h | 53 const char* name_prefix = CodeEntry::kEmptyNamePrefix, 60 const char* name_prefix() const { return name_prefix_; } function in class:v8::internal::CodeEntry 281 const char* name_prefix = CodeEntry::kEmptyNamePrefix,
|
profile-generator.cc | 214 entry_->name_prefix(), 543 const char* name_prefix, 549 name_prefix,
|
/external/chromium_org/chrome/common/extensions/docs/server2/ |
new_github_file_system.py | 57 name_prefix = None # probably 'zipball' 61 if name_prefix and prefix != name_prefix: 65 name_prefix = prefix 67 return cls(zipball, name_prefix, paths) 69 def __init__(self, zipball, name_prefix, paths): 71 self._name_prefix = name_prefix
|
/sdk/emulator/opengl/host/tools/emugen/ |
EntryPoint.h | 37 const std::string & name_prefix = std::string(""),
|
EntryPoint.cpp | 158 const std::string & name_prefix, 163 name_prefix.c_str(),
|
/external/esd/include/ |
esd.h | 309 int esd_play_file( const char *name_prefix, const char *filename, int fallback ); 310 int esd_file_cache( int esd, const char *name_prefix, const char *filename );
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/ |
esd.h | 311 int esd_play_file( const char *name_prefix, const char *filename, int fallback ); 312 int esd_file_cache( int esd, const char *name_prefix, const char *filename );
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/ |
esd.h | 311 int esd_play_file( const char *name_prefix, const char *filename, int fallback ); 312 int esd_file_cache( int esd, const char *name_prefix, const char *filename );
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/X11/ |
Xresource.h | 303 XrmNameList /* name_prefix */,
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/ |
Xresource.h | 303 XrmNameList /* name_prefix */,
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/account/ |
ExchangeAccountType.java | 90 kind.fieldList.add(new EditField(StructuredName.PREFIX, R.string.name_prefix, 119 kind.fieldList.add(new EditField(StructuredName.PREFIX, R.string.name_prefix,
|