Searched refs:intValue (Results 1 - 25 of 97) sorted by relevance

1234

/external/chromium/third_party/icu/source/test/cintltst/
H A Dcstrtest.c37 int32_t intValue=0; local
82 intValue=T_CString_stringToInteger("34556", 10);
83 if(intValue != 34556){
84 log_err("FAIL: ****T_CString_stringToInteger(\"34556\", 10) failed. Expected: 34556, Got: %d\n", intValue);
86 intValue=T_CString_stringToInteger("100", 16);
87 if(intValue != 256){
88 log_err("FAIL: ****T_CString_stringToInteger(\"100\", 16) failed. Expected: 256, Got: %d\n", intValue);
111 if((intValue=T_CString_stricmp(NULL, "first string is null") )!= -1){
112 log_err("FAIL: T_CString_stricmp() where the first string is null failed. Expected: -1, returned %d\n", intValue);
114 if((intValue
[all...]
/external/icu4c/test/cintltst/
H A Dcstrtest.c39 int32_t intValue=0; local
84 intValue=T_CString_stringToInteger("34556", 10);
85 if(intValue != 34556){
86 log_err("FAIL: ****T_CString_stringToInteger(\"34556\", 10) failed. Expected: 34556, Got: %d\n", intValue);
88 intValue=T_CString_stringToInteger("100", 16);
89 if(intValue != 256){
90 log_err("FAIL: ****T_CString_stringToInteger(\"100\", 16) failed. Expected: 256, Got: %d\n", intValue);
113 if((intValue=T_CString_stricmp(NULL, "first string is null") )!= -1){
114 log_err("FAIL: T_CString_stricmp() where the first string is null failed. Expected: -1, returned %d\n", intValue);
116 if((intValue
[all...]
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/x509/
H A DCRLReason.java94 super(reason.getValue().intValue());
100 int reason = getValue().intValue();
/external/icu4c/samples/udata/
H A Dwriter.c64 uint16_t intValue=2000; local
89 printf("Writing uint16_t value of %d\n", intValue);
90 udata_write16(pData, intValue);
100 size=sizeof(stringValue) + sizeof(intValue);
H A Dreader.c79 uint16_t intValue = 0; local
/external/webkit/WebCore/bridge/
H A Dtest.js5 myInterface.logMessage ("myInterface.intValue = " + myInterface.intValue);
H A DtestC.js5 myInterface.logMessage (" myInterface.intValue = " + myInterface.intValue);
H A Dtestbindings.cpp46 int intValue; member in struct:__anon6582
65 "intValue",
136 printf ("%d\n", message->value.intValue);
154 if (!NPN_VariantToInt32 (variant, &obj->intValue)) {
187 NPN_InitializeVariantWithInt32 (variant, obj->intValue);
300 newInstance->intValue = 1234;
/external/jsr305/ri/src/main/java/javax/annotation/
H A DNonnegative.java32 isNegative = value.intValue() < 0;
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DContentLength.java109 return contentLength.intValue();
H A DCSeq.java172 return this.seqno.intValue();
H A DRetryAfter.java135 return retryAfter.intValue();
/external/webkit/WebCore/bridge/objc/
H A Dobjc_utility.h49 int intValue; member in union:JSC::Bindings::__anon6577
/external/webkit/WebCore/css/
H A DCSSPrimitiveValue.cpp100 int intValue = static_cast<int>(value); local
101 if (value == intValue) {
102 RefPtr<CSSPrimitiveValue> primitiveValue = integerValueCache[intValue][type];
105 integerValueCache[intValue][type] = primitiveValue;
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/pkcs/
H A DRSAPrivateKeyStructure.java77 if (v.intValue() != 0 && v.intValue() != 1)
82 version = v.intValue();
H A DEncryptedData.java49 int version = ((DERInteger)seq.getObjectAt(0)).getValue().intValue();
H A DPfx.java26 if (version.intValue() != 3)
/external/icu4c/tools/gentest/
H A Dgentest.c106 uint16_t intValue=2000; local
120 udata_write16(pData, intValue);
129 size=sizeof(stringValue) + sizeof(intValue);
/external/apache-http/src/org/apache/http/conn/params/
H A DConnPerRouteBean.java100 return max.intValue();
/external/apache-http/src/org/apache/http/params/
H A DAbstractHttpParams.java74 return ((Integer)param).intValue();
/external/junit/src/junit/runner/
H A DBaseTestRunner.java256 int intValue= dflt;
258 return intValue;
260 intValue= Integer.parseInt(value);
263 return intValue;
/external/proguard/src/proguard/
H A DTargeter.java69 System.err.print(ClassUtil.externalClassVersion(classVersion.intValue()));
/external/webkit/WebKit/mac/DefaultDelegates/
H A DWebDefaultPolicyDelegate.m84 WebNavigationType navType = [[actionInformation objectForKey:WebActionNavigationTypeKey] intValue];
/external/webkit/WebKitTools/DumpRenderTree/mac/
H A DPolicyDelegate.mm53 WebNavigationType navType = (WebNavigationType)[[actionInformation objectForKey:WebActionNavigationTypeKey] intValue];
/external/oauth/core/src/main/java/net/oauth/
H A DOAuthProblemException.java98 return ((Number) code).intValue();

Completed in 404 milliseconds

1234