/external/wpa_supplicant_6/wpa_supplicant/src/eap_peer/ |
eap_gpsk.c | 57 return "GPSK-1"; 59 return "GPSK-3"; 61 return "SUCCESS"; 63 return "FAILURE"; 65 return "?"; 92 return NULL; 97 return NULL; 105 return NULL; 114 return NULL; 119 return data [all...] |
/external/wpa_supplicant_6/wpa_supplicant/src/eap_server/ |
eap_vendor_test.c | 34 return "INIT"; 36 return "CONFIRM"; 38 return "SUCCESS"; 40 return "FAILURE"; 42 return "?"; 63 return NULL; 66 return data; 88 return NULL; 93 return req; 106 return TRUE [all...] |
/frameworks/base/awt/java/awt/font/ |
FontRenderContext.java | 84 * @return true, if the specified Object is equal to current 90 return true; 95 return equals((FontRenderContext) obj); 97 return false; 100 return false; 108 * @return the AffineTransform which is used for scaling typographical 113 return new AffineTransform(transform); 115 return new AffineTransform(); 124 * @return true, if the specified FontRenderContext object is equal to 129 return true [all...] |
/packages/inputmethods/OpenWnn/libs/libwnnDictionary/engine/ |
neapi.c | 36 return NJ_SET_ERR_VAL(NJ_FUNC_NJ_SELECT, NJ_ERR_PARAM_ENV_NULL); 41 return NJ_SET_ERR_VAL(NJ_FUNC_NJ_SELECT, NJ_ERR_NO_RULEDIC); 49 return ret; 55 return 0; 62 return NJ_SET_ERR_VAL(NJ_FUNC_NJ_INIT, NJ_ERR_PARAM_ENV_NULL); 67 return 0; 76 return NJ_SET_ERR_VAL(NJ_FUNC_NJ_GET_CANDIDATE, NJ_ERR_PARAM_ENV_NULL); 79 return NJ_SET_ERR_VAL(NJ_FUNC_NJ_GET_CANDIDATE, NJ_ERR_PARAM_RESULT_NULL); 83 return NJ_SET_ERR_VAL(NJ_FUNC_NJ_GET_CANDIDATE, NJ_ERR_BUFFER_NOT_ENOUGH); 97 return ret [all...] |
/packages/inputmethods/PinyinIME/jni/share/ |
utf16char.cpp | 29 return NULL; 51 return NULL; 59 return ret_val; 64 return 0; 81 return value*sign; 87 if (utf16_strlen(utf16_str) >= 256) return 0; 90 return atof(char8); 95 return 0; 100 return size; 108 return static_cast<int>(str1[pos]) - static_cast<int>(str2[pos]) [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/configurations/ |
CountryCodeQualifier.java | 44 * @return a new {@link CountryCodeQualifier} object or <code>null</code> 56 return null; 60 return qualifier; 63 return null; 73 return String.format("mcc%1$d", code); //$NON-NLS-1$ 76 return ""; //$NON-NLS-1$ 88 return mCode; 93 return NAME; 98 return "Country Code"; 103 return IconFactory.getInstance().getIcon("mcc"); //$NON-NLS-1 [all...] |
/system/netd/ |
NatController.cpp | 59 return -1; 64 return logwrap(i, args, 0); 70 return -1; 72 return -1; 74 return -1; 76 return -1; 78 return -1; 80 return -1; 82 return -1; 83 return 0 [all...] |
/external/webkit/WebKit/chromium/src/mac/ |
WebInputEventFactory.mm | 54 return [event type] == NSKeyUp; 60 return ([event modifierFlags] & NSCommandKeyMask) == 0; 63 return ([event modifierFlags] & NSAlphaShiftKeyMask) == 0; 67 return ([event modifierFlags] & NSShiftKeyMask) == 0; 71 return ([event modifierFlags] & NSAlternateKeyMask) == 0; 75 return ([event modifierFlags] & NSControlKeyMask) == 0; 78 return ([event modifierFlags] & NSFunctionKeyMask) == 0; 80 return false; 92 return false; 96 return true [all...] |
/external/webkit/WebCore/rendering/ |
RenderObject.h | 121 return type == o.type && bounds == o.bounds && clip == o.clip && label == o.label; 125 return !(*this == o); 152 RenderObject* parent() const { return m_parent; } 155 RenderObject* previousSibling() const { return m_previous; } 156 RenderObject* nextSibling() const { return m_next; } 161 return children->firstChild(); 162 return 0; 167 return children->lastChild(); 168 return 0; 170 virtual RenderObjectChildList* virtualChildren() { return 0; [all...] |
/external/webkit/SunSpider/tests/sunspider-0.9/ |
date-format-xparb.js | 23 return this[func](); 29 var code = "Date.prototype." + funcName + " = function(){return "; 51 return "String.leftPad(this.getDate(), 2, '0') + "; 53 return "Date.dayNames[this.getDay()].substring(0, 3) + "; 55 return "this.getDate() + "; 57 return "Date.dayNames[this.getDay()] + "; 59 return "this.getSuffix() + "; 61 return "this.getDay() + "; 63 return "this.getDayOfYear() + "; 65 return "this.getWeekOfYear() + " [all...] |
/external/webkit/SunSpider/tests/sunspider-0.9.1/ |
date-format-xparb.js | 23 return this[func](); 29 var code = "Date.prototype." + funcName + " = function(){return "; 51 return "String.leftPad(this.getDate(), 2, '0') + "; 53 return "Date.dayNames[this.getDay()].substring(0, 3) + "; 55 return "this.getDate() + "; 57 return "Date.dayNames[this.getDay()] + "; 59 return "this.getSuffix() + "; 61 return "this.getDay() + "; 63 return "this.getDayOfYear() + "; 65 return "this.getWeekOfYear() + " [all...] |
/external/v8/src/ |
date.js | 52 if (mod == 0) return 0; 53 return mod >= 0 ? mod : mod + remainder; 58 return Modulo(time, msPerDay); 64 if (year % 4 != 0) return 365; 65 if ((year % 100 == 0) && (year % 400 != 0)) return 365; 66 return 366; 71 return 365 * (year-1970) 79 return msPerDay * DayFromYear(year); 84 return DaysInYear(YEAR_FROM_TIME(time)) == 366 ? 1 : 0; 89 return DAY(time) - DayFromYear(YEAR_FROM_TIME(time)) [all...] |
runtime.js | 55 if (IS_STRING(this) && IS_STRING(y)) return %StringEquals(this, y); 63 if (y == null) return 1; // not equal 64 return %NumberEquals(x, %ToNumber(y)); 66 if (IS_STRING(y)) return %StringEquals(x, y); 67 if (IS_NUMBER(y)) return %NumberEquals(%ToNumber(x), y); 68 if (IS_BOOLEAN(y)) return %NumberEquals(%ToNumber(x), %ToNumber(y)); 69 if (y == null) return 1; // not equal 73 return %_ObjectEquals(x, y) ? 0 : 1; 75 if (y == null) return 1; // not equal 76 return %NumberEquals(%ToNumber(x), %ToNumber(y)) [all...] |
/dalvik/libcore/openssl/src/main/native/ |
BNInterface.c | 37 return FALSE; 39 return TRUE; 44 return isValidHandle(env, a, "Mandatory handle (first) passed as null"); 49 if (!oneValidHandle(env, a)) return FALSE; 50 return isValidHandle(env, b, "Mandatory handle (second) passed as null"); 55 if (!twoValidHandles(env, a, b)) return FALSE; 56 return isValidHandle(env, c, "Mandatory handle (third) passed as null"); 61 if (!threeValidHandles(env, a, b, c)) return FALSE; 62 return isValidHandle(env, d, "Mandatory handle (fourth) passed as null"); 71 return e [all...] |
/external/qemu/distrib/libpng-1.2.19/ |
pngget.c | 20 return(info_ptr->valid & flag); 22 return(0); 29 return(info_ptr->rowbytes); 31 return(0); 39 return(info_ptr->row_pointers); 41 return(0); 52 return info_ptr->width; 54 return (0); 62 return info_ptr->height; 64 return (0) [all...] |
/dalvik/dx/src/com/android/dx/rop/cst/ |
CstBoolean.java | 33 * Makes an instance for the given value. This will return an 37 * @return {@code non-null;} the appropriate instance 40 return value ? VALUE_TRUE : VALUE_FALSE; 45 * will return an already-allocated instance. 48 * @return {@code non-null;} the appropriate instance 52 return VALUE_FALSE; 54 return VALUE_TRUE; 72 return getValue() ? "boolean{true}" : "boolean{false}"; 77 return Type.BOOLEAN; 83 return "boolean" [all...] |
/dalvik/libcore/luni/src/main/native/ |
java_io_ObjectStreamClass.c | 28 return NULL; 35 return NULL; 40 return (*env)->CallNonvirtualObjectMethod(env, reflectField, 52 return NULL; 58 return NULL; 62 return (*env)->CallNonvirtualObjectMethod(env, reflectMethod, 76 return NULL; 82 return NULL; 86 return (*env)->CallNonvirtualObjectMethod(env, reflectConstructor, 97 * Can I just return mid and rely on typecast to convert to jboolean ? [all...] |
/dalvik/libcore/security/src/main/java/org/apache/harmony/security/x501/ |
AttributeTypeAndValueComparator.java | 45 * @return -1 of first AttributeTypeAndValue "less" than second 50 return 0; 58 return -1; 61 return 1; 64 return kw1.compareTo(kw2); 67 return compateOids(atav1.getType(), atav2.getType()); 77 * @return -1 of first OID "less" than second OID 1 otherwise, 0 if they are 82 return 0; 90 return -1; 93 return 1 [all...] |
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/ |
ASN1OctetString.java | 15 * return an Octet String from a tagged object. 27 return getInstance(obj.getObject()); 31 * return an Octet String from the given object. 41 return (ASN1OctetString)obj; 46 return getInstance(((ASN1TaggedObject)obj).getObject()); 59 return new BERConstructedOctetString(v); 95 return string; 108 return value; 116 return false; 126 return false [all...] |
/dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/x509/ |
AttributeCertificateInfo.java | 29 return getInstance(ASN1Sequence.getInstance(obj, explicit)); 37 return (AttributeCertificateInfo)obj; 41 return new AttributeCertificateInfo((ASN1Sequence)obj); 80 return version; 85 return holder; 90 return issuer; 95 return signature; 100 return serialNumber; 105 return attrCertValidityPeriod; 110 return attributes [all...] |
/dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/ |
BufferedAsymmetricBlockCipher.java | 26 * return the underlying cipher for the buffer. 28 * @return the underlying cipher for the buffer. 32 return cipher; 36 * return the amount of data sitting in the buffer. 38 * @return the amount of data sitting in the buffer. 42 return bufOff; 67 * @return maximum size for an input block. 71 return cipher.getInputBlockSize(); 77 * @return maximum size of the output block produced by the cipher. 81 return cipher.getOutputBlockSize() [all...] |
/dalvik/libcore/security/src/main/java/org/bouncycastle/jce/provider/ |
JCERSAPublicKey.java | 62 * return the modulus. 64 * @return the modulus. 68 return modulus; 72 * return the public exponent. 74 * @return the public exponent. 78 return publicExponent; 83 return "RSA"; 88 return "X.509"; 97 return info.getDEREncoded(); 104 return false [all...] |
/dalvik/libcore/xml/src/test/java/tests/org/w3c/dom/ |
DocumentBuilderSettingStrategy.java | 16 return (other == this); 31 return factory.isCoalescing(); 42 return factory.isExpandEntityReferences(); 52 return factory.isIgnoringElementContentWhitespace(); 64 return false; 75 return factory.isNamespaceAware(); 86 return factory.isValidating(); 99 return true; 112 return true; 136 return W3C_XML_SCHEMA.equals(val) [all...] |
/external/clearsilver/util/ |
neo_err.c | 63 return INTERNAL_ERR; 65 return err; 74 return err; 80 return 0; 94 return 0; 105 return err; 116 return err; 128 return err; 143 return err; 151 return err [all...] |
/external/expat/lib/ |
xmltok_ns.c | 11 return &ns(internal_utf8_encoding).enc; 18 return &ns(internal_little2_encoding).enc; 20 return &ns(internal_big2_encoding).enc; 23 return (*(const char *)&n 43 return initScan(NS(encodings), (const INIT_ENCODING *)enc, 51 return initScan(NS(encodings), (const INIT_ENCODING *)enc, 61 return 0; 68 return 1; 80 return 0; 83 return enc [all...] |