OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CHECK_STREQ
(Results
1 - 4
of
4
) sorted by null
/art/runtime/base/
logging.h
57
#define
CHECK_STREQ
(s1, s2) CHECK_STROP(s1, s2, true)
88
#define DCHECK_STREQ(s1, s2)
CHECK_STREQ
(s1, s2)
124
CHECK_STREQ
(str1, str2)
160
// you'd need to use
CHECK_STREQ
and CHECK_STRNE anyway to compare the characters rather than their
/external/chromium_org/third_party/cld/base/
logging.h
582
// Don't use this macro directly in your code, use
CHECK_STREQ
et al below.
600
// (e.g.
CHECK_STREQ
(Foo().c_str(), Bar().c_str())).
602
#define
CHECK_STREQ
(s1, s2) CHECK_STROP(strcmp, ==, true, s1, s2)
755
#define DCHECK_STREQ(str1, str2)
CHECK_STREQ
(str1, str2)
811
CHECK_STREQ
(str1, str2)
[
all
...]
/art/runtime/mirror/
art_method.cc
273
CHECK_STREQ
(GetShorty(), shorty);
/art/runtime/
class_linker.cc
554
CHECK_STREQ
(pendingNext->GetName(), "pendingNext");
555
CHECK_STREQ
(pendingNext->GetTypeDescriptor(), "Ljava/lang/ref/Reference;");
558
CHECK_STREQ
(queue->GetName(), "queue");
559
CHECK_STREQ
(queue->GetTypeDescriptor(), "Ljava/lang/ref/ReferenceQueue;");
562
CHECK_STREQ
(queueNext->GetName(), "queueNext");
563
CHECK_STREQ
(queueNext->GetTypeDescriptor(), "Ljava/lang/ref/Reference;");
566
CHECK_STREQ
(referent->GetName(), "referent");
567
CHECK_STREQ
(referent->GetTypeDescriptor(), "Ljava/lang/Object;");
570
CHECK_STREQ
(zombie->GetName(), "zombie");
571
CHECK_STREQ
(zombie->GetTypeDescriptor(), "Ljava/lang/Object;")
[
all
...]
Completed in 142 milliseconds