Home
last modified time | relevance | path

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

1234567891011

/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(
49 self.frontend.queue_request, DUT_HOSTNAME, NEW_STATE)
59 self.frontend._rpm_info[DUT_HOSTNAME],
62 self.frontend.register_dispatcher(FAKE_DISPATCHER_URI1)
63 self.assertTrue(self.frontend.queue_request(DUT_HOSTNAME, NEW_STATE))
74 self.frontend._rpm_info[DUT_HOSTNAME],
77 self.frontend.register_dispatcher(FAKE_DISPATCHER_URI1)
78 self.assertFalse(self.frontend.queue_request(DUT_HOSTNAME, NEW_STATE))
89 self.frontend._rpm_info[DUT_HOSTNAME],
[all …]
/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/apache/conf/
Ddjango-directives36 RewriteCond /usr/local/autotest/frontend/frontend.wsgi -f
37 … RewriteRule ^/(afe|new_tko)/server(.*) /usr/local/autotest/frontend/frontend.wsgi [H=wsgi-script]
39 RewriteCond /usr/lib/python2.7/site-packages/autotest/frontend/frontend.wsgi -f
40 …/(afe|new_tko)/server(.*) /usr/lib/python2.7/site-packages/autotest/frontend/frontend.wsgi [H=wsgi…
42 RewriteCond /usr/lib/python2.6/site-packages/autotest/frontend/frontend.wsgi -f
43 …/(afe|new_tko)/server(.*) /usr/lib/python2.6/site-packages/autotest/frontend/frontend.wsgi [H=wsgi…
45 RewriteCond /usr/lib/python2.5/site-packages/autotest/frontend/frontend.wsgi -f
46 …/(afe|new_tko)/server(.*) /usr/lib/python2.5/site-packages/autotest/frontend/frontend.wsgi [H=wsgi…
48 RewriteCond /usr/lib/python2.4/site-packages/autotest/frontend/frontend.wsgi -f
49 …/(afe|new_tko)/server(.*) /usr/lib/python2.4/site-packages/autotest/frontend/frontend.wsgi [H=wsgi…
[all …]
Dembedded-spreadsheet-directives5 RewriteCond /usr/local/autotest/frontend/client/www/autotest.EmbeddedSpreadsheetClient -d
6 RewriteRule ^/embedded_spreadsheet(.*) /usr/local/autotest/frontend/client/www/autotest.EmbeddedSpr…
9 RewriteCond /usr/share/autotest/frontend/client/www/autotest.EmbeddedSpreadsheetClient -d
10 RewriteRule ^/embedded_spreadsheet(.*) /usr/share/autotest/frontend/client/www/autotest.EmbeddedSpr…
Dembedded-tko-directives5 RewriteCond /usr/local/autotest/frontend/client/www/autotest.EmbeddedTkoClient -d
6 RewriteRule ^/embedded_tko(.*) /usr/local/autotest/frontend/client/www/autotest.EmbeddedTkoClient/$1
9 RewriteCond /usr/share/autotest/frontend/client/www/autotest.EmbeddedTkoClient -d
10 RewriteRule ^/embedded_tko(.*) /usr/share/autotest/frontend/client/www/autotest.EmbeddedTkoClient/$1
Dmoblab-setup-directives5 RewriteCond /usr/local/autotest/frontend/client/www/autotest.MoblabSetupClient -d
6 RewriteRule ^/moblab_setup((?!\/server\/).*)$ /usr/local/autotest/frontend/client/www/autotest.Mobl…
9 RewriteCond /usr/share/autotest/frontend/client/www/autotest.MoblabSetupClient -d
10 RewriteRule ^/moblab_setup((?!\/server\/).*)$ /usr/share/autotest/frontend/client/www/autotest.Mobl…
Dnew-tko-directives5 RewriteCond /usr/local/autotest/frontend/client/www/autotest.TkoClient -d
6 RewriteRule ^/new_tko((?!\/server\/).*)$ /usr/local/autotest/frontend/client/www/autotest.TkoClient…
9 RewriteCond /usr/share/autotest/frontend/client/www/autotest.TkoClient -d
10 RewriteRule ^/new_tko((?!\/server\/).*)$ /usr/share/autotest/frontend/client/www/autotest.TkoClient…
Dafe-directives5 RewriteCond /usr/local/autotest/frontend/client/www/autotest.AfeClient -d
6 RewriteRule ^/afe((?!\/server\/).*)$ /usr/local/autotest/frontend/client/www/autotest.AfeClient/$1
9 RewriteCond /usr/share/autotest/frontend/client/www/autotest.AfeClient -d
10 RewriteRule ^/afe((?!\/server\/).*)$ /usr/share/autotest/frontend/client/www/autotest.AfeClient/$1
/external/mesa3d/src/gallium/auxiliary/draw/
Ddraw_pt.c61 struct draw_pt_front_end *frontend = NULL; in draw_pt_arrays() local
110 frontend = draw->pt.frontend; in draw_pt_arrays()
112 if (frontend) { in draw_pt_arrays()
120 frontend = NULL; in draw_pt_arrays()
127 frontend->flush( frontend, DRAW_FLUSH_STATE_CHANGE ); in draw_pt_arrays()
128 frontend = NULL; in draw_pt_arrays()
132 if (!frontend) { in draw_pt_arrays()
133 frontend = draw->pt.front.vsplit; in draw_pt_arrays()
135 frontend->prepare( frontend, prim, middle, opt ); in draw_pt_arrays()
137 draw->pt.frontend = frontend; in draw_pt_arrays()
[all …]
Ddraw_pt_vsplit.c199 static void vsplit_prepare(struct draw_pt_front_end *frontend, in vsplit_prepare() argument
204 struct vsplit_frontend *vsplit = (struct vsplit_frontend *) frontend; in vsplit_prepare()
234 static void vsplit_flush(struct draw_pt_front_end *frontend, unsigned flags) in vsplit_flush() argument
236 struct vsplit_frontend *vsplit = (struct vsplit_frontend *) frontend; in vsplit_flush()
245 static void vsplit_destroy(struct draw_pt_front_end *frontend) in vsplit_destroy() argument
247 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/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.py16 from autotest_lib.frontend import database_settings_helper
17 from autotest_lib.frontend import setup_django_environment
18 from autotest_lib.frontend import setup_test_environment
19 from autotest_lib.frontend.afe import frontend_test_utils
20 from autotest_lib.frontend.afe import models as django_afe_models
21 from autotest_lib.frontend.tko import models as django_tko_models
166 from autotest_lib.frontend import settings
177 from autotest_lib.frontend import settings
Dmachine_aggr.cgi10 from autotest_lib.tko import db, display, frontend, plotgraph
49 machine = frontend.machine.select(db, {'hostname' : machine_idx})[0]
69 for test in frontend.test.select(db, where):
86 kernel_base = frontend.kernel.select(db, {'printable' : kernels_sort[0]})[0]
87 …for test in frontend.test.select(db, { 'subdir' : benchmark, 'machine_idx' : machine.idx, 'kernel_…
94 for test in frontend.test.select(db, where, wherein):
/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/v8/tools/clang/translation_unit/
DTranslationUnitGenerator.cpp100 case clang::frontend::System: in IncludeFinderPPCallbacks()
101 case clang::frontend::ExternCSystem: in IncludeFinderPPCallbacks()
102 case clang::frontend::CSystem: in IncludeFinderPPCallbacks()
103 case clang::frontend::CXXSystem: in IncludeFinderPPCallbacks()
104 case clang::frontend::ObjCSystem: in IncludeFinderPPCallbacks()
105 case clang::frontend::ObjCXXSystem: in IncludeFinderPPCallbacks()
106 case clang::frontend::After: in IncludeFinderPPCallbacks()
/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
Dfrontend_unittest.py6 from autotest_lib.frontend import setup_django_environment
7 from autotest_lib.frontend import setup_test_environment
8 from autotest_lib.frontend.afe import test
/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
/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.py7 from autotest_lib.server import frontend
22 afe = frontend.AFE(
44 afe = frontend.AFE(
Drf_switch_controller_test.py7 from autotest_lib.server import frontend
27 self.rf_switch_host = frontend.Host('', '')
28 self.ap_box_host = frontend.Host('', '')
29 self.client_box_host = frontend.Host('', '')
/external/autotest/server/
Dfrontend_unittest.py15 from autotest_lib.frontend.afe import rpc_client_lib
16 from autotest_lib.server import frontend
44 frontend.RpcClient('/path', None, None, None, None, None)

1234567891011