/external/quake/quake/src/QW/scitech/include/ |
debug.h | 47 #define __cdecl /* GCC doesn't know about __cdecl modifiers */
159 * _VARAPI - Modifiers for variables; Watcom C++ mangles C++ globals
|
/external/quake/quake/src/WinQuake/scitech/INCLUDE/ |
DEBUG.H | 47 #define __cdecl /* GCC doesn't know about __cdecl modifiers */
159 * _VARAPI - Modifiers for variables; Watcom C++ mangles C++ globals
|
/external/webkit/WebCore/bridge/jni/ |
JNIBridge.cpp | 102 int modifiers = callJNIMethod<jint>(aMethod, "getModifiers", "()I"); local 103 m_isStatic = static_cast<bool>(callJNIStaticMethod<jboolean>(modifierClass, "isStatic", "(I)Z", modifiers));
|
/external/webkit/WebCore/inspector/front-end/ |
CallStackSidebarPane.js | 33 WebInspector.KeyboardShortcut.Modifiers.Ctrl); 37 WebInspector.KeyboardShortcut.Modifiers.Ctrl);
|
/external/webkit/WebCore/platform/ |
PlatformKeyboardEvent.h | 102 // Text that would have been generated by the keyboard if no modifiers were pressed 123 unsigned modifiers() const { function in class:WebCore::PlatformKeyboardEvent
|
/external/webkit/WebKit/win/ |
AccessibleBase.cpp | 365 unsigned modifiers = EventHandler::accessKeyModifiers(); local 369 if (modifiers & PlatformKeyboardEvent::CtrlKey) 371 if (modifiers & PlatformKeyboardEvent::AltKey) 373 if (modifiers & PlatformKeyboardEvent::ShiftKey) 375 if (modifiers & PlatformKeyboardEvent::MetaKey)
|
/frameworks/base/core/java/android/view/ |
KeyCharacterMap.java | 150 * @param modifiers the modifier bits to prefer. If any of these bits 154 public char getMatch(int keyCode, char[] chars, int modifiers) 160 return getMatch_native(mPointer, keyCode, chars, modifiers); 199 * <tr><td>0</td><td>no modifiers</td></tr> 386 char[] chars, int modifiers);
|
/development/pdk/docs/porting/ |
keymaps_keyboard_input.jd | 186 <li>Column definitions: Column definitions follow the syntax <code>columns MODIFIERS [...]</code>, where <code>MODIFIERS</code> are defined as follows: 189 <th scope="col">Character in MODIFIERS</th> 190 <th scope="col">Corresponding bit in the modifiers</th> 194 <td>no modifiers</td> 322 <td>The number of entries in the modifiers table (COLS)</td> 339 <td>Modifiers table. The modifier mask values that each of the
|
/external/proguard/src/proguard/ |
ConfigurationParser.java | 429 // Read the keep modifiers. 438 // Not a comma. Stop parsing the keep modifiers. 508 // Clear the class access modifiers. 512 // Parse the class annotations and access modifiers until the class keyword. 532 // Parse the class access modifiers. 576 throw new ParseException("Conflicting class access modifiers for '" + strippedWord + [all...] |
/frameworks/base/awt/java/awt/ |
MouseDispatcher.java | 126 private void checkMouseEnterExit(int modifiers, long when) { 141 // postMouseEnterExit(MouseEvent.MOUSE_EXITED, modifiers, when, 146 // postMouseEnterExit(MouseEvent.MOUSE_ENTERED, modifiers, when,
|
/frameworks/base/core/java/com/android/internal/os/ |
RuntimeInit.java | 213 int modifiers = m.getModifiers(); local 214 if (! (Modifier.isStatic(modifiers) && Modifier.isPublic(modifiers))) {
|
/cts/tools/signature-tools/templates/ |
ClassOverviewPage.st | 29 $if(class_delta.modifierDeltas)$ $MultiSubDelta(desc="Modifiers Changed:", deltas=class_delta.modifierDeltas)$ $endif$
|
/dalvik/libcore/luni-kernel/src/main/java/java/lang/reflect/ |
Constructor.java | 141 // append modifiers if any 321 * Returns the modifiers for this constructor. The {@link Modifier} class 324 * @return the modifiers for this constructor 459 * <li>modifiers (if any)
|
/dalvik/tests/046-reflect/ |
expected.txt | 87 cons modifiers=1
|
/development/tools/mkstubs/src/com/android/mkstubs/sourcer/ |
AccessSourcer.java | 26 * desribing the access modifiers for a Java source.
|
/external/opencore/pvmi/pvmf/include/ |
pvmi_fileio_kvp.h | 23 * File type modifiers. These may be used with any of the KVPs
|
/external/proguard/src/proguard/classfile/editor/ |
AccessFixer.java | 30 * This ConstantVisitor fixes the access modifiers of all classes and class
|
/external/qemu/distrib/sdl-1.2.12/include/ |
SDL_keyboard.h | 57 SDLMod mod; /* current key modifiers */
|
/external/webkit/WebKit/chromium/src/ |
ChromeClientImpl.cpp | 256 bool ctrl = mouseEvent->modifiers & WebMouseEvent::ControlKey; 257 bool shift = mouseEvent->modifiers & WebMouseEvent::ShiftKey; 258 bool alt = mouseEvent->modifiers & WebMouseEvent::AltKey; 259 bool meta = mouseEvent->modifiers & WebMouseEvent::MetaKey;
|
/prebuilt/darwin-x86/sdl/include/SDL/ |
SDL_keyboard.h | 57 SDLMod mod; /* current key modifiers */
|
/prebuilt/linux-x86/sdl/include/SDL/ |
SDL_keyboard.h | 57 SDLMod mod; /* current key modifiers */
|
/prebuilt/windows/sdl/host/include/SDL/ |
SDL_keyboard.h | 61 SDLMod mod; /* current key modifiers */
|
/prebuilt/windows/sdl/include/SDL/ |
SDL_keyboard.h | 57 SDLMod mod; /* current key modifiers */
|
/external/emma/core/java12/com/vladium/jcd/cls/ |
Field_info.java | 32 * The value of the access_flags item is a mask of modifiers used to describe 144 return "field_info: [modifiers: 0x" + Integer.toHexString(m_access_flags) + ", name_index = " + m_name_index + ", descriptor_index = " + m_descriptor_index + ']';
|
Method_info.java | 33 * The value of the access_flags item is a mask of modifiers used to describe 163 s.append ("method_info: [modifiers: 0x" + Integer.toHexString(m_access_flags) + ", name_index = " + m_name_index + ", descriptor_index = " + m_descriptor_index + "]\n");
|