OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Footer
(Results
1 - 11
of
11
) sorted by null
/external/chromium_org/third_party/leveldatabase/src/include/leveldb/
table.h
15
class
Footer
;
75
void ReadMeta(const
Footer
&
footer
);
/external/chromium_org/third_party/leveldatabase/src/table/
format.h
45
//
Footer
encapsulates the fixed information stored at the tail
47
class
Footer
{
49
Footer
() { }
66
// Encoded length of a
Footer
. Note that the serialization of a
67
//
Footer
will always occupy exactly this many bytes. It consists
table.cc
34
BlockHandle metaindex_handle; // Handle to metaindex_block: saved from
footer
43
if (size <
Footer
::kEncodedLength) {
47
char footer_space[
Footer
::kEncodedLength];
49
Status s = file->Read(size -
Footer
::kEncodedLength,
Footer
::kEncodedLength,
53
Footer
footer
;
54
s =
footer
.DecodeFrom(&footer_input);
61
s = ReadBlock(file, ReadOptions(),
footer
.index_handle(), &contents);
68
// We've successfully read the
footer
and the index block: we'r
[
all
...]
format.cc
32
void
Footer
::EncodeTo(std::string* dst) const {
44
Status
Footer
::DecodeFrom(Slice* input) {
74
// Read the block contents as well as the type/crc
footer
.
table_builder.cc
241
// Write
footer
243
Footer
footer
;
local
244
footer
.set_metaindex_handle(metaindex_block_handle);
245
footer
.set_index_handle(index_block_handle);
247
footer
.EncodeTo(&footer_encoding);
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
DotTreeGenerator.cs
70
const string
Footer
= "}";
116
builder.AppendLine(
Footer
);
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Utility/Antlr.Utility.Tree/
DOTTreeGenerator.cs
68
const string
Footer
= "}";
113
builder.AppendLine(
Footer
);
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
DotTreeGenerator.cs
70
const string
Footer
= "}";
116
builder.AppendLine(
Footer
);
/external/chromium-trace/trace-viewer/third_party/python_gflags/
gflags2man.py
451
self.
Footer
()
456
def
Footer
(self): raise NotImplementedError # define in subclass
516
def
Footer
(self):
/external/chromium_org/third_party/python_gflags/
gflags2man.py
451
self.
Footer
()
456
def
Footer
(self): raise NotImplementedError # define in subclass
516
def
Footer
(self):
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
DirectoryFragment.java
501
// Directories and
footer
items cannot be checked
605
private static abstract class
Footer
{
608
public
Footer
(int itemViewType) {
619
private class LoadingFooter extends
Footer
{
644
private class MessageFooter extends
Footer
{
682
private List<
Footer
> mFooters = Lists.newArrayList();
[
all
...]
Completed in 460 milliseconds