Home
last modified time | relevance | path

Searched full:bindings (Results 1 – 25 of 613) sorted by relevance

12345678910>>...25

/external/clang/test/Index/
Dcomment-xml-schema.c3 // RUN: xmllint --noout --relaxng %S/../../bindings/xml/comment-xml-schema.rng %S/Inputs/CommentXML…
5 // RUN: xmllint --noout --relaxng %S/../../bindings/xml/comment-xml-schema.rng %S/Inputs/CommentXML…
6 // RUN: xmllint --noout --relaxng %S/../../bindings/xml/comment-xml-schema.rng %S/Inputs/CommentXML…
7 // RUN: xmllint --noout --relaxng %S/../../bindings/xml/comment-xml-schema.rng %S/Inputs/CommentXML…
8 // RUN: xmllint --noout --relaxng %S/../../bindings/xml/comment-xml-schema.rng %S/Inputs/CommentXML…
9 // RUN: xmllint --noout --relaxng %S/../../bindings/xml/comment-xml-schema.rng %S/Inputs/CommentXML…
10 // RUN: xmllint --noout --relaxng %S/../../bindings/xml/comment-xml-schema.rng %S/Inputs/CommentXML…
11 // RUN: xmllint --noout --relaxng %S/../../bindings/xml/comment-xml-schema.rng %S/Inputs/CommentXML…
12 // RUN: xmllint --noout --relaxng %S/../../bindings/xml/comment-xml-schema.rng %S/Inputs/CommentXML…
13 // RUN: xmllint --noout --relaxng %S/../../bindings/xml/comment-xml-schema.rng %S/Inputs/CommentXML…
[all …]
/external/clang/test/Driver/
Dbindings.c2 // RUN: %clang -target i386-unknown-unknown -ccc-print-bindings -no-integrated-as %s 2>&1 | FileChe…
3 // CHECK01: "clang", inputs: ["{{.*}}bindings.c"], output: "{{.*}}.s"
9 // RUN: %clang -target i386-unknown-unknown -ccc-print-bindings -fsyntax-only %s 2>&1 | FileCheck %…
10 // CHECK05: "clang", inputs: ["{{.*}}bindings.c"], output: (nothing)
12 // RUN: %clang -target i386-unknown-unknown -ccc-print-bindings -fsyntax-only -x c++ %s 2>&1 | File…
13 // CHECK08: "clang", inputs: ["{{.*}}bindings.c"], output: (nothing)
15 // RUN: %clang -target i386-apple-darwin9 -ccc-print-bindings %s -S -arch ppc 2>&1 | FileCheck %s -…
16 // CHECK11: "clang", inputs: ["{{.*}}bindings.c"], output: "bindings.s"
18 // RUN: %clang -target powerpc-unknown-unknown -ccc-print-bindings %s -S 2>&1 | FileCheck %s --chec…
19 // CHECK12: "clang", inputs: ["{{.*}}bindings.c"], output: "bindings.s"
[all …]
Ddarwin-dsymutil.c18 // RUN: %clang -target x86_64-apple-darwin10 -ccc-print-bindings \
20 // RUN: FileCheck -check-prefix=CHECK-MULTIARCH-BINDINGS < %t %s
22 // CHECK-MULTIARCH-BINDINGS: "x86_64-apple-darwin10" - "darwin::Lipo", inputs: [{{.*}}, {{.*}}], ou…
23 // CHECK-MULTIARCH-BINDINGS: # "x86_64-apple-darwin10" - "darwin::Dsymutil", inputs: ["a.out"], out…
27 // RUN: %clang -target x86_64-apple-darwin10 -ccc-print-bindings \
37 // RUN: %clang -target x86_64-apple-darwin10 -ccc-print-bindings \
42 // RUN: %clang -target x86_64-apple-darwin10 -ccc-print-bindings \
Ddarwin-verify-debug.c11 // RUN: %clang -target x86_64-apple-darwin10 -ccc-print-bindings \
13 // RUN: FileCheck -check-prefix=CHECK-MULTIARCH-BINDINGS < %t %s
15 // CHECK-MULTIARCH-BINDINGS: # "x86_64-apple-darwin10" - "darwin::Dsymutil", inputs: ["a.out"], out…
16 // CHECK-MULTIARCH-BINDINGS: # "x86_64-apple-darwin10" - "darwin::VerifyDebug", inputs: ["a.out.dSY…
20 // RUN: %clang -target x86_64-apple-darwin10 -ccc-print-bindings \
31 // RUN: %clang -target x86_64-apple-darwin10 -ccc-print-bindings \
/external/chromium-libpac/test/
Dproxy_resolver_v8_unittest.cc20 // Javascript bindings for ProxyResolverV8, which returns mock values.
21 // Each time one of the bindings is called into, we push the input into a
85 // This is the same as ProxyResolverV8, but it uses mock bindings in place of
86 // the default bindings, and has a helper function to load PAC scripts from
243 MockJSBindings* bindings = resolver.mock_js_bindings(); in TEST() local
244 EXPECT_EQ(0U, bindings->alerts.size()); in TEST()
245 ASSERT_EQ(1U, bindings->errors.size()); in TEST()
247 bindings->errors[0]); in TEST()
272 MockJSBindings* bindings = resolver.mock_js_bindings(); in TEST() local
273 EXPECT_EQ(0U, bindings->alerts.size()); in TEST()
[all …]
/external/deqp/modules/glshared/
DglsAttributeLocationTests.cpp66 deInt32 getBoundLocation (const map<string, deUint32>& bindings, const string& attrib) in getBoundLocation() argument
68 std::map<string, deUint32>::const_iterator iter = bindings.find(attrib); in getBoundLocation()
70 return (iter == bindings.end() ? (deInt32)Attribute::LOC_UNDEF : iter->second); in getBoundLocation()
73 …l hasAttributeAliasing (const vector<Attribute>& attributes, const map<string, deUint32>& bindings) in hasAttributeAliasing() argument
79 const deInt32 location = getBoundLocation(bindings, attributes[attribNdx].getName()); in hasAttributeAliasing()
602 …& gl, deUint32 program, const vector<Attribute>& attributes, const map<string, deUint32>& bindings) in checkAttribLocationQuery() argument
609 …!= Attribute::LOC_UNDEF ? attrib.getLayoutLocation() : getBoundLocation(bindings, attrib.getName()… in checkAttribLocationQuery()
631 …& gl, deUint32 program, const vector<Attribute>& attributes, const map<string, deUint32>& bindings) in checkQuery() argument
635 if (!checkAttribLocationQuery(log, gl, program, attributes, bindings)) in checkQuery()
820 vector<Bind> bindings; in iterate() local
[all …]
/external/clang/docs/analyzer/
DRegionStore.txt6 RegionStoreManager. This store records bindings to memory regions using a "base
35 else, but we do have to be conservative about all other bindings within `foo`.
44 concrete offset invalidates any symbolic offset bindings whose concrete offset
74 variable. Thus it is not valid to assume that all bindings with non-symbolic
85 need to throw away not just all bindings within the region itself, but within
95 all live bindings in the store (in order to throw away the dead ones). The name
96 "ClusterAnalysis" predates the cluster-based organization of bindings, but
98 bindings within a cluster must be treated in the same way for a conservative
102 Default Bindings
105 Most bindings in RegionStore are simple scalar values -- integers and pointers.
[all …]
/external/libxml2/doc/
Dpython.html10bindings</title></head><body bgcolor="#8b7765" text="#000000" link="#a06060" vlink="#000000"><tabl…
11 … contact the <a href="http://mail.gnome.org/mailman/listinfo/xml-bindings">xml-bindings@gnome.org<…
12 (<a href="http://mail.gnome.org/archives/xml-bindings/">archives</a>) in
14 or libxslt wrappers or bindings:</p><ul>
16 …most up-to-date C++ bindings for libxml2, check the <a href="http://libxmlplusplus.sourceforge.net…
19 based on the gdome2 bindings</a> maintained by Tobias Peters.</li>
24 bindings</a> are available on CPAN, as well as XML::LibXSLT
26 bindings</a>.</li>
28 Libxml2 Perl bindings.</li>
32 C# libxml2 bindings.</li>
[all …]
DDOM.html10bindings</a></li><li><a href="architecture.html">libxml2 architecture</a></li><li><a href="tree.ht…
Darchitecture.html10bindings</a></li><li><a href="architecture.html">libxml2 architecture</a></li><li><a href="tree.ht…
Dhelp.html10bindings</a></li><li><a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl bindings</a></li><li>…
DXSLT.html10bindings</a></li><li><a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl bindings</a></li><li>…
Dcontribs.html10bindings</a></li><li><a href="http://cpan.uwinnipeg.ca/dist/XML-LibXML">Perl bindings</a></li><li>…
38bindings for libxml2 and libxslt</a>, as well as <a href="http://tclxml.sf.net/tkxmllint.html">tkx…
Dtree.html10bindings</a></li><li><a href="architecture.html">libxml2 architecture</a></li><li><a href="tree.ht…
/external/llvm/bindings/go/
DREADME.txt1 This directory contains LLVM bindings for the Go programming language
10 Using the bindings
13 The package path "llvm.org/llvm/bindings/go/llvm" can be used to
15 "llvm.org/llvm.v36/bindings/go/llvm" refer to released versions of LLVM.
25 it to be used by the bindings. If you receive an error message from "go build"
29 #include <llvm-c/Analysis.h> // If you are getting an error here read bindings/go/README.txt
37 $ $GOPATH/src/llvm.org/llvm/bindings/go/build.sh
42 …$ $GOPATH/src/llvm.org/llvm/bindings/go/build.sh -DCMAKE_BUILD_TYPE=Debug -DLLVM_TARGETS_TO_BUILD=…
/external/libcap-ng/libcap-ng-0.7/
Dconfigure.ac109 AC_MSG_WARN("Swig not found - python bindings will not be made")
113 AC_MSG_CHECKING(whether to create python bindings)
115 AS_HELP_STRING([--with-python],[enable building python bindings]),
126 AC_MSG_NOTICE(Python bindings will be built)
132 AC_MSG_WARN("Python headers not found - python bindings will not be made")
139 bindings/Makefile bindings/python/Makefile
140 bindings/python/test/Makefile utils/Makefile
/external/v8/test/mjsunit/harmony/
Dblock-conflicts.js30 // Test for conflicting variable bindings.
118 // Test conflicting let/var bindings.
133 // Test conflicting let/let bindings.
146 // Test conflicting function/let bindings.
158 // Test conflicting parameter/let bindings.
162 // Test conflicting function/var bindings.
176 // Test conflicting catch/var bindings.
181 // Test conflicting parameter/var bindings.
186 // Test conflicting catch/function bindings.
189 // Test conflicting parameter/function bindings.
/external/skia/site/user/special/
Dlua.md1 Skia Lua Bindings
12 your system in order to use the bindings.
28 …which enables a build of another shared library called 'skia.so' that exposes Skia bindings to Lua.
47 The key part to loading the bindings is `require 'skia'` which tells lua to look
49 bindings. 'skia.so' in turn will load 'libskia.so' from the current directory or
/external/parameter-framework/bindings/python/
DREADME.md1 # Python bindings
3 These are bindings on the `CParameterMgrFullConnector` class, its inner
11 The bindings are defined unsing SWIG in the `pfw.i` file and the actual source
22 Python bindings, the `CParameterMgrFullConnector` class is renamed
/external/deqp/framework/opengl/
DgluDrawUtil.cpp113 …onst RenderContext& context, int numBindings, const VertexArrayBinding* bindings, Type type = TYPE…
218 //! Lower named bindings to locations and eliminate bindings that are not used by program.
339 …ffer (const RenderContext& context, int numBindings, const VertexArrayBinding* bindings, Type type) in VertexBuffer() argument
346 if (!areVertexArrayLocationsValid(bindings, bindings+numBindings)) in VertexBuffer()
350 computeNonStridedBufferLayout(layout, bindings, bindings+numBindings); in VertexBuffer()
356 srcPtrs[ndx] = bindings[ndx].pointer; in VertexBuffer()
432 …oid disableVertexArrays (const glw::Functions& gl, const std::vector<VertexArrayBinding>& bindings) in disableVertexArrays() argument
434 …for (std::vector<VertexArrayBinding>::const_iterator vaIter = bindings.begin(); vaIter != bindings in disableVertexArrays()
503 // Lower bindings to locations. in drawFromUserPointers()
535 // Lower bindings to locations. in drawFromBuffers()
/external/llvm/bindings/go/llvm/
DInstrumentationBindings.h1 //===- InstrumentationBindings.h - instrumentation bindings -----*- C++ -*-===//
10 // This file defines C bindings for the Transforms/Instrumentation component.
23 // FIXME: These bindings shouldn't be Go-specific and should eventually move to
24 // a (somewhat) less stable collection of C APIs for use in creating bindings of
/external/clang/lib/ASTMatchers/
DASTMatchersInternal.cpp44 if (Bindings.empty()) in visitMatches()
45 Bindings.push_back(BoundNodesMap()); in visitMatches()
46 for (BoundNodesMap &Binding : Bindings) { in visitMatches()
188 // Delete all bindings when a matcher does not match. in matches()
202 // Delete all bindings when a matcher does not match. in matchesNoKindCheck()
228 Bindings.append(Other.Bindings.begin(), Other.Bindings.end()); in addMatch()
/external/llvm/cmake/
Dconfig-ix.cmake512 message(STATUS "Go bindings disabled.")
516 message(STATUS "Go bindings disabled.")
518 execute_process(COMMAND ${GO_EXECUTABLE} run ${CMAKE_SOURCE_DIR}/bindings/go/conftest.go
522 message(STATUS "Go bindings enabled.")
524 message(STATUS "Go bindings disabled, need at least Go 1.2.")
542 message(STATUS "OCaml bindings disabled.")
546 message(STATUS "OCaml bindings disabled.")
549 message(STATUS "OCaml bindings disabled, need OCaml >=4.00.0.")
553 message(STATUS "OCaml bindings enabled.")
557 message(STATUS "OCaml bindings disabled, need ctypes >=0.3.")
/external/clang/lib/StaticAnalyzer/Core/
DEnvironment.cpp139 // - Remove subexpression bindings.
140 // - Remove dead block expression bindings.
141 // - Keep live block expression bindings:
151 // individually removing all the subexpression bindings (which will greatly in removeDeadBindings()
152 // outnumber block-level expression bindings). in removeDeadBindings()
162 // Iterate over the block-expr bindings. in removeDeadBindings()
/external/clang/bindings/python/clang/
D__init__.py1 #===- __init__.py - Clang Python Bindings --------------------*- python -*--===#
11 Clang Library Bindings
20 Bindings for the Clang indexing library.

12345678910>>...25