/external/chromium_org/mojo/system/ |
message_in_transit.h | 29 typedef uint16_t Subtype; 31 static const Subtype kSubtypeMessagePipeEndpointData = 0; 33 static const Subtype kSubtypeMessagePipePeerClosed = 0; 43 // Creates a |MessageInTransit| of the given |type| and |subtype|, with the 45 static MessageInTransit* Create(Type type, Subtype subtype, 69 Subtype subtype() const { return subtype_; } function in class:mojo::system::MessageInTransit 86 explicit MessageInTransit(uint32_t size, Type type, Subtype subtype) [all...] |
message_in_transit.cc | 36 STATIC_CONST_MEMBER_DEFINITION const MessageInTransit::Subtype 38 STATIC_CONST_MEMBER_DEFINITION const MessageInTransit::Subtype 46 Subtype subtype, 60 new (buffer) MessageInTransit(num_bytes, type, subtype);
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
Constants.java | 65 public static final class Subtype { 67 * The subtype mode used to indicate that the subtype is a keyboard. 73 * The subtype extra value used to indicate that the subtype keyboard layout is capable 79 * The subtype extra value used to indicate that the subtype keyboard layout is capable 84 * The subtype extra value used to indicate that the subtype require network connection 90 * The subtype extra value used to indicate that the subtype display name contains "%s [all...] |
SubtypeSwitcher.java | 19 import static com.android.inputmethod.latin.Constants.Subtype.ExtraValue.REQ_NETWORK_CONNECTIVITY; 59 // Dummy no language QWERTY subtype. See {@link R.xml.method}. 64 + "," + Constants.Subtype.ExtraValue.ASCII_CAPABLE 66 + Constants.Subtype.ExtraValue.EMOJI_CAPABLE, 68 // Caveat: We probably should remove this when we add an Emoji subtype in {@link R.xml.method}. 69 // Dummy Emoji subtype. See {@link R.xml.method}. 74 + Constants.Subtype.ExtraValue.EMOJI_CAPABLE, 153 // TODO: Pick up the first found subtype for now. Should handle all subtypes 167 // Update the current subtype. LatinIME.onCurrentInputMethodSubtypeChanged calls this function. 199 private void switchToTargetIME(final String imiId, final InputMethodSubtype subtype, [all...] |
RichInputMethodManager.java | 19 import static com.android.inputmethod.latin.Constants.Subtype.KEYBOARD_MODE; 138 Log.w(TAG, "Can't find current subtype in enabled subtypes: subtype=" 144 // The current subtype is the last or only enabled one and it needs to switch to 166 // The next IME has no subtype. 208 final InputMethodSubtype subtype = imi.getSubtypeAt(index); local 209 if (!subtype.isAuxiliary()) { 224 public boolean checkIfSubtypeBelongsToThisImeAndEnabled(final InputMethodSubtype subtype) { 225 return checkIfSubtypeBelongsToImeAndEnabled(mInputMethodInfoOfThisIme, subtype); 229 final InputMethodSubtype subtype) { 346 final InputMethodSubtype subtype = myImi.getSubtypeAt(i); local [all...] |
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/ |
AdditionalSubtypeUtils.java | 19 import static com.android.inputmethod.latin.Constants.Subtype.KEYBOARD_MODE; 20 import static com.android.inputmethod.latin.Constants.Subtype.ExtraValue.IS_ADDITIONAL_SUBTYPE; 21 import static com.android.inputmethod.latin.Constants.Subtype.ExtraValue.KEYBOARD_LAYOUT_SET; 22 import static com.android.inputmethod.latin.Constants.Subtype.ExtraValue.UNTRANSLATABLE_STRING_IN_SUBTYPE_NAME; 41 public static boolean isAdditionalSubtype(final InputMethodSubtype subtype) { 42 return subtype.containsExtraValueKey(IS_ADDITIONAL_SUBTYPE); 69 public static String getPrefSubtype(final InputMethodSubtype subtype) { 70 final String localeString = subtype.getLocale(); 71 final String keyboardLayoutSetName = SubtypeLocaleUtils.getKeyboardLayoutSetName(subtype); 75 IS_ADDITIONAL_SUBTYPE, subtype.getExtraValue())) 101 final InputMethodSubtype subtype = createAdditionalSubtype(prefSubtype); local [all...] |
SubtypeLocaleUtils.java | 19 import static com.android.inputmethod.latin.Constants.Subtype.ExtraValue.KEYBOARD_LAYOUT_SET; 20 import static com.android.inputmethod.latin.Constants.Subtype.ExtraValue.UNTRANSLATABLE_STRING_IN_SUBTYPE_NAME; 52 // Keyboard layout to subtype name resource id map. 55 // Exceptional locale to subtype name resource id map. 58 // Exceptional locale to subtype name with layout resource id map. 70 // This is for compatibility to keep the same subtype ids as pre-JellyBean. 95 // Register subtype name resource id of "No language" with key "zz_<layout>" 182 // No language subtype should be displayed in system locale. 207 private static String getReplacementString(final InputMethodSubtype subtype, 210 && subtype.containsExtraValueKey(UNTRANSLATABLE_STRING_IN_SUBTYPE_NAME)) [all...] |
/external/jmdns/src/javax/jmdns/impl/ |
ServiceInfoImpl.java | 119 * @param subtype 127 public ServiceInfoImpl(String type, String name, String subtype, int port, int weight, int priority, boolean persistent, String text) { 128 this(ServiceInfoImpl.decodeQualifiedNameMap(type, name, subtype), port, weight, priority, persistent, (byte[]) null); 142 * @param subtype 150 public ServiceInfoImpl(String type, String name, String subtype, int port, int weight, int priority, boolean persistent, Map<String, ?> props) { 151 this(ServiceInfoImpl.decodeQualifiedNameMap(type, name, subtype), port, weight, priority, persistent, textFromProperties(props)); 157 * @param subtype 165 public ServiceInfoImpl(String type, String name, String subtype, int port, int weight, int priority, boolean persistent, byte text[]) { 166 this(ServiceInfoImpl.decodeQualifiedNameMap(type, name, subtype), port, weight, priority, persistent, text); 192 this._subtype = map.get(Fields.Subtype); 253 String subtype = ""; local 345 String subtype = (qualifiedNameMap.containsKey(Fields.Subtype) ? qualifiedNameMap.get(Fields.Subtype) : ""); local 388 String subtype = this.getSubtype(); local [all...] |
DNSEntry.java | 81 * Check if two entries have the same subtype. 84 * @return <code>true</code> if the two entries have are for the same subtype, <code>false</code> otherwise 91 * Returns the subtype of this entry 93 * @return subtype of this entry 96 String subtype = this.getQualifiedNameMap().get(Fields.Subtype); local 97 return (subtype != null ? subtype : "");
|
DNSRecord.java | 505 map.put(Fields.Subtype, this.getQualifiedNameMap().get(Fields.Subtype)); [all...] |
JmDNSImpl.java | 125 public SubTypeEntry(String subtype) { 127 _value = (subtype != null ? subtype : ""); 228 * @param subtype 232 public boolean contains(String subtype) { 233 return subtype != null && this.containsKey(subtype.toLowerCase()); 240 * @param subtype 244 public boolean add(String subtype) { 245 if (subtype == null || this.contains(subtype)) 1087 String subtype = map.get(Fields.Subtype); local 1962 String subtype = info.getSubtype().toLowerCase(); local 2045 String subtype = (info != null ? info.getSubtype() : ""); local [all...] |
/external/llvm/lib/Target/ARM/MCTargetDesc/ |
ARMAsmBackend.cpp | 643 const object::mach::CPUSubtypeARM Subtype; 646 : ARMAsmBackend(T, TT), Subtype(st) { 653 Subtype);
|
/external/jmdns/src/javax/jmdns/ |
ServiceInfo.java | 29 * <li><sub>: This is the subtype for the application protocol</li> 61 * Subtype Field. 63 Subtype 90 * @param subtype 91 * service subtype see draft-cheshire-dnsext-dns-sd-06.txt chapter 7.1 Selective Instance Enumeration 98 public static ServiceInfo create(final String type, final String name, final String subtype, final int port, final String text) { 99 return new ServiceInfoImpl(type, name, subtype, port, 0, 0, false, text); 130 * @param subtype 131 * service subtype see draft-cheshire-dnsext-dns-sd-06.txt chapter 7.1 Selective Instance Enumeration 142 public static ServiceInfo create(final String type, final String name, final String subtype, final int port, final int weight, final int priority, final String text) [all...] |
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/ |
KeyboardId.java | 19 import static com.android.inputmethod.latin.Constants.Subtype.ExtraValue.KEYBOARD_LAYOUT_SET;
|
KeyboardLayoutSet.java | 23 import static com.android.inputmethod.latin.Constants.Subtype.ExtraValue.ASCII_CAPABLE; 242 public Builder setSubtype(final InputMethodSubtype subtype) { 243 final boolean asciiCapable = subtype.containsExtraValueKey(ASCII_CAPABLE); 252 : subtype; 286 throw new RuntimeException("KeyboardLayoutSet subtype is not specified");
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/settings/ |
AdditionalSubtypeSettings.java | 19 import static com.android.inputmethod.latin.Constants.Subtype.ExtraValue.ASCII_CAPABLE; 108 final InputMethodSubtype subtype = imi.getSubtypeAt(i); local 111 subtype.getLocale(), subtype.hashCode(), subtype.hashCode(), 112 SubtypeLocaleUtils.getSubtypeDisplayNameInSystemLocale(subtype))); 114 if (subtype.containsExtraValueKey(ASCII_CAPABLE)) { 115 items.add(createItem(context, subtype.getLocale())); 134 public KeyboardLayoutSetItem(final InputMethodSubtype subtype) { 135 super(SubtypeLocaleUtils.getKeyboardLayoutSetName(subtype), 153 final InputMethodSubtype subtype = AdditionalSubtypeUtils.createAdditionalSubtype( local 289 final InputMethodSubtype subtype = AdditionalSubtypeUtils.createAdditionalSubtype( local [all...] |
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/research/ |
ResearchLogger.java | 19 import static com.android.inputmethod.latin.Constants.Subtype.ExtraValue.KEYBOARD_LAYOUT_SET; [all...] |
/cts/suite/cts/deviceTests/browserbench/assets/octane/ |
pdfjs.js | [all...] |
/external/grub/docs/ |
texinfo.tex | [all...] |
/external/bison/build-aux/ |
texinfo.tex | [all...] |
/ndk/sources/host-tools/sed-4.2.1/build-aux/ |
texinfo.tex | [all...] |