Home
last modified time | relevance | path

Searched refs:CONFIG (Results 1 – 25 of 78) sorted by relevance

1234

/external/lldb/tools/debugserver/scripts/
Ddbgnub-config.pl24 open(CONFIG, "> $config_file") || die "Couldn't open '$config_file' for writing: $!\n";
25 print CONFIG "//" . "-" x 72 . "\n";
26 print CONFIG "// This file is auto generated by a dbgnub-config.pl, do not edit by hand!\n";
27 print CONFIG "//" . "-" x 72 . "\n";
28 print CONFIG "// COMMAND LINE\n";
29 print CONFIG "// " . join(' ', @ARGV) . "\n";
30 print CONFIG "//" . "-" x 72 . "\n";
31 print CONFIG "// ENVIRONMENT\n";
37 printf CONFIG "// %s = %s\n", $key, $val;
39 print CONFIG "//" . "-" x 72 . "\n";
[all …]
/external/chromium-trace/trace-viewer/third_party/Paste/tests/
Dtest_config.py4 from paste.config import CONFIG, ConfigMiddleware
13 CONFIG._pop_object()
19 lines = ['Variable is: %s\n' % CONFIG[test_key],
32 supplement = ['Nesting variable is: %s' % CONFIG[test_key],
68 CONFIG.push_process_config(process_config)
70 assert CONFIG[test_key] == 'bar'
71 assert CONFIG['process_var'] == 'foo'
75 assert CONFIG[test_key] == 'bar'
76 assert CONFIG['process_var'] == 'foo'
77 CONFIG.pop_process_config()
[all …]
/external/llvm/test/CodeGen/R600/
Delf.r600.ll2 ; RUN: llc < %s -march=r600 -mcpu=redwood -o - | FileCheck --check-prefix=CONFIG %s
7 ; CONFIG: .section .AMDGPU.config
8 ; CONFIG-NEXT: .long 166100
9 ; CONFIG-NEXT: .long 2
10 ; CONFIG-NEXT: .long 165900
11 ; CONFIG-NEXT: .long 0
Delf.ll2 ; RUN: llc < %s -march=amdgcn -mcpu=SI -verify-machineinstrs -o - | FileCheck --check-prefix=CONFIG
4 …amdgcn -mcpu=tonga -verify-machineinstrs -o - | FileCheck --check-prefix=CONFIG --check-prefix=TON…
6 …dgcn -mcpu=carrizo -verify-machineinstrs -o - | FileCheck --check-prefix=CONFIG --check-prefix=TYP…
19 ; CONFIG: .section .AMDGPU.config
20 ; CONFIG-NEXT: .long 45096
23 ; CONFIG: .align 256
24 ; CONFIG: test:
/external/compiler-rt/test/BlocksRuntime/
Dmakefile20 grep CONFIG *.[cmCM] | $(TFR) $(CCDIR) --
23 grep CONFIG *.[cmCM] | $(TFR) $(CCDIR) -open --
26 grep CONFIG *.[cmCM] | $(TFR) -fast $(CCDIR) --
29 grep CONFIG *.[cmCM] | $(TFR) --
32 grep CONFIG *.[cmCM] | $(TFR) -clang -fast --
35 grep CONFIG *.[cmCM] | $(TFR) -fast --
69 …grep CONFIG *.[cmCM] | $(TFR) -dyld $(LibsystemRootPath) -- # FIXME: figure out if I can "call" t…
/external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
DMemoryHandlerTest.java144 record = new LogRecord(Level.CONFIG, "MSG3"); in testIsLoggable()
147 record = new LogRecord(Level.CONFIG, "false"); in testIsLoggable()
151 record = new LogRecord(Level.CONFIG, "false"); in testIsLoggable()
300 LogRecord lr = new LogRecord(Level.CONFIG, "lr"); in testSetPushLevel()
315 handler.publish(new LogRecord(Level.CONFIG, "MSG1")); in testPushPublic()
331 handler.publish(new LogRecord(Level.CONFIG, "MSG3")); in testPushPublic()
337 handler.publish(new LogRecord(Level.CONFIG, "MSG5")); in testPushPublic()
346 handler.publish(new LogRecord(Level.CONFIG, "MSG8")); in testPushPublic()
DHandlerTest.java254 Level f = Level.CONFIG; in testGetSetLevel_Normal()
273 h.setLevel(Level.CONFIG); in testGetSetLevel_Null()
285 LogRecord r = new LogRecord(Level.CONFIG, null); in testIsLoggable_NoFilter()
288 h.setLevel(Level.CONFIG); in testIsLoggable_NoFilter()
304 LogRecord r = new LogRecord(Level.CONFIG, null); in testIsLoggable_WithFilter()
308 h.setLevel(Level.CONFIG); in testIsLoggable_WithFilter()
DLoggerTest.java337 pLog.setLevel(Level.CONFIG); in testGetLogger_WithParentNormal()
537 pLog.setLevel(Level.CONFIG); in testGetLoggerWithRes_WithParentNormal()
742 log.setLevel(Level.CONFIG); in testGetSetLevel_NamedLoggerSufficientPrivilege()
743 assertSame(Level.CONFIG, log.getLevel()); in testGetSetLevel_NamedLoggerSufficientPrivilege()
755 log.setLevel(Level.CONFIG); in testGetSetLevel_Null()
766 log.setLevel(Level.CONFIG); in testSetLevel_AnonyLoggerSufficientPrivilege()
767 assertSame(Level.CONFIG, log.getLevel()); in testSetLevel_AnonyLoggerSufficientPrivilege()
934 assertFalse(mlog.isLoggable(Level.CONFIG)); in testIsLoggable()
939 mlog.setLevel(Level.CONFIG); in testIsLoggable()
941 assertTrue(mlog.isLoggable(Level.CONFIG)); in testIsLoggable()
[all …]
DLevelTest.java115 assertSame(Level.CONFIG, Level.parse("CONFIG")); in testParse_PredefinedConstStrings()
154 assertSame(Level.CONFIG, Level.parse("CONFIG")); in testParse_PredefinedNumber()
163 assertSame(Level.CONFIG, Level.parse("700")); in testParse_PredefinedNumber()
DStreamHandlerTest.java386 h.setLevel(Level.CONFIG); in testIsLoggable_NoOutputStream()
406 h.setLevel(Level.CONFIG); in testIsLoggable_NoFilter()
425 h.setLevel(Level.CONFIG); in testIsLoggable_WithFilter()
463 h.setLevel(Level.CONFIG); in testPublish_NoOutputStream()
491 h.setLevel(Level.CONFIG); in testPublish_NoFilter()
526 h.setLevel(Level.CONFIG); in testPublish_WithFilter()
/external/vboot_reference/tests/
Drun_vbutil_kernel_arg_tests.sh24 CONFIG="${DATA_DIR}/dummy_config.txt"
53 --config "${CONFIG}" \
108 --config "${CONFIG}" \
173 orig=$(cat "${CONFIG}" | tr '\012' ' ')
/external/dhcpcd/
Ddefs.h33 #ifndef CONFIG
34 # define CONFIG SYSCONFDIR "/" PACKAGE ".conf" macro
/external/chromium-trace/trace-viewer/third_party/Paste/paste/
Dconfig.py80 CONFIG = DispatchingConfig() variable
92 def __init__(self, application, config, dispatching_config=CONFIG,
/external/clang/test/SemaObjC/
Dwarn-unreachable.m20 #define CONFIG NO macro
38 if (CONFIG)
/external/compiler-rt/test/asan/TestCases/Windows/
Ddll_and_lib.cc9 #if CONFIG==1
/external/apache-harmony/logging/src/test/resources/bundles/com/android/java/util/logging/
Dres_en_US.properties4 CONFIG=US_CONFIG key
Dres.properties4 CONFIG=US_CONFIG key
Dres_zh_CN.properties4 CONFIG=ZH_CN_CONFIG key
Dres3.properties4 CONFIG=CONFIG3 key
Dres2.properties4 CONFIG=CONFIG2 key
/external/pcre/dist/doc/
Dpcre-config.txt1 PCRE-CONFIG(1) General Commands Manual PCRE-CONFIG(1)
/external/iproute2/testsuite/
DMakefile8 KENV := $(shell cat /proc/config.gz | gunzip | grep ^CONFIG)
/external/jmonkeyengine/engine/src/android/com/jme3/util/
DAndroidLogHandler.java35 } else if (level == Level.CONFIG) { in publish()
/external/elfutils/src/tests/
Drun-alldts.sh81 CONFIG 0xdeadbeef
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
Dwpa_gui.pro6 CONFIG += qt warn_on release

1234