HomeSort by relevance Sort by last modified time
    Searched refs:alt (Results 1 - 25 of 66) sorted by null

1 2 3

  /external/webkit/SunSpider/tests/sunspider-0.9/
math-partial-sums.js 8 var alt = -1.0;
16 alt = -alt;
25 a8 += alt/k;
26 a9 += alt/(2*k -1);
  /external/webkit/SunSpider/tests/sunspider-0.9.1/
math-partial-sums.js 8 var alt = -1.0;
16 alt = -alt;
25 a8 += alt/k;
26 a9 += alt/(2*k -1);
  /device/htc/dream/recovery/
recovery_ui.c 29 "apply sdcard:update.zip [Alt+S]",
30 "wipe data/factory reset [Alt+W]",
42 // home+end, or alt+L (either alt key)
55 int alt = ui_key_pressed(KEY_LEFTALT) || ui_key_pressed(KEY_RIGHTALT); local
65 } else if (alt && key == KEY_W) {
67 } else if (alt && key == KEY_S) {
  /external/webkit/WebCore/accessibility/
AccessibilityImageMapLink.cpp 106 const AtomicString& alt = m_areaElement->getAttribute(altAttr); local
107 if (!alt.isEmpty())
108 return alt;
  /external/grub/netboot/
misc.c 96 int alt = 0; local
101 alt = 1;
129 if (alt)
  /frameworks/base/core/java/android/text/method/
ArrowKeyMovementMethod.java 41 boolean alt = MetaKeyKeyListener.getMetaState(buffer,
46 if (alt) {
53 if (alt) {
67 boolean alt = MetaKeyKeyListener.getMetaState(buffer,
72 if (alt) {
79 if (alt) {
93 boolean alt = MetaKeyKeyListener.getMetaState(buffer,
98 if (alt) {
104 if (alt) {
117 boolean alt = MetaKeyKeyListener.getMetaState(buffer
    [all...]
  /external/icu4c/i18n/
astro.h 224 * @param alt The altitude, measured in radians above the horizon.
228 Horizon(double alt=0, double azim=0)
229 : altitude(alt), azimuth(azim) { }
233 * @param alt The altitude, measured in radians above the horizon.
237 void set(double alt, double azim) {
238 altitude = alt;
  /external/webkit/WebCore/html/
HTMLAppletElement.idl 30 attribute [ConvertNullToNullString, Reflect] DOMString alt;
HTMLAreaElement.idl 25 attribute [ConvertNullToNullString, Reflect] DOMString alt;
HTMLImageElement.idl 26 attribute [ConvertNullToNullString, Reflect] DOMString alt;
HTMLImageElement.h 70 const AtomicString& alt() const;
HTMLImageElement.cpp 150 // lets figure out the alt text.. magic stuff
153 String alt = getAttribute(altAttr); local
155 if (alt.isNull())
156 alt = getAttribute(titleAttr);
157 return alt;
179 // image height and width for the alt text instead.
308 const AtomicString& HTMLImageElement::alt() const function in class:WebCore::HTMLImageElement
HTMLInputElement.idl 32 attribute [ConvertNullToNullString] DOMString alt;
  /external/bluetooth/bluez/input/
sixpair.c 147 handle_device (libusb_device *dev, struct libusb_config_descriptor *cfg, int itfnum, const struct libusb_interface_descriptor *alt)
286 struct libusb_interface_descriptor alt; local
288 alt = itf->altsetting[l];
289 if (alt.bInterfaceClass == 3) {
290 handle_device (dev, cfg, l, &alt);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/voice/
VoiceInput.java 578 for (int alt = 1; alt < words.length; alt++) {
579 int keyBegin = key * words[alt].length / words[0].length;
580 int keyEnd = (key + 1) * words[alt].length / words[0].length;
582 for (int i = keyBegin; i < Math.min(words[alt].length, keyEnd); i++) {
584 if (!altList.contains(words[alt][i]) && altList.size() < 6) {
585 altList.add(words[alt][i]);
  /packages/apps/Mms/src/org/w3c/dom/smil/
SMILMediaElement.java 31 * See the alt attribute from .
36 public void setAlt(String alt)
  /external/webkit/WebCore/platform/
PlatformMouseEvent.h 86 int clickCount, bool shift, bool ctrl, bool alt, bool meta, double timestamp)
94 , m_altKey(alt)
PlatformKeyboardEvent.h 149 bool down, bool cap, bool alt, bool sym);
  /external/webkit/WebCore/platform/android/
KeyEventAndroid.cpp 214 int repeatCount, bool down, bool cap, bool alt, bool sym)
225 , m_altKey(alt ? AltKey : 0)
  /build/tools/droiddoc/templates/assets/
android-developer-docs.css 1113 tr.alt-color {
1132 table.download tr.alt-color {
1165 /* 240px alt */
1166 .g-tpl-240-alt .g-unit,
1167 .g-unit .g-tpl-240-alt .g-unit,
1168 .g-unit .g-unit .g-tpl-240-alt .g-unit {
1174 .g-unit .g-unit .g-tpl-240-alt .g-first,
1175 .g-unit .g-tpl-240-alt .g-first,
1176 .g-tpl-240-alt .g-first {
1200 /* 180px alt */
    [all...]
  /external/icu4c/test/intltest/
wbnf.cpp 1445 Alternation alt; local
1692 Alternation * alt = new Alternation(); local
    [all...]
ssearch.cpp 223 const UnicodeString *alt = testCase->getAttribute("alternate_handling"); local
224 TEST_ASSERT (alt == NULL || *alt == "SHIFTED" || *alt == "NON_IGNORABLE");
225 if (alt != NULL && *alt == "SHIFTED") {
571 const UnicodeString *alt = testCase->getAttribute("alternate_handling"); local
572 TEST_ASSERT (alt == NULL || *alt == "SHIFTED" || *alt == "NON_IGNORABLE")
1703 UnicodeString alt; local
    [all...]
  /external/webkit/JavaScriptCore/yarr/
RegexCompiler.cpp 501 for (unsigned alt = 0; alt < disjunction->m_alternatives.size(); ++alt) {
502 PatternAlternative* alternative = disjunction->m_alternatives[alt];
666 for (unsigned alt = 0; alt < disjunction->m_alternatives.size(); ++alt) {
667 PatternAlternative* alternative = disjunction->m_alternatives[alt];
  /packages/apps/Mms/src/com/android/mms/dom/smil/
SmilMediaElementImpl.java 140 return this.getAttribute("alt");
199 public void setAlt(String alt) throws DOMException {
200 this.setAttribute("alt", alt);
  /external/qemu/
i386-dis.c 4332 int alt = 0; local
6256 const char *alt; local
6326 const char *alt; local
    [all...]

Completed in 964 milliseconds

1 2 3