Home
last modified time | relevance | path

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

12345678910>>...12

/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):
Drpc_utils_unittest.py14 from autotest_lib.frontend import setup_django_environment
15 from autotest_lib.frontend.afe import frontend_test_utils
16 from autotest_lib.frontend.afe import models
17 from autotest_lib.frontend.afe import rpc_utils
/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:bundle
14 gradlew :example-frontend-js:start
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/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
Dcompose_query.cgi16 from autotest_lib.tko import display, frontend, db, query_lib
93 if field_input and field_input in frontend.test_view_field_dict:
153 job_path = frontend.html_root + job_tag + '/'
167 for option in sorted(frontend.test_view_field_dict.keys()):
262 condition_field, frontend.test_view_field_dict)
282 test_data = frontend.get_matrix_data(db_obj, column, row, where,
/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/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/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
Dcount_jobs_unittest.py12 from autotest_lib.frontend import setup_django_readonly_environment
13 from autotest_lib.frontend import setup_test_environment
14 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/server/cros/network/
Drf_switch_utils.py8 from autotest_lib.server import frontend
23 afe = frontend.AFE(
45 afe = frontend.AFE(
/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/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 …]
/external/kotlinx.coroutines/site/
Dbuild.gradle16 task copyExampleFrontendJs(type: Copy, dependsOn: ':example-frontend-js:bundle') {
17 def srcBuildDir = project(':example-frontend-js').buildDir
19 into "$buildDocsDir/example-frontend-js"
/external/tensorflow/tensorflow/lite/experimental/microfrontend/lib/
DBUILD50 name = "frontend",
52 "frontend.c",
56 "frontend.h",
148 ":frontend",

12345678910>>...12