Home
last modified time | relevance | path

Searched refs:Switch (Results 1 – 25 of 246) sorted by relevance

12345678910

/external/clang/test/Driver/
Dle32-unknown-nacl.cpp132 template<int> void Switch();
133 template<> void Switch<4>();
134 template<> void Switch<8>();
135 template<> void Switch<16>();
139 Switch<sizeof(void*)>(); in check_pointer_size()
142 Switch<sizeof(long long)>(); in check_pointer_size()
145 Switch<sizeof(va_list)>(); in check_pointer_size()
/external/owasp/sanitizer/lib/htmlparser-1.3/doc/
Dtokenization.txt151 Switch to the markup declaration open state.
154 Switch to the close tag open state.
172 and a U+003E GREATER-THAN SIGN character token. Switch to
176 Parse error. Switch to the bogus comment state.
222 Parse error. Switch to the data state.
230 Parse error. Switch to the bogus comment state.
240 Switch to the before attribute name state.
243 Switch to the self-closing start tag state.
246 Emit the current tag token. Switch to the data state.
272 Switch to the self-closing start tag state.
[all …]
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/
DSyntaxTreeBuilder.java25 import com.google.clearsilver.jsilver.syntax.node.Switch;
73 protected final Switch typeResolver = new TypeResolver();
74 protected final Switch sequenceOptimizer = new SequenceOptimizer();
75 protected final Switch inlineRewriter = new InlineRewriter();
76 protected final Switch varOptimizer = new VarOptimizer(Arrays.asList("html", "js", "url"));
DTemplateSyntaxTree.java20 import com.google.clearsilver.jsilver.syntax.node.Switch;
39 public void apply(Switch sw) { in apply()
/external/chromium_org/third_party/codesighs/
Dcodesighs.c113 Switch; typedef
117 static Switch gInputSwitch = {"--input", "-i", 1, NULL, "Specify input file." DESC_NEWLINE "stdin i…
118 static Switch gOutputSwitch = {"--output", "-o", 1, NULL, "Specify output file." DESC_NEWLINE "Appe…
119 static Switch gHelpSwitch = {"--help", "-h", 0, NULL, "Information on usage."};
120 static Switch gModuleSwitch = {"--modules", "-m", 0, NULL, "Output individual module numbers as wel…
121 static Switch gTotalSwitch = {"--totalonly", "-t", 0, NULL, "Output only one number." DESC_NEWLINE …
122 static Switch gMinSize = {"--min-size", "-min", 1, NULL, "Only consider symbols equal to or greater…
123 static Switch gMaxSize = {"--max-size", "-max", 1, NULL, "Only consider symbols equal to or smaller…
124 static Switch gMatchScope = {"--match-scope", "-msco", 1, NULL, "Only consider scopes that have a s…
125 static Switch gMatchClass = {"--match-class", "-mcla", 1, NULL, "Only consider classes that have a …
[all …]
Dnm2tsv.c87 Switch; typedef
91 static Switch gInputSwitch = {"--input", "-i", 1, NULL, "Specify input file." DESC_NEWLINE "stdin i…
92 static Switch gOutputSwitch = {"--output", "-o", 1, NULL, "Specify output file." DESC_NEWLINE "Appe…
93 static Switch gHelpSwitch = {"--help", "-h", 0, NULL, "Information on usage."};
95 static Switch* gSwitches[] = {
287 Switch* current = NULL; in initOptions()
Dmaptsvdifftool.c92 Switch; typedef
96 static Switch gInputSwitch = {"--input", "-i", 1, NULL, "Specify input file." DESC_NEWLINE "stdin i…
97 static Switch gOutputSwitch = {"--output", "-o", 1, NULL, "Specify output file." DESC_NEWLINE "Appe…
98 static Switch gSummarySwitch = {"--summary", "-s", 0, NULL, "Only output a single line." DESC_NEWLI…
99 static Switch gZeroDriftSwitch = {"--zerodrift", "-z", 0, NULL, "Output zero drift data." DESC_NEWL…
100 static Switch gNegationSwitch = {"--negation", "-n", 0, NULL, "Use negation heuristics." DESC_NEWLI…
101 static Switch gHelpSwitch = {"--help", "-h", 0, NULL, "Information on usage."};
103 static Switch* gSwitches[] = {
1083 Switch* current = NULL; in initOptions()
Dmsdump2symdb.c87 Switch; typedef
91 static Switch gInputSwitch = {"--input", "-i", 1, NULL, "Specify input file." DESC_NEWLINE "stdin i…
92 static Switch gOutputSwitch = {"--output", "-o", 1, NULL, "Specify output file." DESC_NEWLINE "Appe…
93 static Switch gHelpSwitch = {"--help", "-h", 0, NULL, "Information on usage."};
95 static Switch* gSwitches[] = {
874 Switch* current = NULL; in initOptions()
/external/chromium_org/sandbox/linux/seccomp-bpf-helpers/
Dsyscall_parameters_restrictions.cc128 return Switch(option) in RestrictPrctl()
136 return Switch(request).CASES((TCGETS, FIONREAD), Allow()).Default( in RestrictIoctl()
178 return Switch(cmd) in RestrictFcntlCommands()
200 return Switch(call) in RestrictSocketcallCommand()
232 return Switch(op & ~kAllowedFutexFlags) in RestrictFutex()
/external/jsilver/src/com/google/clearsilver/jsilver/interpreter/
DOptimizerProvider.java19 import com.google.clearsilver.jsilver.syntax.node.Switch;
26 Switch getOptimizer(); in getOptimizer()
/external/clang/lib/CodeGen/
DCGCleanup.cpp279 llvm::SwitchInst *Switch, in ResolveAllBranchFixups() argument
306 Switch->addCase(CGF.Builder.getInt32(Fixup.DestinationIndex), in ResolveAllBranchFixups()
326 llvm::SwitchInst *Switch = in TransitionToCleanupSwitch() local
329 return Switch; in TransitionToCleanupSwitch()
363 llvm::SwitchInst *Switch = TransitionToCleanupSwitch(*this, BranchBB); in ResolveBranchFixups() local
366 Switch->addCase(Builder.getInt32(Fixup.DestinationIndex), Block); in ResolveBranchFixups()
509 llvm::SwitchInst *Switch = cast<llvm::SwitchInst>(Term); in ForwardPrebranchedFallthrough() local
510 for (unsigned I = 0, E = Switch->getNumSuccessors(); I != E; ++I) in ForwardPrebranchedFallthrough()
511 if (Switch->getSuccessor(I) == From) in ForwardPrebranchedFallthrough()
512 Switch->setSuccessor(I, To); in ForwardPrebranchedFallthrough()
[all …]
/external/chromium_org/sandbox/linux/bpf_dsl/
Dbpf_dsl.h225 friend Caser<T> Switch(const Arg<T>&);
232 SANDBOX_EXPORT Caser<T> Switch(const Arg<T>& arg);
258 friend Caser<U> Switch(const Arg<U>&);
357 SANDBOX_EXPORT Caser<T> Switch(const Arg<T>& arg) { in Switch() function
/external/jsilver/src/com/google/clearsilver/jsilver/
DJSilver.java45 import com.google.clearsilver.jsilver.syntax.node.Switch;
188 public Switch getOptimizer() { in setupOptimizerFactory()
196 public Switch getOptimizer() { in setupOptimizerFactory()
205 public Switch getOptimizer() { in setupOptimizerFactory()
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
DSwitch.java5 public interface Switch interface
DSwitchable.java7 void apply(Switch sw); in apply()
DEOF.java28 public void apply(Switch sw) in apply()
DTAlt.java28 public void apply(Switch sw) in apply()
DTContentType.java28 public void apply(Switch sw) in apply()
DTLvar.java28 public void apply(Switch sw) in apply()
DTDollar.java28 public void apply(Switch sw) in apply()
DTComma.java28 public void apply(Switch sw) in apply()
DTBracketClose.java28 public void apply(Switch sw) in apply()
/external/chromium_org/chrome/browser/ui/cocoa/
Dcertificate_viewer_mac_browsertest.mm70 // Switch to another tab and verify that the sheet is hidden.
76 // Switch back and verify that the sheet is shown.
Dssl_client_certificate_selector_cocoa_browsertest.mm89 // Switch to another tab and verify that the sheet is hidden.
95 // Switch back and verify that the sheet is shown.
/external/webrtc/
DTODO1 Alexander Gutkin <agutkin@google.com>: Switch the iSAC codec to be

12345678910