HomeSort by relevance Sort by last modified time
    Searched full:nametype (Results 1 - 25 of 56) sorted by null

1 2 3

  /external/jmdns/src/javax/jmdns/impl/
NameRegister.java 16 public enum NameType {
31 * @see javax.jmdns.impl.NameRegister#register(java.net.InetAddress, java.lang.String, javax.jmdns.impl.NameRegister.NameType)
34 public void register(InetAddress networkInterface, String name, NameType type) {
41 * @see javax.jmdns.impl.NameRegister#checkName(java.net.InetAddress, java.lang.String, javax.jmdns.impl.NameRegister.NameType)
44 public boolean checkName(InetAddress networkInterface, String name, NameType type) {
51 * @see javax.jmdns.impl.NameRegister#incrementHostName(java.net.InetAddress, java.lang.String, javax.jmdns.impl.NameRegister.NameType)
54 public String incrementHostName(InetAddress networkInterface, String name, NameType type) {
65 * @see javax.jmdns.impl.NameRegister#register(java.net.InetAddress, java.lang.String, javax.jmdns.impl.NameRegister.NameType)
68 public void register(InetAddress networkInterface, String name, NameType type) {
75 * @see javax.jmdns.impl.NameRegister#checkName(java.net.InetAddress, java.lang.String, javax.jmdns.impl.NameRegister.NameType)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/checks/
AstUtil.java 42 int nameType = parent.getFirstChild().getType();
44 return nameType == Token.NAME || nameType == Token.GETPROP
  /external/chromium_org/v8/src/
func-name-inferrer.h 79 enum NameType {
85 Name(const AstRawString* name, NameType type) : name(name), type(type) {}
87 NameType type;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
lmjoin.h 39 NET_API_STATUS WINAPI NetValidateName(LPCWSTR lpServer,LPCWSTR lpName,LPCWSTR lpAccount,LPCWSTR lpPassword,NETSETUP_NAME_TYPE NameType);
53 NET_API_STATUS WINAPI NetEnumerateComputerNames(LPCWSTR Server,NET_COMPUTER_NAME_TYPE NameType,ULONG Reserved,PDWORD EntryCount,LPWSTR **ComputerNames);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/util/
ContactMatcher.java 136 * corresponding to the {@code candidateNameType} and {@code nameType}.
138 private static void setScoreRange(int candidateNameType, int nameType, int scoreFrom, int scoreTo) {
139 int index = nameType * NameLookupType.TYPE_COUNT + candidateNameType;
146 * {@code nameType}.
148 private static int getMinScore(int candidateNameType, int nameType) {
149 int index = nameType * NameLookupType.TYPE_COUNT + candidateNameType;
155 * {@code nameType}.
157 private static int getMaxScore(int candidateNameType, int nameType) {
158 int index = nameType * NameLookupType.TYPE_COUNT + candidateNameType;
282 int nameType, String name, int algorithm)
    [all...]