Searched defs:alt (Results 26 - 50 of 91) sorted by relevance

1234

/external/chromium_org/chrome/common/extensions/
H A Dcommand.cc197 bool alt = (modifiers & ui::EF_ALT_DOWN) != 0; local
206 if (key == ui::VKEY_UNKNOWN || (ctrl && alt) || (command && alt) ||
207 (shift && !ctrl && !alt && !command)) {
220 (shift || ctrl || alt || command)) {
/external/chromium_org/third_party/icu/source/i18n/
H A Dastro.h224 * @param alt The altitude, measured in radians above the horizon.
228 Horizon(double alt=0, double azim=0) argument
229 : altitude(alt), azimuth(azim) { }
233 * @param alt The altitude, measured in radians above the horizon.
237 void set(double alt, double azim) { argument
238 altitude = alt;
/external/chromium_org/ui/base/test/
H A Dui_controls_internal_win.cc173 bool alt,
217 if (alt) {
231 if (alt) {
169 SendKeyPressImpl(HWND window, ui::KeyboardCode key, bool control, bool shift, bool alt, const base::Closure& task) argument
/external/icu/icu4c/source/i18n/
H A Dastro.h224 * @param alt The altitude, measured in radians above the horizon.
228 Horizon(double alt=0, double azim=0) argument
229 : altitude(alt), azimuth(azim) { }
233 * @param alt The altitude, measured in radians above the horizon.
237 void set(double alt, double azim) { argument
238 altitude = alt;
/external/libedit/src/
H A Dmap.c906 el->el_map.alt = el_malloc(sizeof(*el->el_map.alt) * N_KEYS);
907 if (el->el_map.alt == NULL)
943 el_free(el->el_map.alt);
944 el->el_map.alt = NULL;
982 el_action_t *alt = el->el_map.alt; local
988 for (i = 0; i <= 0377 && alt[i] != EM_META_NEXT; i++)
993 map = alt;
995 map = alt;
1022 el_action_t *alt = el->el_map.alt; local
1053 el_action_t *alt = el->el_map.alt; local
[all...]
H A Dtty.c906 el_action_t *map, *alt; local
911 alt = el->el_map.alt;
932 keymacro_clear(el, alt, old);
933 alt[UC(old[0])] = dalt[UC(old[0])];
934 keymacro_clear(el, alt, new);
935 alt[UC(new[0])] = tp->bind[el->el_map.type + 1];
/external/smack/src/org/jivesoftware/smackx/
H A DXHTMLText.java217 * @param alt the text to show if you don't show the picture
222 public void appendImageTag(String align, String alt, String height, String src, String width) { argument
229 if (alt != null) {
230 sb.append(" alt=\"");
231 sb.append(alt);
/external/valgrind/main/coregrind/
H A Dm_debuglog.c619 const HChar* alt; local
623 case '&': alt = "&amp;"; break;
624 case '<': alt = "&lt;"; break;
625 case '>': alt = "&gt;"; break;
626 default: alt = NULL;
629 if (alt) {
630 while (*alt) {
631 send(*alt, send_arg2);
633 alt++;
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
H A DDebugEventSocketProxy.cs157 public override void EnterAlt(int alt) { argument
158 Transmit("enterAlt\t" + alt);
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
H A DDebugEventSocketProxy.java125 public void enterAlt(int alt) { argument
126 transmit("enterAlt\t"+alt);
/external/chromium_org/content/browser/speech/
H A Dgoogle_streaming_remote_engine.cc60 const proto::SpeechRecognitionAlternative& alt = local
62 if (alt.has_confidence())
63 DVLOG(1) << " CONFIDENCE:\t" << alt.confidence();
64 if (alt.has_transcript())
65 DVLOG(1) << " TRANSCRIPT:\t" << alt.transcript();
/external/chromium_org/remoting/host/win/
H A Drdp_client_window.cc175 UINT alt = MapVirtualKey(VK_MENU, MAPVK_VK_TO_VSC); local
190 MAKELPARAM(1, alt | KF_ALTDOWN));
202 SendMessage(input_window, WM_KEYUP, VK_MENU, MAKELPARAM(1, alt | up));
/external/chromium_org/third_party/usrsctp/usrsctplib/netinet/
H A Dsctp_timer.c183 struct sctp_nets *alt, *mnet, *min_errors_net = NULL , *max_cwnd_net = NULL; local
336 alt = TAILQ_NEXT(mnet, sctp_next);
337 if (alt == NULL)
343 alt = TAILQ_FIRST(&stcb->asoc.nets);
344 if (alt == NULL) {
348 if (alt->ro.ro_rt == NULL) {
349 if (alt->ro._s_addr) {
350 sctp_free_ifa(alt->ro._s_addr);
351 alt->ro._s_addr = NULL;
353 alt
460 sctp_mark_all_for_resend(struct sctp_tcb *stcb, struct sctp_nets *net, struct sctp_nets *alt, int window_probe, int *num_marked, int *num_abandoned) argument
804 struct sctp_nets *alt; local
1016 struct sctp_nets *alt; local
1039 struct sctp_nets *alt; local
1102 struct sctp_nets *alt; local
1163 struct sctp_nets *alt; local
1278 struct sctp_nets *alt; local
1301 struct sctp_nets *alt; local
[all...]
/external/valgrind/main/memcheck/tests/
H A Dcond_ld_st.c43 // Returns either |*src| or |alt|.
45 UInt do_conditional_load32 ( UInt* src, UInt alt, Bool b ) argument
50 "mov r5, %2" "\n\t" // alt
56 : /*IN*/"r"(src), "r"(alt), "r"(b)
61 res = b ? *src : alt;
69 // Possibly writes |alt| to |*dst|, and returns the resulting
72 UInt do_conditional_store32 ( UInt* dst, UInt alt, Bool b ) argument
76 "mov r5, %1" "\n\t" // alt
81 : /*IN*/"r"(dst), "r"(alt), "r"(b)
86 if (b) *dst = alt;
[all...]
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3debughandlers.c57 static void enterAlt (pANTLR3_DEBUG_EVENT_LISTENER delboy, int alt);
559 enterAlt (pANTLR3_DEBUG_EVENT_LISTENER delboy, int alt) argument
565 sprintf(buffer, "enterAlt\t%d\n", alt);
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DBaseRecognizer.cs414 * When you find a "no viable alt exception", the input is not
559 // Why would we ever want them all? Maybe no viable alt instead of
990 protected virtual void DebugEnterAlt(int alt) { argument
993 dbg.EnterAlt(alt);
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DBaseRecognizer.cs484 * When you find a "no viable alt exception", the input is not
631 // Why would we ever want them all? Maybe no viable alt instead of
1120 protected virtual void DebugEnterAlt(int alt) argument
1124 dbg.EnterAlt(alt);
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
H A DDecisionProbe.java98 /** Track the predicates for each alt per DFA state;
99 * more than one DFA state might have syntactically ambig alt prediction.
100 * Maps DFA state to another map, mapping alt number to a
108 * whole alt uncovered. This maps DFA state to the set of alts
121 /** If decision with > 1 alt has recursion in > 1 alt, it's (likely) nonregular
225 /** Found recursion in > 1 alt */
282 * that for this DFA state, that alt is disabled. There may be other
283 * accept states for that alt that make an alt reachabl
359 getNFAPathStatesForAlt(int firstAlt, int alt, List labels) argument
390 getSemanticContextForAlt(DFAState d, int alt) argument
900 getTokenNameForTokensRuleAlt(int alt) argument
[all...]
H A DDFA.java55 * of states per alt in a single decision's DFA.
132 /** Each alt in an NFA derived from a grammar must have a DFA state that
145 /** We only want one accept state per predicted alt; track here */
148 /** Track whether an alt discovers recursion for each alt during
149 * NFA to DFA conversion; >1 alt with recursion implies nonregular.
262 // >1 alt recurses, k=* and no auto backtrack nor manual sem/syn
889 /** Return a list of Integer alt numbers for which no lookahead could
924 * TODO: I call getUniquelyPredicatedAlt too much; cache predicted alt
930 // this alt i
1005 getAcceptState(int alt) argument
1009 setAcceptState(int alt, DFAState acceptState) argument
[all...]
/external/chromium_org/chrome/browser/
H A Dbrowser_keyevents_browsertest.cc77 bool alt; member in struct:__anon2957::KeyEventTestData
274 browser(), test.key, test.ctrl, test.shift, test.alt, test.command));
282 " VKEY:0x%02x, ctrl:%d, shift:%d, alt:%d, command:%d\n"
285 data.key, data.ctrl, data.shift, data.alt, data.command,
527 // On Mac, access keys use ctrl+alt modifiers.
652 // On Ash, alt-1..9 are assigned as window selection global accelerators, so
/external/chromium_org/chrome/browser/chromeos/events/
H A Devent_rewriter_unittest.cc717 IntegerPrefMember alt; local
718 alt.Init(prefs::kLanguageRemapAltKeyTo, &prefs);
719 alt.SetValue(chromeos::input_method::kControlKey);
766 IntegerPrefMember alt; local
767 alt.Init(prefs::kLanguageRemapAltKeyTo, &prefs);
768 alt.SetValue(chromeos::input_method::kControlKey);
857 IntegerPrefMember alt; local
858 alt.Init(prefs::kLanguageRemapAltKeyTo, &prefs);
859 alt.SetValue(chromeos::input_method::kControlKey);
/external/chromium_org/chrome/test/remoting/
H A Dremote_desktop_browsertest.cc379 bool alt,
387 alt, local
374 SimulateKeyPressWithCode( ui::KeyboardCode keyCode, const char* code, bool control, bool shift, bool alt, bool command) argument
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLImageElement.cpp259 // lets figure out the alt text.. magic stuff
262 const AtomicString& alt = fastGetAttribute(altAttr); local
263 if (!alt.isNull())
264 return alt;
345 // image height and width for the alt text instead.
/external/chromium_org/ui/views/controls/textfield/
H A Dtextfield_unittest.cc242 bool alt,
246 int flags = (alt ? ui::EF_ALT_DOWN : 0) |
411 // Event flags: key, alt, shift, ctrl, caps-lock.
241 SendKeyEvent(ui::KeyboardCode key_code, bool alt, bool shift, bool control, bool caps_lock) argument
/external/valgrind/main/exp-sgcheck/tests/
H A Dbad_percentify.c232 HChar* alt; local
236 case '&': alt = "&amp;"; break;
237 case '<': alt = "&lt;"; break;
238 case '>': alt = "&gt;"; break;
239 default: alt = NULL;
242 if (alt) {
243 while (*alt) {
244 send(*alt, send_arg2);
246 alt++;

Completed in 469 milliseconds

1234