Home
last modified time | relevance | path

Searched full:api (Results 1 – 25 of 7370) sorted by relevance

12345678910>>...295

/external/libexif/doc/
Dlibexif-api.html.tar.gz ... libexif-api.html/ libexif-api.html/ftv2folderopen.png libexif-api.html/
/external/skqp/infra/bots/recipes/
Dskpbench.py29 def _run(api, title, *cmd, **kwargs): argument
30 with api.context(cwd=api.path['start_dir'].join('skia')):
31 return api.run(api.step, title, cmd=list(cmd), **kwargs)
34 def _adb(api, title, *cmd, **kwargs): argument
37 return _run(api, title, ADB_BINARY, *cmd, **kwargs)
40 def skpbench_steps(api): argument
42 api.file.ensure_directory(
43 'makedirs perf_dir', api.flavor.host_dirs.perf_data_dir)
45 if 'Android' in api.vars.builder_name:
46 app = api.vars.build_dir.join('skpbench')
[all …]
Dcompute_buildstats.py20 def RunSteps(api): argument
21 api.vars.setup()
23 checkout_root = api.checkout.default_checkout_root
24 api.checkout.bot_update(checkout_root=checkout_root)
26 out_dir = api.vars.swarming_out_dir
28 bin_dir = api.vars.build_dir
30 api.file.ensure_directory('mkdirs out_dir', out_dir, mode=0777)
33 with api.context(cwd=bin_dir):
34 files = api.file.glob_paths(
41 analyze_wasm_file(api, checkout_root, out_dir, files)
[all …]
Drecreate_skps.py36 def RunSteps(api): argument
38 api.vars.setup()
40 checkout_root = api.checkout.default_checkout_root
43 api.checkout.bot_update(
48 api.file.ensure_directory('makedirs tmp_dir', api.vars.tmp_dir)
49 api.flavor.setup()
55 with api.context(cwd=src_dir):
61 with api.context(env=gn_env):
62 api.run(api.step, 'GN', cmd=[gn, 'gen', out_dir])
65 api.run(api.step, 'Build Chrome', cmd=['ninja', '-C', out_dir, 'chrome'])
[all …]
Dperf.py46 def nanobench_flags(api, bot): argument
59 if api.vars.builder_cfg.get('cpu_or_gpu') == 'CPU':
72 elif api.vars.builder_cfg.get('cpu_or_gpu') == 'GPU':
106 if 'Intel' in bot and api.vars.is_linux:
180 if ('Intel' in bot and api.vars.is_linux and not 'Vulkan' in bot):
183 if 'IntelHD405' in bot and api.vars.is_linux and 'Vulkan' in bot:
279 def perf_steps(api): argument
281 b = api.properties['buildername']
283 api.flavor.create_clean_device_dir(
284 api.flavor.device_dirs.perf_data_dir)
[all …]
/external/skia/infra/bots/recipes/
Dskpbench.py29 def _run(api, title, *cmd, **kwargs): argument
30 with api.context(cwd=api.path['start_dir'].join('skia')):
31 return api.run(api.step, title, cmd=list(cmd), **kwargs)
34 def _adb(api, title, *cmd, **kwargs): argument
37 return _run(api, title, ADB_BINARY, *cmd, **kwargs)
40 def skpbench_steps(api): argument
42 api.file.ensure_directory(
43 'makedirs perf_dir', api.flavor.host_dirs.perf_data_dir)
45 if 'Android' in api.vars.builder_name:
46 app = api.vars.build_dir.join('skpbench')
[all …]
Dcompute_buildstats.py21 def RunSteps(api): argument
22 api.vars.setup()
24 checkout_root = api.checkout.default_checkout_root
25 api.checkout.bot_update(checkout_root=checkout_root)
27 out_dir = api.vars.swarming_out_dir
29 bin_dir = api.vars.build_dir
31 api.file.ensure_directory('mkdirs out_dir', out_dir, mode=0777)
34 with api.context(cwd=bin_dir):
35 files = api.file.glob_paths(
42 analyze_wasm_file(api, checkout_root, out_dir, files)
[all …]
Drecreate_skps.py36 def RunSteps(api): argument
38 api.vars.setup()
40 checkout_root = api.checkout.default_checkout_root
43 api.checkout.bot_update(
48 api.file.ensure_directory('makedirs tmp_dir', api.vars.tmp_dir)
49 api.flavor.setup()
55 with api.context(cwd=src_dir):
61 with api.context(env=gn_env):
62 api.run(api.step, 'GN', cmd=[gn, 'gen', out_dir])
65 api.run(api.step, 'Build Chrome', cmd=['ninja', '-C', out_dir, 'chrome'])
[all …]
Dperf.py46 def nanobench_flags(api, bot): argument
59 if api.vars.builder_cfg.get('cpu_or_gpu') == 'CPU':
72 elif api.vars.builder_cfg.get('cpu_or_gpu') == 'GPU':
106 if 'Intel' in bot and api.vars.is_linux:
180 if ('Intel' in bot and api.vars.is_linux and not 'Vulkan' in bot):
183 if 'IntelHD405' in bot and api.vars.is_linux and 'Vulkan' in bot:
286 def perf_steps(api): argument
288 b = api.properties['buildername']
290 api.flavor.create_clean_device_dir(
291 api.flavor.device_dirs.perf_data_dir)
[all …]
/external/skqp/infra/bots/recipe_modules/flavor/examples/
Dfull.py15 def test_exceptions(api): argument
17 api.flavor.copy_directory_contents_to_device('src', 'dst')
21 api.flavor.copy_directory_contents_to_host('src', 'dst')
25 api.flavor.copy_file_to_device('src', 'dst')
30 def RunSteps(api): argument
31 api.vars.setup()
32 api.flavor.setup()
34 if api.properties.get('is_testing_exceptions') == 'True':
35 return test_exceptions(api)
37 if 'Build' not in api.properties['buildername']:
[all …]
/external/skia/infra/bots/recipe_modules/flavor/examples/
Dfull.py15 def test_exceptions(api): argument
17 api.flavor.copy_directory_contents_to_device('src', 'dst')
21 api.flavor.copy_directory_contents_to_host('src', 'dst')
25 api.flavor.copy_file_to_device('src', 'dst')
30 def RunSteps(api): argument
31 api.vars.setup()
32 api.flavor.setup()
34 if api.properties.get('is_testing_exceptions') == 'True':
35 return test_exceptions(api)
37 if 'Build' not in api.properties['buildername']:
[all …]
/external/skqp/infra/bots/recipe_modules/run/examples/
Dfull.py16 def myfunc(api, i): argument
17 api.run(api.step, 'run %d' % i, cmd=['echo', str(i)])
20 def RunSteps(api): argument
21 api.vars.setup()
23 api.run(api.step, 'fail', cmd=['false'])
24 except api.step.StepFailure:
26 api.run(api.step, 'fail again', cmd=['false'], abort_on_failure=False)
27 api.run(api.step, 'do a thing', cmd=['echo', 'do the thing'])
28 assert len(api.run.failed_steps) == 2
32 api.run.run_once(myfunc, api, i)
[all …]
/external/skia/infra/bots/recipe_modules/run/examples/
Dfull.py16 def myfunc(api, i): argument
17 api.run(api.step, 'run %d' % i, cmd=['echo', str(i)])
20 def RunSteps(api): argument
21 api.vars.setup()
23 api.run(api.step, 'fail', cmd=['false'])
24 except api.step.StepFailure:
26 api.run(api.step, 'fail again', cmd=['false'], abort_on_failure=False)
27 api.run(api.step, 'do a thing', cmd=['echo', 'do the thing'])
28 assert len(api.run.failed_steps) == 2
32 api.run.run_once(myfunc, api, i)
[all …]
/external/deqp/external/openglcts/modules/gles31/
Des31cArrayOfArraysTests.hpp244 template <class API>
277 const std::string& tested_snippet, typename TestCaseBase<API>::TestShaderType tested_shader_type,
281 typename TestCaseBase<API>::TestShaderType tested_shader_type, const std::string& shader_source);
295 …virtual void test_shader_compilation(typename TestCaseBase<API>::TestShaderType tested_shader_type…
311 template <class API>
312 class SizedDeclarationsPrimitive : public TestCaseBase<API>
317 : TestCaseBase<API>(context, "SizedDeclarationsPrimitive", in SizedDeclarationsPrimitive()
331 void test_shader_compilation(typename TestCaseBase<API>::TestShaderType tested_shader_type);
334 template <class API>
335 class SizedDeclarationsStructTypes1 : public TestCaseBase<API>
[all …]
Des31cArrayOfArraysTests.cpp62 /* API specific shader parts */
314 template <class API>
370 if (API::USE_DOUBLE) in initializeMap()
399 case TestCaseBase<API>::VERTEX_SHADER_TYPE: \
402 case TestCaseBase<API>::FRAGMENT_SHADER_TYPE: \
404 case TestCaseBase<API>::COMPUTE_SHADER_TYPE: \
406 case TestCaseBase<API>::GEOMETRY_SHADER_TYPE: \
409 case TestCaseBase<API>::TESSELATION_CONTROL_SHADER_TYPE: \
412 case TestCaseBase<API>::TESSELATION_EVALUATION_SHADER_TYPE: \
440 case TestCaseBase<API>::COMPUTE_SHADER_TYPE: \
[all …]
/external/caliper/lib/
Djersey-client-1.11-sources.jar ... sun/jersey/ com/sun/jersey/api/ com/sun/jersey/api/client ...
Djersey-client-1.11.jar ... sun/jersey/ com/sun/jersey/api/ com/sun/jersey/api/client ...
/external/grpc-grpc/templates/
Dpackage.xml.template19 <api>${settings.php_version.php()}</api>
23 <api>${settings.php_version.php_stability()}</api>
63 <api>0.5.0</api>
67 <api>alpha</api>
78 <api>0.5.1</api>
82 <api>alpha</api>
93 <api>0.6.0</api>
97 <api>beta</api>
104 - expose connectivity API
113 <api>0.6.0</api>
[all …]
/external/tensorflow/tensorflow/contrib/keras/
DBUILD2 # Contains the Keras API (internal TensorFlow version).
15 "api/__init__.py",
16 "api/keras/__init__.py",
17 "api/keras/activations/__init__.py",
18 "api/keras/applications/__init__.py",
19 "api/keras/applications/inception_v3/__init__.py",
20 "api/keras/applications/mobilenet/__init__.py",
21 "api/keras/applications/resnet50/__init__.py",
22 "api/keras/applications/vgg16/__init__.py",
23 "api/keras/applications/vgg19/__init__.py",
[all …]
/external/clang/test/Index/
Dc-index-api-loadTU-test.m79 // CHECK: c-index-api-loadTU-test.m:4:12: ObjCInterfaceDecl=Foo:4:12 Extent=[4:1 - 12:5]
80 // CHECK: c-index-api-loadTU-test.m:6:32: ObjCIvarDecl=myoutlet:6:32 (Definition) Extent=[6:3 - 6:4…
81 // CHECK: c-index-api-loadTU-test.m:6:18: attribute(iboutlet)= Extent=[6:18 - 6:26]
82 // CHECK: c-index-api-loadTU-test.m:6:29: TypeRef=id:0:0 Extent=[6:29 - 6:31]
83 // CHECK: c-index-api-loadTU-test.m:8:36: ObjCInstanceMethodDecl=myMessage::8:36 Extent=[8:1 - 8:54]
84 // CHECK: c-index-api-loadTU-test.m:8:25: attribute(ibaction)= Extent=[8:25 - 8:33]
85 // CHECK: c-index-api-loadTU-test.m:8:50: ParmDecl=msg:8:50 (Definition) Extent=[8:47 - 8:53]
86 // CHECK: c-index-api-loadTU-test.m:8:47: TypeRef=id:0:0 Extent=[8:47 - 8:49]
87 // CHECK: c-index-api-loadTU-test.m:9:3: ObjCInstanceMethodDecl=foo:9:3 (deprecated) (always depre…
88 // CHECK: c-index-api-loadTU-test.m:9:22: UnexposedAttr= Extent=[9:22 - 9:32]
[all …]
/external/python/google-api-python-client/samples/
DREADME.md1 # Samples by API
3 ## ![](http://www.google.com/images/icons/product/doubleclick-32.gif) Ad Exchange Buyer API
7 Documentation for the Ad Exchange Buyer API in
8 [PyDoc](https://google-api-client-libraries.appspot.com/documentation/adexchangebuyer/v1.3/python/l…
13 <td>Samples for working with the Ad Exchange Buyer API</td>
17 ## ![](http://www.google.com/images/icons/product/adsense-32.png) AdSense Management API
22 Documentation for the AdSense Management API in
23 [PyDoc](https://google-api-client-libraries.appspot.com/documentation/adsense/v1.3/python/latest/).
28 <td>Collection of command-line samples for the AdSense Management API</td>
32 ## ![](http://www.google.com/images/icons/product/analytics-32.png) Google Analytics API
[all …]
/external/mesa3d/src/egl/main/
Deglfallbacks.c53 drv->API.Initialize = NULL; in _eglInitDriverFallbacks()
54 drv->API.Terminate = NULL; in _eglInitDriverFallbacks()
56 drv->API.GetConfigs = _eglGetConfigs; in _eglInitDriverFallbacks()
57 drv->API.ChooseConfig = _eglChooseConfig; in _eglInitDriverFallbacks()
58 drv->API.GetConfigAttrib = _eglGetConfigAttrib; in _eglInitDriverFallbacks()
60 drv->API.CreateContext = (void*) _eglReturnFalse; in _eglInitDriverFallbacks()
61 drv->API.DestroyContext = (void*) _eglReturnFalse; in _eglInitDriverFallbacks()
62 drv->API.MakeCurrent = (void*) _eglReturnFalse; in _eglInitDriverFallbacks()
63 drv->API.QueryContext = _eglQueryContext; in _eglInitDriverFallbacks()
65 drv->API.CreateWindowSurface = (void*) _eglReturnFalse; in _eglInitDriverFallbacks()
[all …]
/external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
DDeprecatedAPIChecker.java33 System.err.println("Illegal command argument. Specify the API signature file path."); in main()
35 // Load the ICU4J API signature file in main()
57 // Gather API class/enum names and its names that can be in checkDeprecated()
60 for (APIInfo api : apiInfoSet) { in checkDeprecated()
61 if (!api.isPublic() && !api.isProtected()) { in checkDeprecated()
64 if (!api.isClass() && !api.isEnum()) { in checkDeprecated()
67 String packageName = api.getPackageName(); in checkDeprecated()
68 String className = api.getName(); in checkDeprecated()
77 // Walk through API classes using reflection in checkDeprecated()
99 APIInfo api = null; in checkClass() local
[all …]
/external/junit-params/lib/
Dassertj-core-1.7.1-sources.jar ... core/internal/ org/assertj/core/api/ org/assertj/core/api/filter ...
/external/doclava/test/doclava/
DApiCheckTest.java41 String[] args = { "test/api/medium.xml", "test/api/medium.xml" }; in testEquivalentApi()
48 String[] args = { "test/api/return-type-changed-1.xml", "test/api/return-type-changed-2.xml" }; in testMethodReturnTypeChanged()
56 String[] args = { "test/api/parameter-changed-1.xml", "test/api/parameter-changed-2.xml" }; in testMethodParameterChanged()
70 String[] args = { "test/api/parameter-changed-1.xml", "test/api/parameter-changed-3.xml" }; in testConstructorParameterChanged()
83 String[] args = { "test/api/simple.xml", "test/api/added-class.xml" }; in testAddedClass()
91 String[] args = { "test/api/added-class.xml", "test/api/simple.xml" }; in testRemovedClass()
99 String[] args = { "test/api/added-deprecated-class.xml", "test/api/simple.xml" }; in testRemovedDeprecatedClass()
107 String[] args = { "test/api/simple.xml", "test/api/changed-super.xml" }; in testChangedSuper()
116 "test/api/changed-assignable-return-1.xml", in testChangedAssignableReturn()
117 "test/api/changed-assignable-return-2.xml" in testChangedAssignableReturn()
[all …]

12345678910>>...295