/external/clang/test/Frontend/ |
profile-sample-use-loc-tracking.c | 4 // frontend to emit source location annotations.
|
/external/clang/test/OpenMP/ |
driver.c | 1 // Test that by default -fnoopenmp-use-tls is passed to frontend.
|
/external/autotest/contrib/ |
stage_build.py | 13 from autotest_lib.server import frontend namespace 45 AFE = frontend.AFE()
|
poolhistory.py | 11 from autotest_lib.frontend import setup_django_environment 12 from autotest_lib.frontend.afe import models
|
/external/autotest/tko/ |
site_parse_unittest.py | 16 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
|
test.cgi | 13 from autotest_lib.tko import db, display, frontend namespace 33 tests = frontend.test.select_sql(db, sql, values)
|
machine_aggr.cgi | 10 from autotest_lib.tko import db, display, frontend, plotgraph namespace 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_idx' : kernel_base.idx}): 94 for test in frontend.test.select(db, where, wherein):
|
/external/clang/include/clang/ARCMigrate/ |
ARCMTActions.h | 1 //===--- ARCMTActions.h - ARC Migrate Tool Frontend Actions -----*- C++ -*-===// 14 #include "clang/Frontend/FrontendAction.h"
|
/external/clang/include/clang/FrontendTool/ |
Utils.h | 11 // which were split from Frontend to minimise Frontend's dependencies.
|
/external/clang/lib/Frontend/Rewrite/ |
FrontendActions.cpp | 10 #include "clang/Rewrite/Frontend/FrontendActions.h" 13 #include "clang/Frontend/CompilerInstance.h" 14 #include "clang/Frontend/FrontendActions.h" 15 #include "clang/Frontend/FrontendDiagnostic.h" 16 #include "clang/Frontend/Utils.h" 19 #include "clang/Rewrite/Frontend/ASTConsumers.h" 20 #include "clang/Rewrite/Frontend/FixItRewriter.h" 21 #include "clang/Rewrite/Frontend/Rewriters.h"
|
/external/clang/tools/driver/ |
cc1_main.cpp | 1 //===-- cc1_main.cpp - Clang CC1 Compiler Frontend ------------------------===// 20 #include "clang/Frontend/CompilerInstance.h" 21 #include "clang/Frontend/CompilerInvocation.h" 22 #include "clang/Frontend/FrontendDiagnostic.h" 23 #include "clang/Frontend/TextDiagnosticBuffer.h" 24 #include "clang/Frontend/TextDiagnosticPrinter.h" 25 #include "clang/Frontend/Utils.h" 115 // Execute the frontend actions.
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/dvb/ |
frontend.h | 2 * frontend.h 65 FE_CAN_2G_MODULATION = 0x10000000, /* frontend supports "2nd generation modulation" (DVB-S2) */ 66 FE_NEEDS_BENDING = 0x20000000, /* not supported anymore, don't use (frontend requires frequency bending) */ 67 FE_CAN_RECOVER = 0x40000000, /* frontend can recover from a cable unplug automatically */ 68 FE_CAN_MUTE_TS = 0x80000000 /* frontend can stop spurious TS data output */ 130 FE_REINIT = 0x40 /* frontend was reinitialized, */ 382 * status, and hence no frontend events will be generated. If a frontend device
|
/external/autotest/server/cros/dynamic_suite/ |
frontend_wrappers.py | 11 from autotest_lib.frontend.afe.json_rpc import proxy 12 from autotest_lib.server import frontend namespace 37 class RetryingAFE(frontend.AFE): 38 """Wrapper around frontend.AFE that retries all RPCs. 99 class RetryingTKO(frontend.TKO): 100 """Wrapper around frontend.TKO that retries all RPCs.
|
/external/mesa3d/src/gallium/auxiliary/draw/ |
draw_pt_vsplit.c | 146 static void vsplit_prepare(struct draw_pt_front_end *frontend, 151 struct vsplit_frontend *vsplit = (struct vsplit_frontend *) frontend; 181 static void vsplit_flush(struct draw_pt_front_end *frontend, unsigned flags) 183 struct vsplit_frontend *vsplit = (struct vsplit_frontend *) frontend; 192 static void vsplit_destroy(struct draw_pt_front_end *frontend) 194 FREE(frontend);
|
/external/clang/lib/Frontend/ |
CompilerInvocation.cpp | 11 #include "clang/Frontend/CompilerInvocation.h" 18 #include "clang/Frontend/FrontendDiagnostic.h" 19 #include "clang/Frontend/LangStandard.h" 20 #include "clang/Frontend/Utils.h" [all...] |
ASTMerge.cpp | 9 #include "clang/Frontend/ASTUnit.h" 14 #include "clang/Frontend/CompilerInstance.h" 15 #include "clang/Frontend/FrontendActions.h"
|
/external/clang/include/clang/Frontend/ |
FrontendAction.h | 1 //===-- FrontendAction.h - Generic Frontend Action Interface ----*- C++ -*-===// 24 #include "clang/Frontend/ASTUnit.h" 25 #include "clang/Frontend/FrontendOptions.h" 35 /// Abstract base class for actions which can be performed by the frontend. 194 /// This is run after the options and frontend have been initialized, 223 /// \brief Abstract base class to use for AST consumer-based frontend actions. 254 /// \brief Abstract base class to use for preprocessor-based frontend actions. 266 /// \brief A frontend action which simply wraps some other runtime-specified 267 /// frontend action.
|
/external/autotest/frontend/health/ |
passing_experimental_functional_test.py | 14 from autotest_lib.frontend import setup_django_readonly_environment 15 from autotest_lib.frontend import setup_test_environment 16 from autotest_lib.frontend.health import passing_experimental 17 from autotest_lib.frontend.afe import models as afe_models 18 from autotest_lib.frontend.tko import models as tko_models
|
passing_experimental.py | 11 from autotest_lib.frontend import setup_django_readonly_environment 16 from autotest_lib.frontend.afe import models as afe_models 17 from autotest_lib.frontend.health import utils as test_health_utils
|
/external/autotest/site_utils/ |
abort_suite.py | 35 from autotest_lib.server import frontend namespace 66 @param afe: An instance of frontend.AFE to make RPCs with. 93 afe = frontend.AFE()
|
/external/autotest/utils/ |
release | 87 ( cd $BASE_DIR/frontend && 116 ( cd $BASE_DIR/frontend && 131 ( cd $BASE_DIR/frontend/client &&
|
/external/clang/include/clang/Rewrite/Frontend/ |
FrontendActions.h | 1 //===-- FrontendActions.h - Useful Frontend Actions -------------*- C++ -*-===// 13 #include "clang/Frontend/FrontendAction.h" 50 /// frontend action.
|
/external/clang/unittests/AST/ |
ExternalASTSourceTest.cpp | 17 #include "clang/Frontend/CompilerInstance.h" 18 #include "clang/Frontend/CompilerInvocation.h" 19 #include "clang/Frontend/FrontendActions.h"
|
/external/clang/tools/clang-check/ |
ClangCheck.cpp | 22 #include "clang/Frontend/ASTConsumers.h" 23 #include "clang/Frontend/CompilerInstance.h" 24 #include "clang/Rewrite/Frontend/FixItRewriter.h" 25 #include "clang/Rewrite/Frontend/FrontendActions.h" 26 #include "clang/StaticAnalyzer/Frontend/FrontendActions.h" 85 // FIXME: Move FixItRewriteInPlace from lib/Rewrite/Frontend/FrontendActions.cpp
|
/external/autotest/cli/ |
rpc.py | 6 from autotest_lib.frontend.afe import rpc_client_lib 7 from autotest_lib.frontend.afe.json_rpc import proxy
|