OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Doc
(Results
1 - 6
of
6
) sorted by null
/external/llvm/tools/yaml2obj/
yaml2coff.cpp
266
COFFYAML::Object
Doc
;
267
YIn >>
Doc
;
273
COFFParser CP(
Doc
);
yaml2elf.cpp
242
static int writeELF(raw_ostream &OS, const ELFYAML::Object &
Doc
) {
247
const ELFYAML::FileHeader &Hdr =
Doc
.Header;
273
const std::vector<ELFYAML::Section> &Sections =
Doc
.Sections;
344
handleSymtabSectionHeader<ELFT>(
Doc
.Symbols, State, SymtabSHeader);
366
static bool is64Bit(const ELFYAML::Object &
Doc
) {
367
return
Doc
.Header.Class == ELFYAML::ELF_ELFCLASS(ELF::ELFCLASS64);
370
static bool isLittleEndian(const ELFYAML::Object &
Doc
) {
371
return
Doc
.Header.Data == ELFYAML::ELF_ELFDATA(ELF::ELFDATA2LSB);
376
ELFYAML::Object
Doc
;
377
YIn >>
Doc
;
[
all
...]
/external/llvm/include/llvm/Support/
YAMLParser.h
151
OwningPtr<Document> &
Doc
;
512
document_iterator() :
Doc
(0) {}
513
document_iterator(OwningPtr<Document> &D) :
Doc
(&D) {}
519
return
Doc
== Other.
Doc
;
526
assert(
Doc
!= 0 && "incrementing iterator past the end.");
527
if (!(*
Doc
)->skip()) {
528
Doc
->reset(0);
530
Stream &S = (*
Doc
)->stream;
531
Doc
->reset(new Document(S))
[
all
...]
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
pydoc.py
82
"""Get the
doc
string or comments for an object."""
86
def splitdoc(
doc
):
87
"""Split a
doc
string into a synopsis line (if any) and the rest."""
88
lines = split(strip(
doc
), '\n')
318
class
Doc
:
416
class HTMLDoc(
Doc
):
658
doc
= self.markup(getdoc(object), self.preformat, fdict, cdict)
659
doc
=
doc
and '<tt>%s</tt>' %
doc
1529
def
doc
(thing, title='Python Library Documentation: %s', forceload=0):
function
[
all
...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/
pydoc.py
82
"""Get the
doc
string or comments for an object."""
86
def splitdoc(
doc
):
87
"""Split a
doc
string into a synopsis line (if any) and the rest."""
88
lines = split(strip(
doc
), '\n')
318
class
Doc
:
416
class HTMLDoc(
Doc
):
658
doc
= self.markup(getdoc(object), self.preformat, fdict, cdict)
659
doc
=
doc
and '<tt>%s</tt>' %
doc
1529
def
doc
(thing, title='Python Library Documentation: %s', forceload=0):
function
[
all
...]
/external/clang/tools/c-index-test/
c-index-test.c
481
xmlDocPtr
Doc
;
498
Doc
= xmlParseDoc((const xmlChar *) Str);
500
if (!
Doc
) {
507
status = xmlRelaxNGValidateDoc(ValidationCtxt,
Doc
);
517
xmlFreeDoc(
Doc
);
[
all
...]
Completed in 2462 milliseconds