OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:kText
(Results
1 - 12
of
12
) sorted by null
/external/chromium/base/
base64_unittest.cc
16
const std::string
kText
= "hello world";
22
ok = base::Base64Encode(
kText
, &encoded);
28
EXPECT_EQ(
kText
, decoded);
/external/chromium_org/base/
base64_unittest.cc
12
const std::string
kText
= "hello world";
19
Base64Encode(
kText
, &encoded);
24
EXPECT_EQ(
kText
, decoded);
/external/chromium_org/chrome/browser/ui/gtk/bubble/
bubble_gtk_browsertest.cc
78
static const char
kText
[] =
81
GtkWidget* label = theme_service->BuildLabel(
kText
, ui::kGdkBlack);
119
static const char
kText
[] =
122
GtkWidget* label = theme_service->BuildLabel(
kText
, ui::kGdkBlack);
/external/chromium_org/chrome/browser/spellchecker/
spellcheck_message_filter_unittest.cc
83
static const base::string16
kText
= ASCIIToUTF16("Helllo warld.");
101
kRouteId, kCallbackId, kMarkers, kSuccess,
kText
, results);
116
EXPECT_EQ(
kText
, sent_text);
feedback_sender_unittest.cc
33
const char
kText
[] = "Helllo world.";
99
UTF8ToUTF16(
kText
),
266
UTF8ToUTF16(
kText
),
315
UTF8ToUTF16(
kText
),
352
kRendererProcessId, UTF8ToUTF16(
kText
), original_markers, &results);
514
kRendererProcessId, UTF8ToUTF16(
kText
), markers, &results);
584
UTF8ToUTF16(
kText
),
/external/chromium_org/mojo/public/tests/
bindings_connector_unittest.cc
77
const char
kText
[] = "hello world";
80
AllocMessage(
kText
, &message);
94
EXPECT_EQ(std::string(
kText
),
106
const char
kText
[] = "hello world";
109
AllocMessage(
kText
, &message);
120
EXPECT_EQ(std::string(
kText
),
129
const char*
kText
[] = { "hello", "world" };
131
for (size_t i = 0; i < MOJO_ARRAYSIZE(
kText
); ++i) {
133
AllocMessage(
kText
[i], &message);
143
for (size_t i = 0; i < MOJO_ARRAYSIZE(
kText
); ++i)
[
all
...]
bindings_type_conversion_unittest.cc
75
const char
kText
[6] = "hello";
77
String a = std::string(
kText
);
78
String b(
kText
);
79
String c(static_cast<const char*>(
kText
));
81
EXPECT_EQ(std::string(
kText
), a.To<std::string>());
82
EXPECT_EQ(std::string(
kText
), b.To<std::string>());
83
EXPECT_EQ(std::string(
kText
), c.To<std::string>());
118
const std::string
kText
("hel\0lo", 6);
120
String a(
kText
);
121
EXPECT_EQ(
kText
, a.To<std::string>())
[
all
...]
/external/chromium_org/ui/base/x/
selection_utils.cc
20
const char
kText
[] = "TEXT";
26
kText
,
35
atoms.push_back(atom_cache->GetAtom(
kText
));
178
type_ == atom_cache_.GetAtom(
kText
)) {
/external/skia/gm/
shadertext3.cpp
66
static const char
kText
[] = "B";
67
static const int kTextLen = SK_ARRAY_COUNT(
kText
) - 1;
119
canvas->drawText(
kText
, kTextLen, 0, 0, fillPaint);
120
canvas->drawText(
kText
, kTextLen, 0, 0, outlinePaint);
121
SkScalar w = fillPaint.measureText(
kText
, kTextLen);
shadertext2.cpp
66
static const char
kText
[] = "SKIA";
67
static const int kTextLen = SK_ARRAY_COUNT(
kText
) - 1;
114
SkScalar w = fillPaint.measureText(
kText
, kTextLen);
166
canvas->drawText(
kText
, kTextLen, 0, 0, paint);
167
canvas->drawText(
kText
, kTextLen, 0, 0, outlinePaint);
182
canvas->drawTextOnPath(
kText
, kTextLen, path, NULL, paint);
183
canvas->drawTextOnPath(
kText
, kTextLen, path, NULL, outlinePaint);
/external/chromium_org/chrome_frame/test/
test_with_web_server.cc
[
all
...]