/external/deqp/external/vulkancts/framework/vulkan/generated/vulkan/ |
D | vkCoreFunctionalities.inl | 18 void initApisMap (ApisMap& apis) argument 20 apis.clear(); 21 apis.insert(::std::pair<uint32_t, FunctionInfosList>(VK_API_VERSION_1_0, FunctionInfosList())); 22 apis.insert(::std::pair<uint32_t, FunctionInfosList>(VK_API_VERSION_1_1, FunctionInfosList())); 23 apis.insert(::std::pair<uint32_t, FunctionInfosList>(VK_API_VERSION_1_2, FunctionInfosList())); 24 apis.insert(::std::pair<uint32_t, FunctionInfosList>(VK_API_VERSION_1_3, FunctionInfosList())); 26 …apis[VK_API_VERSION_1_0].push_back(FunctionInfo("vkCreateInstance", FUNCTIONORIGIN_PLATFOR… 27 …apis[VK_API_VERSION_1_0].push_back(FunctionInfo("vkDestroyInstance", FUNCTIONORIGIN_INSTANC… 28 …apis[VK_API_VERSION_1_0].push_back(FunctionInfo("vkEnumeratePhysicalDevices", FUNCTIONORIGIN_… 29 …apis[VK_API_VERSION_1_0].push_back(FunctionInfo("vkGetPhysicalDeviceFeatures", FUNCTIONORIGIN… [all …]
|
/external/deqp/external/vulkancts/framework/vulkan/generated/vulkansc/ |
D | vkCoreFunctionalities.inl | 18 void initApisMap (ApisMap& apis) argument 20 apis.clear(); 21 apis.insert(::std::pair<uint32_t, FunctionInfosList>(VK_API_VERSION_1_0, FunctionInfosList())); 22 apis.insert(::std::pair<uint32_t, FunctionInfosList>(VK_API_VERSION_1_1, FunctionInfosList())); 23 apis.insert(::std::pair<uint32_t, FunctionInfosList>(VK_API_VERSION_1_2, FunctionInfosList())); 24 apis.insert(::std::pair<uint32_t, FunctionInfosList>(VKSC_API_VERSION_1_0, FunctionInfosList())); 26 …apis[VK_API_VERSION_1_0].push_back(FunctionInfo("vkCreateInstance", FUNCTIONORIGIN_PLATFORM)… 27 …apis[VK_API_VERSION_1_0].push_back(FunctionInfo("vkDestroyInstance", FUNCTIONORIGIN_INSTANCE)… 28 …apis[VK_API_VERSION_1_0].push_back(FunctionInfo("vkEnumeratePhysicalDevices", FUNCTIONORIGIN_IN… 29 …apis[VK_API_VERSION_1_0].push_back(FunctionInfo("vkGetPhysicalDeviceFeatures", FUNCTIONORIGIN_I… [all …]
|
/external/OpenCL-CTS/dependencies/ocl-stubs/ |
D | apis_generator.py | 107 apis = [] 114 apis.append( 124 apis.append( 130 return apis 133 def generate_apis(apis): argument 139 for api in apis: 149 apis = [] 158 apis = apis + extract_apis(lines) 160 generate_apis(apis)
|
/external/tensorflow/tensorflow/python/util/ |
D | module_wrapper_test.py | 71 apis = {'cmd': ('', 'cmd'), 'ABCMeta': ('abc', 'ABCMeta')} 73 module, 'test', public_apis=apis, deprecation=False) 87 apis = {'cmd': ('', 'cmd')} 89 module, 'test', public_apis=apis, deprecation=False) 104 apis = {'cmd': ('', 'cmd')} 106 module, 'test', public_apis=apis, deprecation=False) 121 apis = {'cmd': ('', 'cmd')} 123 module, 'test', public_apis=apis, deprecation=False) 132 apis = {'lite': ('', 'cmd')} 136 module, 'test', public_apis=apis, deprecation=False, has_lite=True) [all …]
|
/external/mesa3d/bin/ |
D | khronos-update.py | 203 if args.apis and 'khr' not in args.apis and depend_on_khr.intersection(set(args.apis)): 204 args.apis = ['khr'] + args.apis 207 if args.apis and group['api'] not in args.apis:
|
/external/rust/cxx/gen/src/ |
D | mod.rs | 137 let ref mut apis = Vec::new(); in generate() 154 apis.extend(syntax::parse_items( in generate() 163 cfg::strip(errors, cfg_errors, opt.cfg_evaluator.as_ref(), apis); in generate() 166 let ref types = Types::collect(errors, apis); in generate() 167 check::precheck(errors, apis, opt); in generate() 171 check::typecheck(errors, apis, types, generator); in generate() 179 header = write::gen(apis, types, opt, true); in generate() 182 implementation = write::gen(apis, types, opt, false); in generate()
|
D | nested.rs | 11 pub fn new(apis: Vec<&'a Api>) -> Self { in new() 12 sort_by_inner_namespace(apis, 0) in new() 24 fn sort_by_inner_namespace(apis: Vec<&Api>, depth: usize) -> NamespaceEntries { in sort_by_inner_namespace() 29 for api in &apis { in sort_by_inner_namespace() 45 .map(|(k, apis)| (k, sort_by_inner_namespace(apis, depth + 1))) in sort_by_inner_namespace() 65 let apis = &[ in test_ns_entries_sort() localVariable 78 let root = NamespaceEntries::new(Vec::from_iter(apis)); in test_ns_entries_sort()
|
D | check.rs | 9 pub(super) fn precheck(cx: &mut Errors, apis: &[Api], opt: &Opt) { in precheck() 11 check_dot_includes(cx, apis); in precheck() 15 fn check_dot_includes(cx: &mut Errors, apis: &[Api]) { in check_dot_includes() 16 for api in apis { in check_dot_includes()
|
/external/libwebsockets/minimal-examples/crypto/ |
D | README.md | 3 minimal-crypto-jwe|Examples for lws RFC7516 JWE apis 4 minimal-crypto-jwk|Examples for lws RFC7517 JWK apis 5 minimal-crypto-jws|Examples for lws RFC7515 JWS apis 6 minimal-crypto-x509|Examples for lws X.509 apis
|
/external/deqp/modules/egl/ |
D | teglSurfacelessContextTests.cpp | 90 } apis[] = in executeForConfig() local 102 for (int apiNdx = 0; apiNdx < (int)DE_LENGTH_OF_ARRAY(apis); apiNdx++) in executeForConfig() 104 if ((apiBits & apis[apiNdx].apiBit) == 0) in executeForConfig() 107 …log << TestLog::Message << "Creating " << apis[apiNdx].name << " context with config ID " << id <<… in executeForConfig() 109 EGLU_CHECK_CALL(egl, bindAPI(apis[apiNdx].api)); in executeForConfig() 111 …eglu::UniqueContext context(egl, display, egl.createContext(display, config, EGL_NO_CONTEXT, apis[… in executeForConfig()
|
/external/angle/scripts/ |
D | generate_entry_points.py | 14 from registry_xml import apis, script_relative, strip_api_prefix, api_enums 1570 return api == apis.GLES and cmd_name in ALIASING_EXCEPTIONS 1598 if api == apis.CL: 1604 if api == apis.CL: 1606 if api == apis.GLES: 1612 if api == apis.EGL: 1614 elif api == apis.CL: 1621 if api == apis.CL: 1623 elif api == apis.EGL: 1832 if api == apis.EGL: [all …]
|
D | registry_xml.py | 434 class apis: class 443 api_enums = {apis.GL: 'BigGLEnum', apis.GLES: 'GLESEnum'} 556 def AddExtensionCommands(self, supported_extensions, apis): argument 577 if 'api' in require.attrib and require.attrib['api'] not in apis: 624 if api == apis.WGL:
|
/external/tensorflow/tensorflow/lite/objc/ |
D | TensorFlowLiteObjC.podspec | 29 '"${PODS_TARGET_SRCROOT}/' + objc_dir + 'apis"', 40 core.public_header_files = objc_dir + 'apis/*.h' 42 objc_dir + '{apis,sources}/*.{h,m,mm}', 51 objc_dir + '{apis,sources}/TFL{Metal,CoreML}Delegate.{h,m}', 68 objc_dir + '{apis,sources}/TFLCoreMLDelegate.{h,m}', 84 objc_dir + '{apis,sources}/TFLMetalDelegate.{h,m}',
|
D | TensorFlowLiteObjC.podspec.template | 29 '"${PODS_TARGET_SRCROOT}/' + objc_dir + 'apis"', 42 core.public_header_files = objc_dir + 'apis/*.h' 44 objc_dir + '{apis,sources}/*.{h,m,mm}', 53 objc_dir + '{apis,sources}/TFL{Metal,CoreML}Delegate.{h,m}', 70 objc_dir + '{apis,sources}/TFLCoreMLDelegate.{h,m}', 86 objc_dir + '{apis,sources}/TFLMetalDelegate.{h,m}',
|
/external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/ |
D | DeprecatedAPIChecker.java | 275 private static APIInfo findClassInfo(Set<APIInfo> apis, String cls) { in findClassInfo() argument 276 for (APIInfo api : apis) { in findClassInfo() 285 private static APIInfo findFieldInfo(Set<APIInfo> apis, String cls, String field) { in findFieldInfo() argument 286 for (APIInfo api : apis) { in findFieldInfo() 295 private static APIInfo findConstructorInfo(Set<APIInfo> apis, String cls, List<String> params) { in findConstructorInfo() argument 296 for (APIInfo api : apis) { in findConstructorInfo() 318 …private static APIInfo findMethodInfo(Set<APIInfo> apis, String cls, String method, List<String> p… in findMethodInfo() argument 319 for (APIInfo api : apis) { in findMethodInfo() 341 private static APIInfo findEnumInfo(Set<APIInfo> apis, String ecls) { in findEnumInfo() argument 342 for (APIInfo api : apis) { in findEnumInfo() [all …]
|
/external/tflite-support/tensorflow_lite_support/ios/ |
D | TensorFlowLiteTaskText.podspec.template | 20 objc_dir + 'apis/*.h', 27 objc_dir + 'apis/*.h', 30 s.module_map = objc_dir + 'apis/framework.modulemap' 36 '"${PODS_TARGET_SRCROOT}/' + objc_dir + 'apis" ' +
|
/external/gfxstream-protocols/registry/vulkan/scripts/cereal/ |
D | dispatch.py | 257 apis = \ 264 for vulkanApi, typeDecl, feature in apis: 282 apis = \ 288 for vulkanApi, typeDecl, feature in apis: 307 apis = \ 313 for vulkanApi, typeDecl, feature in apis: 330 def emit_feature_check_impl(context, cgen, tag, featureToCheck, apis): argument 340 for vulkanApi, typeDecl, feature in apis: 367 vulkanApi = self.typeInfo.apis[name]
|
/external/rust/crates/grpcio-sys/grpc/tools/buildgen/plugins/ |
D | list_api.py | 55 apis = [] 62 apis.extend(list_c_apis(sorted(set(headers)))) 63 dictionary['c_apis'] = apis
|
/external/OpenCL-CTS/dependencies/ |
D | Android.bp | 24 generated_headers: [ "generated-ocl-apis" ], 28 name: "generated-ocl-apis", 29 out: [ "apis.h" ],
|
/external/grpc-grpc/tools/buildgen/plugins/ |
D | list_api.py | 55 apis = [] 62 apis.extend(list_c_apis(sorted(set(headers)))) 63 dictionary['c_apis'] = apis
|
/external/libwebsockets/READMEs/ |
D | README.lws_conmon.md | 1 ## `lws_conmon` apis 3 `LWS_WITH_CONMON` build option enables `lws_conmon` apis for user code... these add 7 The public apis can be found in `libwebsockets/lws-conmon.h`. 33 The lws-minimal-http-client example shows how user code can use the apis, build
|
D | README.crypto-apis.md | 18 The `JW` apis use the generic apis (`lws_genrsa_`, etc) to get the crypto tasks 19 done, so anything they can do you can also get done using the generic apis. 20 The main difference is that with the generic apis, you must instantiate the 21 correct types and use type-specfic apis. With the `JW` apis, there is only 25 Because of this, the `JW` apis are often preferred because they give you 83 Unit tests for these apis, which serve as usage examples, can be found in [./minimal-examples/api-t… 114 agility", code written to the lws generic or JOSE apis is completely unchanged 136 Unit tests for these apis, which serve as usage examples, can be found in [./minimal-examples/api-t…
|
D | README.cmake.md | 21 Lws makes use of various CMake features to figure out what apis your libraries 22 offer, eg, OpenSSL has many different apis based on version, lws knows how to 23 work around most of the changes, but to do it it must find out what apis are 36 When this happens, cmake indicates that apis that must be available are not available...
|
/external/chromium-trace/catapult/third_party/polymer/components/google-apis/ |
D | README.md | 1 google-apis 4 See https://elements.polymer-project.org/elements/google-apis
|
/external/libwebsockets/minimal-examples/api-tests/ |
D | README.md | 9 api-test-gencrypto|LWS Generic Crypto apis 10 api-test-jose|LWS JOSE apis
|