HomeSort by relevance Sort by last modified time
    Searched refs:name_prefix (Results 1 - 25 of 45) sorted by null

1 2

  /art/runtime/gc/collector/
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)
28 : PartialMarkSweep(heap, is_concurrent, name_prefix.empty() ? "sticky " : name_prefix) {
partial_mark_sweep.h 33 PartialMarkSweep(Heap* heap, bool is_concurrent, const std::string& name_prefix = "");
sticky_mark_sweep.h 33 StickyMarkSweep(Heap* heap, bool is_concurrent, const std::string& name_prefix = "");
mark_compact.cc 53 MarkCompact::MarkCompact(Heap* heap, const std::string& name_prefix)
54 : GarbageCollector(heap, name_prefix + (name_prefix.empty() ? "" : " ") + "mark compact"),
  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/demos/tunes_db/server/
model.py 85 def search(cls, name_prefix=None):
89 name_prefix: User input name-prefix to search for. If name_prefix
96 name_prefix = _normalize_name(name_prefix)
98 if name_prefix:
99 query.filter('encoded_name >=', db.ByteString(name_prefix))
100 # Do not need to worry about name_prefix + '\xff\xff' because not
102 query.filter('encoded_name <=', db.ByteString(name_prefix + '\xff'))
tunes_db.py 156 name_prefix: Name prefix of artists to search. If none provided and
158 If continuation is provided, name_prefix should be empty, if not, value
164 name_prefix = messages.StringField(3, default=u'') variable in class:SearchArtistsRequest
274 name_prefix: Name prefix of albms to search. If none provided and
276 If continuation is provided, name_prefix should be empty, if not, value
283 name_prefix = messages.StringField(3, default=u'') variable in class:SearchAlbumsRequest
376 name_prefix = request.name_prefix
378 query = info_class.search(name_prefix)
tunes_db_test.py 180 request.name_prefix = u'Duke'
220 request.name_prefix = u' { tHe! '
  /external/libchrome/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),
70 const std::string& name_prefix)
71 : SimpleThread(name_prefix),
76 const std::string& name_prefix,
78 : SimpleThread(name_prefix, options)
    [all...]
simple_thread.h 84 // Every thread has a name, in the form of |name_prefix|/TID, for example
86 explicit SimpleThread(const std::string& name_prefix);
87 SimpleThread(const std::string& name_prefix, const Options& options);
98 std::string name_prefix() { return name_prefix_; } function in class:base::SimpleThread
135 const std::string& name_prefix);
137 const std::string& name_prefix,
161 DelegateSimpleThreadPool(const std::string& name_prefix, int num_threads);
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,
worker_pool_posix.cc 65 WorkerThread(const std::string& name_prefix,
67 : name_prefix_(name_prefix), pool_(pool) {}
121 PosixDynamicThreadPool::PosixDynamicThreadPool(const std::string& name_prefix,
123 : name_prefix_(name_prefix),
simple_thread_unittest.cc 116 EXPECT_EQ(thread.name_prefix(), "event_waiter");
120 EXPECT_EQ(thread.name_prefix(), "event_waiter");
129 EXPECT_EQ(thread.name_prefix(), "event_waiter");
  /external/v8/src/profiler/
profile-generator-inl.h 14 const char* name_prefix, const char* resource_name,
19 name_prefix_(name_prefix),
profiler-listener.h 54 const char* name_prefix = CodeEntry::kEmptyNamePrefix,
profile-generator.h 42 const char* name_prefix = CodeEntry::kEmptyNamePrefix,
57 const char* name_prefix() const { return name_prefix_; } function in class:v8::internal::CodeEntry
  /external/autotest/client/bin/
fio_util.py 359 name_prefix=None,
366 {"description": "<name_prefix>_<modle>_<size>G",
376 @param name_prefix: prefix of the descriptions to use in chrome perfi
412 if name_prefix:
413 perfdb_name = name_prefix + '_' + perfdb_name
415 result = fio_parser(fio.stdout, prefix=name_prefix)
421 if name_prefix:
422 k = k.replace('_' + name_prefix, graph_prefix)
  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/demos/tunes_db/client/
main.py 87 name_prefix = None
89 name_prefix = search_string
93 name_prefix=name_prefix)
233 name_prefix = None
235 name_prefix = search_string
239 name_prefix=search_string)
  /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.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.15-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 );
  /external/tpm2/generator/
tpm_table.py 468 name_prefix, alg_suffix, name_suffix = tuple(elements)
469 name_prefix = name_prefix.strip('_')
471 return name_prefix, name_suffix, self._PickAlgEntries(alg_suffix)
477 name_prefix, name_suffix, alg_list = tuple(result)
481 new_name = '_'.join([name_prefix,
507 name_prefix, name_suffix, alg_list = tuple(result)
511 [name_prefix, alg_base, name_suffix]).strip('_'))
531 name_prefix, name_suffix, alg_list = tuple(result)
534 new_type = '%s_%s_%s' % (name_prefix, alg_base, name_suffix
    [all...]
  /external/autotest/client/site_tests/platform_CryptohomeFio/
platform_CryptohomeFio.py 69 name_prefix=graph_descr + config))
  /art/cmdline/
token_range.h 356 std::string name_prefix = name.substr(0, wildcard_idx);
359 if (!StartsWith(*token_it, name_prefix)) {
  /external/skia/src/core/
SkTraceEvent.h 132 #define INTERNAL_TRACE_EVENT_UID(name_prefix) \
133 INTERNAL_TRACE_EVENT_UID2(name_prefix, __LINE__)

Completed in 2399 milliseconds

1 2