Home
last modified time | relevance | path

Searched +full:node +full:- +full:version (Results 1 – 25 of 1150) sorted by relevance

12345678910>>...46

/external/dtc/Documentation/
Dmanual.txt4 I - "dtc", the device tree compiler
14 II - The DT block format
21 III - libfdt
23 IV - Utility Tools
24 1) convert-dtsv0 -- Conversion to Version 1
28 I - "dtc", the device tree compiler
49 and CCed to <devicetree-compiler@vger.kernel.org>.
53 The Device Tree Compiler, dtc, takes as input a device-tree in
54 a given format and outputs a device-tree in another format.
60 - "dtb": "blob" format. A flattened device-tree block with
[all …]
/external/autotest/utils/
Drun_pylint.py8 # name: "infra/python/wheels/configparser-py2_py3"
9 # version: "version:3.5.0"
12 # name: "infra/python/wheels/futures-py2_py3"
13 # version: "version:3.1.1"
16 # name: "infra/python/wheels/isort-py2_py3"
17 # version: "version:4.3.4"
21 # version: "version:1.10.11"
24 # name: "infra/python/wheels/backports_functools_lru_cache-py2_py3"
25 # version: "version:1.5"
28 # name: "infra/python/wheels/lazy-object-proxy/${vpython_platform}"
[all …]
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DDTMNodeProxy.java6 * to you under the Apache License, Version 2.0 (the "License");
10 * http://www.apache.org/licenses/LICENSE-2.0
19 * $Id: DTMNodeProxy.java 889881 2009-12-12 03:47:15Z zongaro $
40 import org.w3c.dom.Node;
50 * <code>DTMNodeProxy</code> presents a DOM Node API front-end to the DTM model.
52 * It does _not_ attempt to address the "node identity" question; no effort
54 * DTM node. Users can create a mechanism for managing this, or relinquish the
58 * DTMNodeProxy may be subclassed further to present specific DOM node types.
64 implements Node, Document, Text, Element, Attr,
68 /** The DTM for this node. */
[all …]
/external/pdfium/core/fpdfdoc/
Dcpdf_metadata_unittest.cpp2 // Use of this source code is governed by a BSD-style license that can be
12 "<?xml charset=\"utf-8\"?>\n" in TEST()
13 "<node xmlns:adhocwf=\"http://ns.adobe.com/AcrobatAdhocWorkflow/1.0/\">\n" in TEST()
15 "<adhocwf:version>1.1</adhocwf:version>\n" in TEST()
16 "</node>"; in TEST()
19 stream->SetData(ByteStringView(data).raw_span()); in TEST()
29 "<?xml charset=\"utf-8\"?>\n" in TEST()
30 "<node xmlns:adhocwf=\"http://ns.adobe.com/AcrobatAdhocWorkflow/1.0/\">\n" in TEST()
32 "<adhocwf:version>1.1</adhocwf:version>\n" in TEST()
33 "</node>"; in TEST()
[all …]
/external/kmod/libkmod/
Dlibkmod-index.c2 * libkmod - interface to kernel module operations
4 * Copyright (C) 2011-2013 ProFUSION embedded systems
9 * version 2.1 of the License, or (at your option) any later version.
33 #include "libkmod-internal.h"
34 #include "libkmod-index.h"
36 /* libkmod-index.c: module index file implementation
44 * We use a version string to keep track of changes to the binary format
65 * uint32_t version = INDEX_VERSION;
74 * uint32_t children[last - first + 1];
83 * Empty prefixes are omitted, leaf nodes omit the three child-related fields.
[all …]
/external/ktfmt/website/
Dpackage-lock.json8 "clean-css": "^5.1.1",
9 "event-stream": "4.0.1",
11 "monaco-editor": "^0.23.0",
18 "version": "2.0.5", string
19 "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.5.tgz",
20 …"integrity": "sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6e…
24 "version": "6.4.2", string
25 "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.2.tgz",
26 …"integrity": "sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7…
32 "node": ">=0.4.0" string
[all …]
/external/python/cpython2/Lib/xml/dom/
Dminidom.py24 # This is used by the ID-cache invalidation checks; the list isn't
26 # DOCUMENT_NODE or DOCUMENT_FRAGMENT_NODE. (The node being checked is
27 # the node being added or removed, not the node being modified.)
29 _nodeTypes_with_children = (xml.dom.Node.ELEMENT_NODE,
30 xml.dom.Node.ENTITY_REFERENCE_NODE)
33 class Node(xml.dom.Node): class
34 namespaceURI = None # this is non-null only for elements and attributes
40 prefix = EMPTY_PREFIX # non-null only for NS elements and attributes
56 if self.nodeType == Node.DOCUMENT_NODE:
78 return self.childNodes[-1]
[all …]
/external/tensorflow/tensorflow/lite/delegates/coreml/
Dcoreml_delegate.mm3 Licensed under the Apache License, Version 2.0 (the "License");
7 http://www.apache.org/licenses/LICENSE-2.0
38 bool IsNodeSupportedByDelegate(const TfLiteRegistration* registration, const TfLiteNode* node,
45 // For most ops, only version 1 is supported.
46 if (registration->version > 1) {
47 switch (registration->builtin_code) {
49 if (registration->version > 2) return false;
51 // FullyConnected without bias is supported starting from version 6.
53 if (registration->version > 6) return false;
60 // The model should not be full-integer quantized. For ops supported by Core ML delegate,
[all …]
/external/python/cpython3/Lib/xml/dom/
Dminidom.py25 # This is used by the ID-cache invalidation checks; the list isn't
27 # DOCUMENT_NODE or DOCUMENT_FRAGMENT_NODE. (The node being checked is
28 # the node being added or removed, not the node being modified.)
30 _nodeTypes_with_children = (xml.dom.Node.ELEMENT_NODE,
31 xml.dom.Node.ENTITY_REFERENCE_NODE)
34 class Node(xml.dom.Node): class
35 namespaceURI = None # this is non-null only for elements and attributes
41 prefix = EMPTY_PREFIX # non-null only for NS elements and attributes
58 if self.nodeType == Node.DOCUMENT_NODE:
80 return self.childNodes[-1]
[all …]
/external/mesa3d/src/compiler/glsl/glcpp/
Dglcpp-parse.y133 /* Perform macro expansion in-place on the given list. */
154 _glcpp_parser_handle_version_declaration(glcpp_parser_t *parser, intmax_t version,
176 %pure-parser
177 %error-verbose
180 %initial-action {
188 %parse-param {glcpp_parser_t *parser}
189 %lex-param {glcpp_parser_t *parser}
194 * HASH, DEFINE, and VERSION) to avoid conflicts with other symbols,
212 %left '+' '-'
230 _mesa_string_buffer_append_char(parser->output, '\n');
[all …]
/external/tensorflow/tensorflow/lite/delegates/hexagon/
Dutils.cc3 Licensed under the Apache License, Version 2.0 (the "License");
7 http://www.apache.org/licenses/LICENSE-2.0
34 const auto& tensor = context->tensors[tensor_id]; in TensorTypeMatch()
41 const TfLiteNode* node, TfLiteContext* context, in InputsWithCorrectTypes() argument
43 if (node->inputs->size != per_input_possible_types.size()) return false; in InputsWithCorrectTypes()
46 if (node->inputs->data[i] == -1) continue; in InputsWithCorrectTypes()
49 if (TensorTypeMatch(node->inputs->data[i], context, possible_type)) { in InputsWithCorrectTypes()
64 if (dims->size > 4) return kTfLiteError; in Get4DShape()
67 for (int i = 4 - dims->size; i < 4; ++i) { in Get4DShape()
68 *dim[i] = dims->data[i - (4 - dims->size)]; in Get4DShape()
[all …]
/external/tensorflow/tensorflow/lite/delegates/nnapi/
Dnnapi_delegate.cc3 Licensed under the Apache License, Version 2.0 (the "License");
7 http://www.apache.org/licenses/LICENSE-2.0
155 (p_tensor)->name ? (p_tensor)->name : "no-name"); \
259 const TfLiteNode* node) { in NeedInt8Conversion() argument
260 const int input_id = node->inputs->data[0]; in NeedInt8Conversion()
261 const TfLiteType input_type = context->tensors[input_id].type; in NeedInt8Conversion()
267 const int weights_id = node->inputs->data[1]; in NeedInt8Conversion()
268 const auto& weights_tensor = context->tensors[weights_id]; in NeedInt8Conversion()
281 const TfLiteType input_type = context->tensors[input_id].type; in NeedInt8Conversion()
288 const auto value_type = context->tensors[node->inputs->data[1]].type; in NeedInt8Conversion()
[all …]
/external/skia/infra/bots/gen_tasks_logic/
Dcompile_cas.go2 // Use of this source code is governed by a BSD-style license that can be
46 ".clang-format",
47 ".clang-tidy",
49 "bin/activate-emsdk",
50 "bin/fetch-clang-format",
51 "bin/fetch-gn",
53 "infra/bots/assets/android_ndk_darwin/VERSION",
54 "infra/bots/assets/android_ndk_linux/VERSION",
55 "infra/bots/assets/android_ndk_windows/VERSION",
56 "infra/bots/assets/cast_toolchain/VERSION",
[all …]
/external/selinux/libsemanage/man/man3/
Dsemanage_node.34 semanage_node \- SELinux Network Nodes Management API
14 This object contains properties associated with a network node.
24 create a node
29 release resources for this node
34 create a key, which can be used to identify a node
39 release resources for this node key
44 create a key matching this node
49 create an identical node (deep-copy clone)
54 compare this node to the provided key
59 compare this node to another
[all …]
/external/angle/third_party/abseil-cpp/absl/synchronization/internal/
Dgraphcycles.cc3 // Licensed under the Apache License, Version 2.0 (the "License");
7 // https://www.apache.org/licenses/LICENSE-2.0
25 // (1) Maintain a rank for each node that is consistent
28 // (2) When a new edge (x->y) is inserted, do nothing if rank[x] < rank[y].
32 // This file is a no-op if the required LowLevelAlloc support is missing.
91 const T& back() const { return ptr_[size_-1]; } in back()
92 void pop_back() { size_--; } in pop_back()
114 if (src->ptr_ == src->space_) { in MoveFrom()
116 resize(src->size_); in MoveFrom()
117 std::copy(src->ptr_, src->ptr_ + src->size_, ptr_); in MoveFrom()
[all …]
/external/openscreen/third_party/abseil/src/absl/synchronization/internal/
Dgraphcycles.cc3 // Licensed under the Apache License, Version 2.0 (the "License");
7 // https://www.apache.org/licenses/LICENSE-2.0
25 // (1) Maintain a rank for each node that is consistent
28 // (2) When a new edge (x->y) is inserted, do nothing if rank[x] < rank[y].
32 // This file is a no-op if the required LowLevelAlloc support is missing.
91 const T& back() const { return ptr_[size_-1]; } in back()
92 void pop_back() { size_--; } in pop_back()
114 if (src->ptr_ == src->space_) { in MoveFrom()
116 resize(src->size_); in MoveFrom()
117 std::copy(src->ptr_, src->ptr_ + src->size_, ptr_); in MoveFrom()
[all …]
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/synchronization/internal/
Dgraphcycles.cc3 // Licensed under the Apache License, Version 2.0 (the "License");
7 // https://www.apache.org/licenses/LICENSE-2.0
25 // (1) Maintain a rank for each node that is consistent
28 // (2) When a new edge (x->y) is inserted, do nothing if rank[x] < rank[y].
32 // This file is a no-op if the required LowLevelAlloc support is missing.
91 const T& back() const { return ptr_[size_-1]; } in back()
92 void pop_back() { size_--; } in pop_back()
114 if (src->ptr_ == src->space_) { in MoveFrom()
116 resize(src->size_); in MoveFrom()
117 std::copy(src->ptr_, src->ptr_ + src->size_, ptr_); in MoveFrom()
[all …]
/external/webrtc/third_party/abseil-cpp/absl/synchronization/internal/
Dgraphcycles.cc3 // Licensed under the Apache License, Version 2.0 (the "License");
7 // https://www.apache.org/licenses/LICENSE-2.0
25 // (1) Maintain a rank for each node that is consistent
28 // (2) When a new edge (x->y) is inserted, do nothing if rank[x] < rank[y].
32 // This file is a no-op if the required LowLevelAlloc support is missing.
91 const T& back() const { return ptr_[size_-1]; } in back()
92 void pop_back() { size_--; } in pop_back()
114 if (src->ptr_ == src->space_) { in MoveFrom()
116 resize(src->size_); in MoveFrom()
117 std::copy(src->ptr_, src->ptr_ + src->size_, ptr_); in MoveFrom()
[all …]
/external/abseil-cpp/absl/synchronization/internal/
Dgraphcycles.cc3 // Licensed under the Apache License, Version 2.0 (the "License");
7 // https://www.apache.org/licenses/LICENSE-2.0
25 // (1) Maintain a rank for each node that is consistent
28 // (2) When a new edge (x->y) is inserted, do nothing if rank[x] < rank[y].
32 // This file is a no-op if the required LowLevelAlloc support is missing.
91 const T& back() const { return ptr_[size_-1]; } in back()
92 void pop_back() { size_--; } in pop_back()
114 if (src->ptr_ == src->space_) { in MoveFrom()
116 resize(src->size_); in MoveFrom()
117 std::copy(src->ptr_, src->ptr_ + src->size_, ptr_); in MoveFrom()
[all …]
/external/libtextclassifier/abseil-cpp/absl/synchronization/internal/
Dgraphcycles.cc3 // Licensed under the Apache License, Version 2.0 (the "License");
7 // https://www.apache.org/licenses/LICENSE-2.0
25 // (1) Maintain a rank for each node that is consistent
28 // (2) When a new edge (x->y) is inserted, do nothing if rank[x] < rank[y].
32 // This file is a no-op if the required LowLevelAlloc support is missing.
90 const T& back() const { return ptr_[size_-1]; } in back()
91 void pop_back() { size_--; } in pop_back()
113 if (src->ptr_ == src->space_) { in MoveFrom()
115 resize(src->size_); in MoveFrom()
116 std::copy(src->ptr_, src->ptr_ + src->size_, ptr_); in MoveFrom()
[all …]
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/dom2dtm/
DDOM2DTMdefaultNamespaceDeclarationNode.java6 * to you under the Apache License, Version 2.0 (the "License");
10 * http://www.apache.org/licenses/LICENSE-2.0
19 * $Id: DOM2DTMdefaultNamespaceDeclarationNode.java 468653 2006-10-28 07:07:05Z minchau $
30 import org.w3c.dom.Node;
37 * DOM2DTM model. Basically, it creates a proxy node in DOM space to
49 * %REVIEW% An alternative solution would be to create the node _only_
77 public boolean isSupported(String feature, String version) {return false;} in isSupported() argument
80 public Node getParentNode() {return null;} in getParentNode()
81 public Node getFirstChild() {return null;} in getFirstChild()
82 public Node getLastChild() {return null;} in getLastChild()
[all …]
/external/skia/modules/canvaskit/
Dpackage-lock.json2 "name": "canvaskit-local",
3 "version": "0.0.0", string
8 "name": "canvaskit-local",
9 "version": "0.0.0", string
10 "license": "BSD-3-Clause",
12 "is-docker": "~1.1.0",
13 "jasmine-core": "~3.6.0",
15 "karma-chrome-launcher": "~3.1.0",
16 "karma-coverage": "~2.0.3",
17 "karma-jasmine": "~4.0.1",
[all …]
/external/cldr/tools/scripts/tr-archive/
Dpackage-lock.json2 "name": "tr-archive",
3 "version": "1.0.0", string
8 "name": "tr-archive",
9 "version": "1.0.0", string
10 "license": "Unicode-DFS-2016",
19 "version": "2.0.5", string
20 "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.5.tgz",
21 …"integrity": "sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6e…
24 "version": "8.1.0", string
25 "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.1.0.tgz",
[all …]
/external/OpenCL-CTS/test_conformance/SVM/
Dmain.cpp4 // Licensed under the Apache License, Version 2.0 (the "License");
8 // http://www.apache.org/licenses/LICENSE-2.0
38 return -1; in AtomicLoadExplicit()
50 return -1; in AtomicFetchAddExplicit()
62 return -1; in AtomicExchangeExplicit()
68 "typedef struct Node {\n"
71 " __global struct Node* pNext;\n"
72 "} Node;\n"
74 // The allocation_index parameter must be initialized on the host to N work-items
76 …"__kernel void create_linked_lists(__global Node* pNodes, volatile __attribute__((nosvm)) __global…
[all …]
/external/skia/experimental/tskit/
Dpackage-lock.json3 "version": "0.0.0", string
8 "version": "0.0.0", string
9 "license": "BSD-3-Clause",
11 "@typescript-eslint/eslint-plugin": "^4.21.0",
12 "@typescript-eslint/parser": "^4.21.0",
14 "eslint-config-airbnb-typescript": "^12.3.1",
15 "eslint-plugin-import": "^2.22.1",
19 "node_modules/@babel/code-frame": {
20 "version": "7.12.11", string
21 "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz",
[all …]

12345678910>>...46