Home
last modified time | relevance | path

Searched refs:frontend (Results 1 – 25 of 361) sorted by relevance

12345678910>>...15

/external/clang/include/clang/Frontend/
DLangStandard.h18 namespace frontend {
59 bool hasLineComments() const { return Flags & frontend::LineComment; } in hasLineComments()
62 bool isC89() const { return Flags & frontend::C89; } in isC89()
65 bool isC99() const { return Flags & frontend::C99; } in isC99()
68 bool isC11() const { return Flags & frontend::C11; } in isC11()
71 bool isCPlusPlus() const { return Flags & frontend::CPlusPlus; } in isCPlusPlus()
74 bool isCPlusPlus11() const { return Flags & frontend::CPlusPlus11; } in isCPlusPlus11()
77 bool isCPlusPlus14() const { return Flags & frontend::CPlusPlus14; } in isCPlusPlus14()
80 bool isCPlusPlus1z() const { return Flags & frontend::CPlusPlus1z; } in isCPlusPlus1z()
83 bool hasDigraphs() const { return Flags & frontend::Digraphs; } in hasDigraphs()
[all …]
/external/autotest/site_utils/admin/scripts/
Dcli2hbs.sh29 mkdir -p ${TARGET_DIR}/frontend/afe
30 touch ${TARGET_DIR}/frontend/__init__.py
31 touch ${TARGET_DIR}/frontend/afe/__init__.py
32 cp -uv ${AUTOTEST_DIR}/frontend/common.py \
33 ${TARGET_DIR}/frontend
34 cp -fpruv ${AUTOTEST_DIR}/frontend/afe/json_rpc \
35 ${TARGET_DIR}/frontend/afe
36 cp -uv ${AUTOTEST_DIR}/frontend/afe/rpc_client_lib.py \
37 ${TARGET_DIR}/frontend/afe
39 ${AUTOTEST_TOOLS_DIR}/autotest/syncfiles/frontend/afe/site_rpc_client_lib.py \
[all …]
/external/autotest/site_utils/rpm_control_system/
Dfrontend_server_unittest.py33 self.frontend = frontend_server.RPMFrontendServer()
34 self.frontend._rpm_info[DUT_HOSTNAME] = utils.PowerUnitInfo(
50 self.frontend.set_power_via_rpm,
64 self.frontend.register_dispatcher(FAKE_DISPATCHER_URI1)
65 self.assertTrue(self.frontend.set_power_via_rpm(
80 self.frontend.register_dispatcher(FAKE_DISPATCHER_URI1)
81 self.assertFalse(self.frontend.set_power_via_rpm(
96 self.frontend.register_dispatcher(FAKE_DISPATCHER_URI1)
97 self.assertTrue(self.frontend.set_power_via_rpm(
100 self.frontend.unregister_dispatcher(FAKE_DISPATCHER_URI1)
[all …]
/external/mesa3d/src/gallium/auxiliary/draw/
Ddraw_pt.c62 struct draw_pt_front_end *frontend = NULL; in draw_pt_arrays() local
119 frontend = draw->pt.frontend; in draw_pt_arrays()
121 if (frontend) { in draw_pt_arrays()
129 frontend = NULL; in draw_pt_arrays()
136 frontend->flush( frontend, DRAW_FLUSH_STATE_CHANGE ); in draw_pt_arrays()
137 frontend = NULL; in draw_pt_arrays()
141 if (!frontend) { in draw_pt_arrays()
142 frontend = draw->pt.front.vsplit; in draw_pt_arrays()
144 frontend->prepare( frontend, prim, middle, opt ); in draw_pt_arrays()
146 draw->pt.frontend = frontend; in draw_pt_arrays()
[all …]
Ddraw_pt_vsplit.c200 static void vsplit_prepare(struct draw_pt_front_end *frontend, in vsplit_prepare() argument
205 struct vsplit_frontend *vsplit = (struct vsplit_frontend *) frontend; in vsplit_prepare()
235 static void vsplit_flush(struct draw_pt_front_end *frontend, unsigned flags) in vsplit_flush() argument
237 struct vsplit_frontend *vsplit = (struct vsplit_frontend *) frontend; in vsplit_flush()
246 static void vsplit_destroy(struct draw_pt_front_end *frontend) in vsplit_destroy() argument
248 FREE(frontend); in vsplit_destroy()
/external/autotest/frontend/afe/
Ddirect_afe.py7 import autotest_lib.server.frontend as frontend namespace
8 from autotest_lib.frontend.afe import rpc_interface
10 class directAFE(frontend.AFE):
/external/autotest/site_utils/stable_images/
Dstable_version_unittest.py11 from autotest_lib.server import frontend
102 argv = ['command', '-t', frontend.AFE.CROS_IMAGE_TYPE]
118 argv = ['command', '-t', frontend.AFE.CROS_IMAGE_TYPE, 'board']
126 argv = ['command', '-t', frontend.AFE.CROS_IMAGE_TYPE, 'board', 'V0.0']
135 argv = ['command', '-t', frontend.AFE.FIRMWARE_IMAGE_TYPE,
146 argv = ['command', '-t', frontend.AFE.CROS_IMAGE_TYPE, '-d', 'board']
154 argv = ['command', '-t', frontend.AFE.CROS_IMAGE_TYPE, '-d']
164 argv = ['command', '-t', frontend.AFE.CROS_IMAGE_TYPE, '-d',
/external/kotlinx.coroutines/js/example-frontend-js/
DREADME.md1 # Example JS frontend application with coroutines
6 gradlew :example-frontend-js:build
14 gradlew :example-frontend-js:run
18 [here](https://kotlin.github.io/kotlinx.coroutines/example-frontend-js/index.html).
/external/clang/lib/Frontend/
DCompilerInvocation.cpp1071 Opts.ProgramAction = frontend::ParseSyntaxOnly; in ParseFrontendArgs()
1077 Opts.ProgramAction = frontend::ASTDeclList; break; in ParseFrontendArgs()
1080 Opts.ProgramAction = frontend::ASTDump; break; in ParseFrontendArgs()
1082 Opts.ProgramAction = frontend::ASTPrint; break; in ParseFrontendArgs()
1084 Opts.ProgramAction = frontend::ASTView; break; in ParseFrontendArgs()
1086 Opts.ProgramAction = frontend::DumpRawTokens; break; in ParseFrontendArgs()
1088 Opts.ProgramAction = frontend::DumpTokens; break; in ParseFrontendArgs()
1090 Opts.ProgramAction = frontend::EmitAssembly; break; in ParseFrontendArgs()
1092 Opts.ProgramAction = frontend::EmitBC; break; in ParseFrontendArgs()
1094 Opts.ProgramAction = frontend::EmitHTML; break; in ParseFrontendArgs()
[all …]
/external/llvm-project/clang/test/Driver/
Dcheck-time-trace-sections.py30 if not all([any([is_inside(codegen, frontend) for frontend in frontends])
34 if not all([all([is_before(frontend, backend) for frontend in frontends])
/external/autotest/tko/
Dsite_parse_unittest.py15 from autotest_lib.frontend import database_settings_helper
16 from autotest_lib.frontend import setup_django_environment
17 from autotest_lib.frontend import setup_test_environment
18 from autotest_lib.frontend.afe import frontend_test_utils
19 from autotest_lib.frontend.afe import models as django_afe_models
20 from autotest_lib.frontend.tko import models as django_tko_models
165 from autotest_lib.frontend import settings
176 from autotest_lib.frontend import settings
/external/tensorflow/tensorflow/lite/experimental/microfrontend/lib/
DREADME.md1 # Audio "frontend" library for feature generation
3 A feature generation library (also called frontend) that receives raw audio
38 Something to note in the above example is that the frontend consumes as many
40 to the frontend configuration). If not enough samples were available to generate
44 An example of how to use the frontend is provided in frontend_main.cc and its
47 the coefficients according to the frontend default configuration.
50 Extra features of this frontend library include a noise reduction module, as
64 frontend state. This command could be automated as part of your build process,
/external/autotest/server/
Dfrontend_unittest.py15 from autotest_lib.frontend.afe import rpc_client_lib
16 from autotest_lib.server import frontend
46 frontend.RpcClient('/path', None, None, None, None, None)
54 image_name = frontend.format_cros_image_name(
/external/autotest/contrib/
Dshared_hosts.py8 from autotest_lib.server import frontend
10 cautotest = frontend.AFE(server='cautotest')
11 cautotest_cq = frontend.AFE(server='cautotest-cq')
/external/kotlinx.coroutines/js/
DREADME.md3 [example-frontend-js](example-frontend-js/README.md) -- frontend application written in Kotlin/JS
/external/autotest/frontend/
Ddjango_lite_unittest.py7 from autotest_lib.frontend import setup_django_lite_environment
8 from autotest_lib.frontend.afe import frontend_test_utils
9 from autotest_lib.frontend.afe import models
/external/autotest/frontend/tko/
Dviews.py1 from autotest_lib.frontend.tko import rpc_interface
2 from autotest_lib.frontend.tko import csv_encoder
3 from autotest_lib.frontend.afe import rpc_handler
/external/autotest/site_utils/
Dclear.sh27 ${AUTOTEST_DIR}/frontend/manage.py dbshell <<END
33 ${AUTOTEST_DIR}/frontend/manage.py syncdb --noinput
34 ${AUTOTEST_DIR}/frontend/manage.py syncdb --noinput
/external/clang/include/clang/Lex/
DHeaderSearchOptions.h22 namespace frontend {
50 frontend::IncludeDirGroup Group;
58 Entry(StringRef path, frontend::IncludeDirGroup group, bool isFramework, in Entry()
187 void AddPath(StringRef Path, frontend::IncludeDirGroup Group, in AddPath()
/external/swiftshader/docs/
DANGLE.md7 …hile SwiftShader initially offered a GLES frontend, this has been deprecated and replaced by a Vul…
9 ## Why use ANGLE instead of SwiftShader's GLES frontend?
11 There are a few reasons why SwiftShader's GLES frontend has been deprecated, and that we now recomm…
19 …upport SwiftShader's GLES frontend allows our team to focus our efforts on implementing a solid an…
21 ## How to use ANGLE with SwiftShader's Vulkan frontend
/external/autotest/server/cros/network/
Drf_switch_utils.py8 from autotest_lib.server import frontend
23 afe = frontend.AFE(
45 afe = frontend.AFE(
/external/llvm-project/flang/lib/Frontend/
DTextDiagnosticPrinter.cpp20 using namespace Fortran::frontend;
47 Fortran::frontend::TextDiagnostic::PrintDiagnosticLevel( in HandleDiagnostic()
49 Fortran::frontend::TextDiagnostic::PrintDiagnosticMessage(os_, in HandleDiagnostic()
/external/mesa3d/src/gallium/frontends/xa/
DREADME30 The XA gallium frontend is intended as a versioned interface to gallium for
32 composite / video work for the Xorg gallium frontend.
34 The motivation behind this gallium frontend is that the Xorg gallium frontend has
42 Since Gallium3D is not versioned, the Xorg gallium frontend needs to be compiled
46 Therefore the xa gallium frontend is intended to supply the following
59 should investigate sharing the loadig mechanism with the EGL gallium frontend.
/external/llvm-project/clang/lib/Frontend/
DCompilerInvocation.cpp1902 Opts.ProgramAction = frontend::ParseSyntaxOnly; in ParseFrontendArgs()
1908 Opts.ProgramAction = frontend::ASTDeclList; break; in ParseFrontendArgs()
1929 Opts.ProgramAction = frontend::ASTDump; break; in ParseFrontendArgs()
1931 Opts.ProgramAction = frontend::ASTPrint; break; in ParseFrontendArgs()
1933 Opts.ProgramAction = frontend::ASTView; break; in ParseFrontendArgs()
1935 Opts.ProgramAction = frontend::DumpCompilerOptions; break; in ParseFrontendArgs()
1937 Opts.ProgramAction = frontend::DumpRawTokens; break; in ParseFrontendArgs()
1939 Opts.ProgramAction = frontend::DumpTokens; break; in ParseFrontendArgs()
1941 Opts.ProgramAction = frontend::EmitAssembly; break; in ParseFrontendArgs()
1943 Opts.ProgramAction = frontend::EmitBC; break; in ParseFrontendArgs()
[all …]
/external/mesa3d/docs/
Dsourcetree.rst170 - **clover** - OpenCL frontend
171 - **dri** - Meta frontend for DRI drivers, see mesa/state_tracker
172 - **glx** - Meta frontend for GLX
174 - **nine** - D3D9 frontend, see targets/d3dadapter9
175 - **omx** - OpenMAX Bellagio frontend
177 - **va** - VA-API frontend
178 - **vdpau** - VDPAU frontend
179 - **wgl** - Windows WGL frontend
180 - **xa** - XA frontend
181 - **xvmc** - XvMC frontend
[all …]

12345678910>>...15