Home
last modified time | relevance | path

Searched +full:external +full:- +full:contents (Results 1 – 25 of 1079) sorted by relevance

12345678910>>...44

/external/clang/test/VFS/Inputs/
Dvfsoverlay.yaml5 'contents': [
7 'external-contents': 'INPUT_DIR/actual_header.h'
10 'external-contents': 'INPUT_DIR/import_some_frame.h'
13 'external-contents': 'INPUT_DIR/actual_module.map'
16 'external-contents': 'INPUT_DIR/include_real.h'
19 'contents': [
21 'contents': [
23 'external-contents': 'INPUT_DIR/public_header.h' },
25 'external-contents': 'INPUT_DIR/public_header2.h' },
27 'external-contents': 'INPUT_DIR/public_header3.h' }
[all …]
/external/clang/unittests/libclang/
DLibclangTest.cpp1 //===- unittests/libclang/LibclangTest.cpp --- libclang tests -------------===//
8 //===----------------------------------------------------------------------===//
10 #include "clang-c/Index.h"
18 #define DEBUG_TYPE "libclang-test"
42 const char *Contents; member
45 TestVFO(const char *Contents) : Contents(Contents) { in TestVFO()
60 if (Contents) { in ~TestVFO()
65 EXPECT_STREQ(Contents, BufStr.c_str()); in ~TestVFO()
74 const char *contents = in TEST() local
81 " 'contents': [\n" in TEST()
[all …]
/external/clang/unittests/Basic/
DVirtualFileSystemTest.cpp1 //===- unittests/Basic/VirtualFileSystem.cpp ---------------- VFS tests ---===//
8 //===----------------------------------------------------------------------===//
55 return I->second; in status()
78 if (LastSep == Path.size() || LastSep == Path.size()-1) in isInPath()
88 if (isInPath(I->first)) { in DirIterImpl()
89 CurrentEntry = I->second; in DirIterImpl()
97 if (isInPath(I->first)) { in increment()
98 CurrentEntry = I->second; in increment()
142 D->addRegularFile("/foo"); in TEST()
143 Status = D->status("/foo"); in TEST()
[all …]
/external/clang/test/Index/Inputs/
Dvfsoverlay.yaml5 'contents': [
7 'external-contents': 'INPUT_DIR/module.map'
10 'external-contents': 'INPUT_DIR/module_needs_vfs.h'
13 'external-contents': 'INPUT_DIR/base_module_needs_vfs.h'
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DVirtualFileSystem.h1 //===- VirtualFileSystem.h - Virtual File System Layer ----------*- C++ -*-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
12 //===----------------------------------------------------------------------===//
101 /// Sub-classes should generally call close() inside their destructors. We
111 return Status->getName().str(); in getName()
116 /// Get the contents of the file as a \p MemoryBuffer.
118 getBuffer(const Twine &Name, int64_t FileSize = -1,
143 /// (non-recursive) contents of a directory.
148 /// to directory_entry() at end, or returns a system-defined \c error_code.
[all …]
/external/clang/lib/Basic/
DVirtualFileSystem.cpp1 //===- VirtualFileSystem.cpp - Virtual File System Layer --------*- C++ -*-===//
8 //===----------------------------------------------------------------------===//
10 //===----------------------------------------------------------------------===//
19 #include "llvm/Config/llvm-config.h"
101 return (*F)->getBuffer(Name, FileSize, RequiresNullTerminator, IsVolatile); in getBufferForFile()
117 return Status && Status->exists(); in exists()
134 //===-----------------------------------------------------------------------===/
136 //===-----------------------------------------------------------------------===/
166 assert(FD != -1 && "cannot stat closed file"); in status()
183 assert(FD != -1 && "cannot get buffer for closed file"); in getBuffer()
[all …]
/external/tensorflow/tensorflow/lite/g3doc/
D_book.yaml2 - name: "Install"
5 - include: /install/_toc.yaml
7 - name: "Learn"
11 - include: /learn/_menu_toc.yaml
15 - name: "Tutorials"
16 contents:
17 - title: "TensorFlow Lite Tutorials"
20 - heading: "Vision"
21 - title: "Recognize handwritten digits"
22 path: https://codelabs.developers.google.com/codelabs/digit-classifier-tflite/
[all …]
/external/boringssl/src/util/
Dread_symbols.go41 outFlag = flag.String("out", "-", "File to write output symbols")
42 …objFileFormat = flag.String("obj-file-format", defaultObjFileFormat(runtime.GOOS), "Object file fo…
55 // cross-compile from an unsupported platform to a supported platform by
71 …printAndExit("Usage: %s [-out OUT] [-obj-file-format FORMAT] ARCHIVE_FILE [ARCHIVE_FILE [...]]", o…
76 if *outFlag != "-" {
99 for name, contents := range objectFiles {
100 syms, err := listSymbols(contents)
120 // symbol-prefixing strategy that we cannot distinguish
160 func listSymbols(contents []byte) ([]string, error) {
163 return listSymbolsELF(contents)
[all …]
/external/clang/test/Modules/
Dcrash-vfs-run-reproducer.m1 // REQUIRES: crash-recovery, shell, system-darwin
3 // RUN: rm -rf %t
4 // RUN: mkdir -p %t/i %t/m %t
7 // RUN: %clang -fsyntax-only -nostdinc %s \
8 // RUN: -I %S/Inputs/crash-recovery/usr/include -isysroot %/t/i/ \
9 // RUN: -fmodules -fmodules-cache-path=%t/m/ 2>&1 | FileCheck %s
11 // RUN: FileCheck --check-prefix=CHECKSRC %s -input-file %t/crash-vfs-*.m
12 // RUN: FileCheck --check-prefix=CHECKSH %s -input-file %t/crash-vfs-*.sh
13 // RUN: FileCheck --check-prefix=CHECKYAML %s -input-file \
14 // RUN: %t/crash-vfs-*.cache/vfs/vfs.yaml
[all …]
Dcrash-vfs-umbrella-frameworks.m1 // REQUIRES: crash-recovery, shell
3 // FIXME: This XFAIL is cargo-culted from crash-report.c. Do we need it?
6 // RUN: rm -rf %t
7 // RUN: mkdir -p %t/i %t/m %t
8 // RUN: cp -a %S/Inputs/crash-recovery/Frameworks %t/i/
9 // RUN: mkdir -p %t/i/Frameworks/A.framework/Frameworks
10 // RUN: ln -s ../../B.framework %t/i/Frameworks/A.framework/Frameworks/B.framework
13 // RUN: %clang -nostdinc -fsyntax-only %s \
14 // RUN: -F %/t/i/Frameworks -fmodules \
15 // RUN: -fmodules-cache-path=%t/m/ 2>&1 | FileCheck %s
[all …]
Dcrash-vfs-relative-overlay.m1 // REQUIRES: crash-recovery, shell
3 // FIXME: This XFAIL is cargo-culted from crash-report.c. Do we need it?
6 // RUN: rm -rf %t
7 // RUN: mkdir -p %t/i %t/m %t
10 // RUN: %clang -fsyntax-only -nostdinc %s \
11 // RUN: -I %S/Inputs/crash-recovery/usr/include -isysroot %/t/i/ \
12 // RUN: -fmodules -fmodules-cache-path=%t/m/ 2>&1 | FileCheck %s
14 // RUN: FileCheck --check-prefix=CHECKSRC %s -input-file %t/crash-vfs-*.m
15 // RUN: FileCheck --check-prefix=CHECKSH %s -input-file %t/crash-vfs-*.sh
16 // RUN: FileCheck --check-prefix=CHECKYAML %s -input-file \
[all …]
/external/chromium-trace/catapult/common/py_vulcanize/py_vulcanize/
Dhtml_module.py2 # Use of this source code is governed by a BSD-style license that can be
15 js_resource, html_resource): # pylint: disable=unused-argument
16 return 'polymer-element' in html_resource.contents
27 parser_results = parse_html_deps.HTMLModuleParser().Parse(self.contents)
45 if 'tr.exportTo' in self.contents:
85 for contents in self._parser_results.inline_stylesheets:
88 self.loader, module_dirname, contents)
106 resource.contents
119 # External script references.
131 # External imports. Mostly the same as <script>, but we know its a module.
/external/jackson-core/docs/javadoc/2.6/com/fasterxml/jackson/core/util/
DTextBuffer.html1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dt…
2 <!-- NewPage -->
5 <!-- Generated by javadoc (version 1.7.0_67) on Thu Jul 16 17:13:17 PDT 2015 -->
6 <meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
7 <title>TextBuffer (Jackson-core 2.6.0 API)</title>
8 <meta name="date" content="2015-07-16">
12 <script type="text/javascript"><!--
13 if (location.href.indexOf('is-external=true') == -1) {
14 parent.document.title="TextBuffer (Jackson-core 2.6.0 API)";
16 //-->
[all …]
/external/jackson-core/docs/javadoc/2.7/com/fasterxml/jackson/core/util/
DTextBuffer.html1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dt…
2 <!-- NewPage -->
5 <!-- Generated by javadoc (version 1.7.0_79) on Sat Jan 09 21:52:40 PST 2016 -->
6 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7 <title>TextBuffer (Jackson-core 2.7.0 API)</title>
8 <meta name="date" content="2016-01-09">
12 <script type="text/javascript"><!--
13 if (location.href.indexOf('is-external=true') == -1) {
14 parent.document.title="TextBuffer (Jackson-core 2.7.0 API)";
16 //-->
[all …]
/external/google-breakpad/src/third_party/mac_headers/mach-o/
Dloader.h2 * Copyright (c) 1999-2010 Apple Inc. All Rights Reserved.
17 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
51 * The 32-bit mach header appears at the very beginning of the object file for
52 * 32-bit architectures.
64 /* Constant for the magic field of the mach_header (32-bit architectures) */
69 * The 64-bit mach header appears at the very beginning of object files for
70 * 64-bit architectures.
83 /* Constant for the magic field of the mach_header_64 (64-bit architectures) */
84 #define MH_MAGIC_64 0xfeedfacf /* the 64-bit mach magic number */
106 * Mach-O file.
[all …]
/external/perfetto/tools/
Dsymbolize-ui-crash8 # http://www.apache.org/licenses/LICENSE-2.0
15 """Like llvm-symbolizer for UI JS/TS sources.
26 https://android.googlesource.com/platform/external/perfetto/+/de4db33f/ui/src/foo.ts#61 at foo()
27 https://android.googlesource.com/platform/external/perfetto/+/de4db33f/ui/src/baz.ts#300 at bar()
45 GERRIT_BASE_URL = 'https://android.googlesource.com/platform/external/perfetto/'
48 normalized = re.sub('[^a-zA-Z0-9-._]', '_', url)
57 contents = resp.read().decode()
59 f.write(contents)
60 return contents
69 print('Paste the crash log and press CTRL-D\n')
[all …]
/external/jackson-core/docs/javadoc/2.2.0/com/fasterxml/jackson/core/util/
DTextBuffer.html1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dt…
2 <!-- NewPage -->
5 <!-- Generated by javadoc (version 1.7.0_10-ea) on Mon Apr 22 19:45:40 PDT 2013 -->
6 <meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
7 <title>TextBuffer (Jackson-core 2.2.0 API)</title>
8 <meta name="date" content="2013-04-22">
12 <script type="text/javascript"><!--
13 if (location.href.indexOf('is-external=true') == -1) {
14 parent.document.title="TextBuffer (Jackson-core 2.2.0 API)";
16 //-->
[all …]
/external/jackson-core/docs/javadoc/2.3/com/fasterxml/jackson/core/util/
DTextBuffer.html1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dt…
2 <!-- NewPage -->
5 <!-- Generated by javadoc (version 1.7.0_25) on Wed Nov 13 21:04:21 PST 2013 -->
6 <meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
7 <title>TextBuffer (Jackson-core 2.3.0 API)</title>
8 <meta name="date" content="2013-11-13">
12 <script type="text/javascript"><!--
13 if (location.href.indexOf('is-external=true') == -1) {
14 parent.document.title="TextBuffer (Jackson-core 2.3.0 API)";
16 //-->
[all …]
/external/jackson-core/docs/javadoc/1.9/org/codehaus/jackson/util/
DTextBuffer.html1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dt…
2 <!-- NewPage -->
5 <!-- Generated by javadoc (version 1.7.0_10-ea) on Sun Jul 14 20:03:25 PDT 2013 -->
7 <meta name="date" content="2013-07-14">
11 <script type="text/javascript"><!--
12 if (location.href.indexOf('is-external=true') == -1) {
15 //-->
20 <!-- ========= START OF TOP NAVBAR ======= -->
22 <!-- -->
23 </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
[all …]
/external/jackson-databind/docs/javadoc/1.9/org/codehaus/jackson/util/
DTextBuffer.html1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dt…
2 <!-- NewPage -->
5 <!-- Generated by javadoc (version 1.7.0_10-ea) on Sun Jul 14 20:03:25 PDT 2013 -->
7 <meta name="date" content="2013-07-14">
11 <script type="text/javascript"><!--
12 if (location.href.indexOf('is-external=true') == -1) {
15 //-->
20 <!-- ========= START OF TOP NAVBAR ======= -->
22 <!-- -->
23 </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
[all …]
/external/jackson-core/docs/javadoc/2.8/com/fasterxml/jackson/core/util/
DTextBuffer.html1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dt…
2 <!-- NewPage -->
5 <!-- Generated by javadoc (version 1.7.0_79) on Sun Jul 03 22:20:52 PDT 2016 -->
6 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7 <title>TextBuffer (Jackson-core 2.8.0 API)</title>
8 <meta name="date" content="2016-07-03">
12 <script type="text/javascript"><!--
13 if (location.href.indexOf('is-external=true') == -1) {
14 parent.document.title="TextBuffer (Jackson-core 2.8.0 API)";
16 //-->
[all …]
/external/jackson-core/docs/javadoc/2.11/com/fasterxml/jackson/core/util/
DTextBuffer.html1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dt…
2 <!-- NewPage -->
5 <!-- Generated by javadoc (1.8.0_162) on Sat Apr 25 16:56:56 PDT 2020 -->
6 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7 <title>TextBuffer (Jackson-core 2.11.0 API)</title>
8 <meta name="date" content="2020-04-25">
13 <script type="text/javascript"><!--
15 if (location.href.indexOf('is-external=true') == -1) {
16 parent.document.title="TextBuffer (Jackson-core 2.11.0 API)";
21 //-->
[all …]
/external/jackson-core/docs/javadoc/2.11.rc1/com/fasterxml/jackson/core/util/
DTextBuffer.html1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dt…
2 <!-- NewPage -->
5 <!-- Generated by javadoc (1.8.0_162) on Tue Mar 24 11:09:59 PDT 2020 -->
6 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7 <title>TextBuffer (Jackson-core 2.11.0.rc1 API)</title>
8 <meta name="date" content="2020-03-24">
13 <script type="text/javascript"><!--
15 if (location.href.indexOf('is-external=true') == -1) {
16 parent.document.title="TextBuffer (Jackson-core 2.11.0.rc1 API)";
21 //-->
[all …]
/external/jackson-core/docs/javadoc/2.10/com/fasterxml/jackson/core/util/
DTextBuffer.html1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dt…
2 <!-- NewPage -->
5 <!-- Generated by javadoc (1.8.0_162) on Wed Sep 25 19:22:23 PDT 2019 -->
6 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7 <title>TextBuffer (Jackson-core 2.10.0 API)</title>
8 <meta name="date" content="2019-09-25">
13 <script type="text/javascript"><!--
15 if (location.href.indexOf('is-external=true') == -1) {
16 parent.document.title="TextBuffer (Jackson-core 2.10.0 API)";
21 //-->
[all …]
/external/jackson-core/docs/javadoc/2.9/com/fasterxml/jackson/core/util/
DTextBuffer.html1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dt…
2 <!-- NewPage -->
5 <!-- Generated by javadoc (1.8.0_162) on Tue Jan 23 20:16:57 PST 2018 -->
6 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7 <title>TextBuffer (Jackson-core 2.9.0 API)</title>
8 <meta name="date" content="2018-01-23">
13 <script type="text/javascript"><!--
15 if (location.href.indexOf('is-external=true') == -1) {
16 parent.document.title="TextBuffer (Jackson-core 2.9.0 API)";
21 //-->
[all …]

12345678910>>...44