OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Doc
(Results
1 - 9
of
9
) sorted by null
/external/clang/unittests/Tooling/
ReplacementsYamlTest.cpp
22
TranslationUnitReplacements
Doc
;
24
Doc
.MainSourceFile = "/path/to/source.cpp";
25
Doc
.Context = "some context";
26
Doc
.Replacements
28
Doc
.Replacements
35
YAML <<
Doc
;
86
// Make sure a
doc
can be read without the context field.
/external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
SkPdfJavascriptDictionary_autogen.cpp
11
bool SkPdfJavascriptDictionary::isBeforeAString(SkPdfNativeDoc*
doc
) {
13
if (
doc
) {ret =
doc
->resolveReference(ret);}
17
SkString SkPdfJavascriptDictionary::getBeforeAsString(SkPdfNativeDoc*
doc
) {
19
if (
doc
) {ret =
doc
->resolveReference(ret);}
20
if ((ret != NULL && ret->isAnyString()) || (
doc
== NULL && ret != NULL && ret->isReference())) return ret->stringValue2();
25
bool SkPdfJavascriptDictionary::isBeforeAStream(SkPdfNativeDoc*
doc
) {
27
if (
doc
) {ret =
doc
->resolveReference(ret);
[
all
...]
/external/llvm/tools/yaml2obj/
yaml2coff.cpp
331
COFFYAML::Object
Doc
;
332
YIn >>
Doc
;
338
COFFParser CP(
Doc
);
yaml2elf.cpp
117
const ELFYAML::Object &
Doc
;
143
unsigned getDotSymTabSecNo() const { return
Doc
.Sections.size() + 1; }
144
unsigned getDotStrTabSecNo() const { return
Doc
.Sections.size() + 2; }
145
unsigned getDotShStrTabSecNo() const { return
Doc
.Sections.size() + 3; }
146
unsigned getSectionCount() const { return
Doc
.Sections.size() + 4; }
148
ELFState(const ELFYAML::Object &D) :
Doc
(D) {}
151
static int writeELF(raw_ostream &OS, const ELFYAML::Object &
Doc
);
167
Header.e_ident[EI_OSABI] =
Doc
.Header.OSABI;
169
Header.e_type =
Doc
.Header.Type;
170
Header.e_machine =
Doc
.Header.Machine
[
all
...]
/cts/hostsidetests/appsecurity/test-apps/DocumentProvider/src/com/android/cts/documentprovider/
MyDocumentsProvider.java
76
row.add(Root.COLUMN_DOCUMENT_ID, "
doc
:local");
82
row.add(Root.COLUMN_DOCUMENT_ID, "
doc
:create");
87
private Map<String,
Doc
> mDocs = new HashMap<>();
89
private
Doc
mLocalRoot;
90
private
Doc
mCreateRoot;
92
private
Doc
buildDoc(String docId, String displayName, String mimeType) {
93
final
Doc
doc
= new
Doc
();
local
94
doc
.docId = docId
186
final Doc
doc
= buildDoc(
doc
Id, displayName, mimeType);
local
228
final Doc
doc
= mDocs.get(
doc
umentId);
local
[
all
...]
/external/llvm/include/llvm/Support/
YAMLParser.h
158
std::unique_ptr<Document> &
Doc
;
521
document_iterator() :
Doc
(nullptr) {}
522
document_iterator(std::unique_ptr<Document> &D) :
Doc
(&D) {}
528
return
Doc
== Other.
Doc
;
533
assert(
Doc
&& "incrementing iterator past the end.");
534
if (!(*
Doc
)->skip()) {
535
Doc
->reset(nullptr);
537
Stream &S = (*
Doc
)->stream;
538
Doc
->reset(new Document(S))
[
all
...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
externs.js
246
var
Doc
= function() { }
247
Doc
.prototype = {
258
/** @type {!
Doc
} */
259
doc
: null,
391
swapDoc: function(
doc
) { },
454
CodeMirror.
doc
;
/external/clang/utils/TableGen/
ClangAttrEmitter.cpp
[
all
...]
/external/clang/tools/c-index-test/
c-index-test.c
549
xmlDocPtr
Doc
;
563
Doc
= xmlParseDoc((const xmlChar *) Str);
565
if (!
Doc
) {
572
status = xmlRelaxNGValidateDoc(ValidationCtxt,
Doc
);
582
xmlFreeDoc(
Doc
);
[
all
...]
Completed in 216 milliseconds