OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:KEY2
(Results
1 - 6
of
6
) sorted by null
/frameworks/compile/mclinker/include/mcld/Support/
MemoryArea.h
100
bool operator()(const Key& KEY1, const Key&
KEY2
) const
102
return KEY1.offset() + KEY1.length() <
KEY2
.offset() ||
103
(KEY1.offset() <
KEY2
.offset() &&
104
(KEY1.offset() + KEY1.length() <
KEY2
.offset() +
KEY2
.length()));
/cts/tests/tests/text/src/android/text/cts/
AnnotationTest.java
26
private static final String
KEY2
= "family name";
48
mAnnotation = new Annotation(
KEY2
, VALUE2);
56
mAnnotation = new Annotation(
KEY2
, VALUE2);
57
assertEquals(
KEY2
, mAnnotation.getKey());
/frameworks/compile/mclinker/include/mcld/LD/
BranchIsland.h
137
bool operator() (const Key& KEY1, const Key&
KEY2
) const
139
return (KEY1.prototype() ==
KEY2
.prototype()) &&
140
(KEY1.symbol() ==
KEY2
.symbol()) &&
141
(KEY1.addend() ==
KEY2
.addend());
/external/pixman/test/
glyph-test.c
213
#define
KEY2
(p) ((void *)(((uintptr_t)p) ^ (0xabcd9876UL)))
251
void *
key2
=
KEY2
(glyph_img);
local
254
if (!(glyph = pixman_glyph_cache_lookup (cache, key1,
key2
)))
257
pixman_glyph_cache_insert (cache, key1,
key2
, 5, 8, glyph_img);
307
void *key1, *
key2
;
local
310
key2
=
KEY2
(img);
312
pixman_glyph_cache_remove (cache, key1,
key2
);
/cts/tests/tests/os/src/android/os/cts/
BundleTest.java
47
private static final String
KEY2
= "
key2
";
251
assertNull(mBundle.getCharSequence(
KEY2
));
253
mBundle.putCharSequence(
KEY2
, mSpannable);
255
assertSpannableEquals(mSpannable, mBundle.getCharSequence(
KEY2
));
258
assertSpannableEquals(mSpannable, mBundle.getCharSequence(
KEY2
));
/cts/tests/tests/content/src/android/content/cts/
ContentResolverTest.java
72
private static final String
KEY2
= "
key2
";
101
values.put(COLUMN_KEY_NAME,
KEY2
);
317
assertEquals(
KEY2
, mCursor.getString(mCursor.getColumnIndexOrThrow(COLUMN_KEY_NAME)));
374
assertEquals(
KEY2
, mCursor.getString(mCursor.getColumnIndexOrThrow(COLUMN_KEY_NAME)));
781
values.put(COLUMN_KEY_NAME,
KEY2
);
[
all
...]
Completed in 267 milliseconds