/external/libvpx/libvpx/vp8/common/x86/ |
dequantize_mmx.asm | 30 pmullw mm1, [rax+0] ; mm4 *= kernel 0 modifiers. 34 pmullw mm1, [rax+8] ; mm4 *= kernel 0 modifiers. 38 pmullw mm1, [rax+16] ; mm4 *= kernel 0 modifiers. 42 pmullw mm1, [rax+24] ; mm4 *= kernel 0 modifiers.
|
/external/webkit/Source/WebCore/plugins/mac/ |
PluginViewMac.mm | 366 record.modifiers = GetCurrentKeyModifiers(); 517 event.modifiers = GetCurrentKeyModifiers(); 594 record.modifiers = modifiersForEvent(event); 597 record.modifiers |= btnState; 600 record.modifiers |= controlKey; 670 record.modifiers = modifiersForEvent(event); 674 LOG(Plugins, "PV::hKE(): record.modifiers: %d", record.modifiers); 697 record.modifiers = GetCurrentKeyModifiers(); 699 record.modifiers |= btnState [all...] |
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/ |
WKBundlePage.cpp | 265 void WKBundlePageSimulateMouseDown(WKBundlePageRef page, int button, WKPoint position, int clickCount, WKEventModifiers modifiers, double time) 267 toImpl(page)->simulateMouseDown(button, toIntPoint(position), clickCount, modifiers, time); 270 void WKBundlePageSimulateMouseUp(WKBundlePageRef page, int button, WKPoint position, int clickCount, WKEventModifiers modifiers, double time) 272 toImpl(page)->simulateMouseUp(button, toIntPoint(position), clickCount, modifiers, time);
|
/hardware/qcom/audio/legacy/libalsa-intf/ |
alsa_ucm.h | 33 * Support for multiple active modifiers and devices, 81 * o Query the supported use case verbs, devices and modifiers for the machine. 82 * o Set and Get use case verbs, devices and modifiers for the machine. 131 * Use Case Modifiers. 154 /* add new modifiers to end of list */ 202 * _modifiers[/<verb>]- get list of supported modifiers 206 * _enamods - get list of enabled modifiers
|
/libcore/luni/src/main/java/java/lang/reflect/ |
Method.java | 171 // append modifiers if any 328 int modifiers = getMethodModifiers(declaringClass, slot); local 329 return (modifiers & Modifier.VARARGS) != 0; 338 int modifiers = getMethodModifiers(declaringClass, slot); local 339 return (modifiers & Modifier.BRIDGE) != 0; 348 int modifiers = getMethodModifiers(declaringClass, slot); local 349 return (modifiers & Modifier.SYNTHETIC) != 0; 422 * Returns the modifiers for this method. The {@link Modifier} class should 425 * @return the modifiers for this method 538 * <li>modifiers (if any [all...] |
/libcore/luni/src/main/java/java/util/concurrent/atomic/ |
AtomicLongFieldUpdater.java | 246 int modifiers = 0; local 250 modifiers = field.getModifiers(); 253 // caller, tclass, null, modifiers); 264 if (!Modifier.isVolatile(modifiers)) 267 this.cclass = (Modifier.isProtected(modifiers) && 331 int modifiers = 0; local 335 modifiers = field.getModifiers(); 338 // caller, tclass, null, modifiers); 349 if (!Modifier.isVolatile(modifiers)) 352 this.cclass = (Modifier.isProtected(modifiers) & [all...] |
/external/llvm/docs/CommandGuide/ |
llvm-ar.rst | 90 However, there are a few modifiers (*R*) that are not found in other ``ar`` 92 perform on the archive, a variety of modifiers for that operation, the name of 96 The Operations and Modifiers are explained in the sections below. The minimal 110 Delete files from the archive. No modifiers are applicable to this operation. 120 *i* modifiers apply to this operation. The *files* will all be moved 121 to the location given by the modifiers. If no modifiers are used, the files 140 modifiers apply to this operation. This operation quickly adds the 151 modifiers apply to this operation. This operation will replace existing 159 Print the table of contents. Without any modifiers, this operation just print [all...] |
/external/jdiff/src/jdiff/ |
API.java | 126 // Dump modifiers specific to a class 129 // Dump modifiers common to all 155 * Display the contents of the Modifiers object. 157 * @param c The given Modifiers object. 160 public static void dumpModifiers(Modifiers m, int indent) { 183 // Dump modifiers common to all 209 // Dump modifiers specific to a method 218 // Dump modifiers common to all 250 // Dump modifiers common to all
|
ClassDiff.java | 31 * A string describing the changes in modifiers. 144 /** Add a change in the modifiers. */
|
/external/webkit/Source/WebKit2/UIProcess/gtk/ |
WebView.cpp | 208 unsigned modifiers; member in struct:WebKit::KeyDownEntry 214 unsigned modifiers; member in struct:WebKit::KeyPressEntry 320 keyDownCommandsMap.set(keyDownEntries[i].modifiers << 16 | keyDownEntries[i].virtualKey, keyDownEntries[i].name); 323 keyPressCommandsMap.set(keyPressEntries[i].modifiers << 16 | keyPressEntries[i].charCode, keyPressEntries[i].name); 326 unsigned modifiers = 0; local 328 modifiers |= ShiftKey; 330 modifiers |= AltKey; 332 modifiers |= CtrlKey; 335 int mapKey = modifiers << 16 | event.nativeVirtualKeyCode();
|
/external/llvm/tools/llvm-stress/ |
llvm-stress.cpp | 623 // List of modifiers which add new random instructions. 624 std::vector<Modifier*> Modifiers; 634 Modifiers.push_back(LM.get()); 635 Modifiers.push_back(SM.get()); 636 Modifiers.push_back(EE.get()); 637 Modifiers.push_back(SHM.get()); 638 Modifiers.push_back(IE.get()); 639 Modifiers.push_back(BM.get()); 640 Modifiers.push_back(CM.get()); 641 Modifiers.push_back(SLM.get()) [all...] |
/external/webkit/Tools/DumpRenderTree/gtk/ |
EventSender.cpp | 115 bool prepareMouseButtonEvent(GdkEvent* event, int eventSenderButtonNumber, guint modifiers) 138 event->button.state = modifiers | getStateFlags(); 288 static guint gdkModifersFromJSValue(JSContextRef context, const JSValueRef modifiers) 290 // The value may either be a string with a single modifier or an array of modifiers. 291 if (JSValueIsString(context, modifiers)) 292 return gdkModifierFromJSValue(context, modifiers); 294 JSObjectRef modifiersArray = JSValueToObject(context, modifiers, 0); 312 guint modifiers = argumentCount >= 2 ? gdkModifersFromJSValue(context, arguments[1]) : 0; local 315 if (!prepareMouseButtonEvent(event, button, modifiers)) 356 guint modifiers = argumentCount >= 2 ? gdkModifersFromJSValue(context, arguments[1]) : 0 local [all...] |
/cts/tests/tests/holo/src/android/holo/cts/ |
LayoutAdapter.java | 21 import android.holo.cts.modifiers.CalendarViewModifier; 22 import android.holo.cts.modifiers.ProgressBarModifier; 23 import android.holo.cts.modifiers.SearchViewModifier; 24 import android.holo.cts.modifiers.TabHostModifier; 25 import android.holo.cts.modifiers.TimePickerModifier; 26 import android.holo.cts.modifiers.ViewPressedModifier;
|
/external/qemu/distrib/sdl-1.2.15/src/video/bwindow/ |
SDL_sysevents.cc | 322 int32 modifiers; local 328 if (msg->FindInt32("key", &key) == B_OK && msg->FindInt32("modifiers", &modifiers) == B_OK) { 360 int32 modifiers; local 361 if (msg->FindInt32("key", &key) == B_OK && msg->FindInt32("modifiers", &modifiers) == B_OK) {
|
/external/webkit/Source/WebCore/plugins/symbian/ |
PluginViewSymbian.cpp | 231 Qt::KeyboardModifiers modifiers = 0; local 233 modifiers |= Qt::ControlModifier; 235 modifiers |= Qt::AltModifier; 237 modifiers |= Qt::ShiftModifier; 239 modifiers |= Qt::MetaModifier; 240 QMouseEvent mouseEvent(type, position, button, button, modifiers);
|
/external/webkit/Source/WebKit2/UIProcess/ |
WebUIClient.cpp | 45 PassRefPtr<WebPageProxy> WebUIClient::createNewPage(WebPageProxy* page, const WindowFeatures& windowFeatures, WebEvent::Modifiers modifiers, WebMouseEvent::Button button) 68 return adoptRef(toImpl(m_client.createNewPage(toAPI(page), toAPI(featuresMap.get()), toAPI(modifiers), toAPI(button), m_client.clientInfo))); 150 void WebUIClient::mouseDidMoveOverElement(WebPageProxy* page, WebEvent::Modifiers modifiers, APIObject* userData) 155 m_client.mouseDidMoveOverElement(toAPI(page), toAPI(modifiers), toAPI(userData), m_client.clientInfo);
|
WebUIClient.h | 55 PassRefPtr<WebPageProxy> createNewPage(WebPageProxy*, const WebCore::WindowFeatures&, WebEvent::Modifiers, WebMouseEvent::Button); 68 void mouseDidMoveOverElement(WebPageProxy*, WebEvent::Modifiers, APIObject*);
|
/cts/tests/SignatureTest/src/android/tests/sigtest/ |
JDiffClassDescription.java | 144 static String convertModifiersToAccessLevel(int modifiers) { 146 if ((modifiers & Modifier.PUBLIC) != 0) { 148 } else if ((modifiers & Modifier.PRIVATE) != 0) { 150 } else if ((modifiers & Modifier.PROTECTED) != 0) { 158 static String convertModifersToModifierString(int modifiers) { 163 if ((modifiers & Modifier.ABSTRACT) != 0) { 171 if ((modifiers & Modifier.STATIC) != 0) { 179 if ((modifiers & Modifier.FINAL) != 0) { 187 if ((modifiers & Modifier.TRANSIENT) != 0) { 195 if ((modifiers & Modifier.VOLATILE) != 0) [all...] |
/external/webkit/Source/WebKit/chromium/src/mac/ |
WebInputEventFactory.mm | 496 int modifiers = 0; 499 modifiers |= WebInputEvent::ControlKey; 501 modifiers |= WebInputEvent::ShiftKey; 503 modifiers |= WebInputEvent::AltKey; 505 modifiers |= WebInputEvent::MetaKey; 507 modifiers |= WebInputEvent::CapsLockOn; 510 return modifiers; 543 result.modifiers = modifiersFromEvent(event); 546 result.modifiers |= WebInputEvent::IsKeyPad; 549 result.modifiers |= WebInputEvent::IsAutoRepeat [all...] |
/cts/tools/signature-tools/src/signature/model/ |
IClassDefinition.java | 89 * Returns the modifiers for this class definition. 91 * @return the modifiers for this class definition
|
/external/chromium/chrome/browser/ |
global_keyboard_shortcuts_mac.h | 26 // Check if a given keycode + modifiers (or keychar + modifiers if the
|
/external/emma/ant/ant15/com/vladium/emma/ant/ |
IANTVersion.java | 45 final int modifiers = m.getModifiers (); typedefs 46 if ((modifiers & Modifier.STATIC) != 0)
|
/external/webkit/Source/WebKit/qt/WebCoreSupport/ |
EditorClientQt.cpp | 360 unsigned modifiers; member in struct:WebCore::KeyDownEntry 393 keyDownCommandsMap.set(keyDownEntries[i].modifiers << 16 | keyDownEntries[i].virtualKey, keyDownEntries[i].editorCommand); 396 unsigned modifiers = 0; local 398 modifiers |= ShiftKey; 400 modifiers |= AltKey; 402 modifiers |= CtrlKey; 404 int mapKey = modifiers << 16 | event->keyCode(); 426 if (!kevent->modifiers()) {
|
/external/webkit/Tools/MiniBrowser/win/ |
BrowserView.cpp | 42 static WKPageRef createNewPage(WKPageRef page, WKDictionaryRef features, WKEventModifiers modifiers, WKEventMouseButton mouseButton, const void* clientInfo) 77 static void mouseDidMoveOverElement(WKPageRef page, WKEventModifiers modifiers, WKTypeRef userData, const void *clientInfo)
|
/external/webkit/Tools/TestWebKitAPI/Tests/WebKit2/ |
PageLoadBasic.cpp | 90 static void decidePolicyForNavigationAction(WKPageRef page, WKFrameRef frame, WKFrameNavigationType navigationType, WKEventModifiers modifiers, WKEventMouseButton mouseButton, WKURLRequestRef request, WKFramePolicyListenerRef listener, WKTypeRef userData, const void* clientInfo) 101 static void decidePolicyForNewWindowAction(WKPageRef page, WKFrameRef frame, WKFrameNavigationType navigationType, WKEventModifiers modifiers, WKEventMouseButton mouseButton, WKURLRequestRef request, WKStringRef frameName, WKFramePolicyListenerRef listener, WKTypeRef userData, const void* clientInfo)
|