OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:IntValue
(Results
1 - 9
of
9
) sorted by null
/external/guava/guava-tests/test/com/google/common/base/
EquivalenceTest.java
86
private static class
IntValue
{
89
IntValue
(int value) {
100
.addEquivalenceGroup(new
IntValue
(1), new
IntValue
(1))
101
.addEquivalenceGroup(new
IntValue
(2))
/external/llvm/lib/MC/
MCObjectStreamer.cpp
147
int64_t
IntValue
;
148
if (Value->EvaluateAsAbsolute(
IntValue
, getAssembler())) {
149
EmitULEB128IntValue(
IntValue
);
157
int64_t
IntValue
;
158
if (Value->EvaluateAsAbsolute(
IntValue
, getAssembler())) {
159
EmitSLEB128IntValue(
IntValue
);
MCAsmStreamer.cpp
679
int64_t
IntValue
;
680
if (!Value->EvaluateAsAbsolute(
IntValue
))
683
EmitIntValue((uint32_t)(
IntValue
>> 0 ), 4);
684
EmitIntValue((uint32_t)(
IntValue
>> 32), 4);
686
EmitIntValue((uint32_t)(
IntValue
>> 32), 4);
687
EmitIntValue((uint32_t)(
IntValue
>> 0 ), 4);
698
int64_t
IntValue
;
699
if (Value->EvaluateAsAbsolute(
IntValue
)) {
700
EmitULEB128IntValue(
IntValue
);
709
int64_t
IntValue
;
[
all
...]
ELFObjectWriter.cpp
480
int64_t
IntValue
;
481
if (Value->EvaluateAsAbsolute(
IntValue
, Layout))
482
return (uint64_t)
IntValue
;
[
all
...]
/external/tinyxml/
tinyxml.cpp
1266
int TiXmlAttribute::
IntValue
() const
[
all
...]
/external/llvm/lib/Target/ARM/
ARMAsmPrinter.cpp
112
unsigned
IntValue
;
201
Streamer.EmitULEB128IntValue(item.
IntValue
);
[
all
...]
/external/chromium/testing/gmock/test/
gmock-matchers_test.cc
469
class
IntValue
{
472
//
IntValue
.
473
explicit
IntValue
(int a_value) : value_(a_value) {}
481
bool IsPositiveIntValue(const
IntValue
& foo) {
493
Matcher<
IntValue
> m3 = Truly(IsPositiveIntValue);
496
// to
IntValue
objects, and then tested by the IsPositiveIntValue()
[
all
...]
/external/tinyxml2/
tinyxml2.h
781
int
IntValue
() const { int i=0; QueryIntValue( &i ); return i; }
[
all
...]
/external/llvm/lib/MC/MCParser/
AsmParser.cpp
[
all
...]
Completed in 360 milliseconds