/external/clang/include/clang/Frontend/ |
D | LangStandard.h | 18 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/ |
D | cli2hbs.sh | 29 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/ |
D | frontend_server_unittest.py | 33 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/ |
D | draw_pt.c | 62 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 …]
|
D | draw_pt_vsplit.c | 200 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/ |
D | direct_afe.py | 7 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/ |
D | stable_version_unittest.py | 11 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/ |
D | README.md | 1 # 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/ |
D | CompilerInvocation.cpp | 1071 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/ |
D | check-time-trace-sections.py | 30 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/ |
D | site_parse_unittest.py | 15 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/ |
D | README.md | 1 # 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/ |
D | frontend_unittest.py | 15 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/ |
D | shared_hosts.py | 8 from autotest_lib.server import frontend 10 cautotest = frontend.AFE(server='cautotest') 11 cautotest_cq = frontend.AFE(server='cautotest-cq')
|
/external/kotlinx.coroutines/js/ |
D | README.md | 3 [example-frontend-js](example-frontend-js/README.md) -- frontend application written in Kotlin/JS
|
/external/autotest/frontend/ |
D | django_lite_unittest.py | 7 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/ |
D | views.py | 1 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/ |
D | clear.sh | 27 ${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/ |
D | HeaderSearchOptions.h | 22 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/ |
D | ANGLE.md | 7 …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/ |
D | rf_switch_utils.py | 8 from autotest_lib.server import frontend 23 afe = frontend.AFE( 45 afe = frontend.AFE(
|
/external/llvm-project/flang/lib/Frontend/ |
D | TextDiagnosticPrinter.cpp | 20 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/ |
D | README | 30 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/ |
D | CompilerInvocation.cpp | 1902 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/ |
D | sourcetree.rst | 170 - **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 …]
|