Searched defs:stringValue (Results 1 - 25 of 62) sorted by relevance

123

/external/guava/guava/src/com/google/common/primitives/
H A DParseRequest.java32 static ParseRequest fromString(String stringValue) { argument
33 if (stringValue.length() == 0) {
40 char firstChar = stringValue.charAt(0);
41 if (stringValue.startsWith("0x") || stringValue.startsWith("0X")) {
42 rawValue = stringValue.substring(2);
45 rawValue = stringValue.substring(1);
47 } else if (firstChar == '0' && stringValue.length() > 1) {
48 rawValue = stringValue.substring(1);
51 rawValue = stringValue;
[all...]
H A DUnsignedInts.java211 public static int decode(String stringValue) { argument
212 ParseRequest request = ParseRequest.fromString(stringValue);
218 new NumberFormatException("Error parsing value: " + stringValue);
H A DUnsignedLongs.java269 public static long decode(String stringValue) { argument
270 ParseRequest request = ParseRequest.fromString(stringValue);
276 new NumberFormatException("Error parsing value: " + stringValue);
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/linear/
H A DRelationship.java37 private final String stringValue; field in class:Relationship
40 * @param stringValue display string for the relationship
42 private Relationship(String stringValue) { argument
43 this.stringValue = stringValue;
49 return stringValue;
/external/icu/icu4c/source/samples/udata/
H A Dwriter.c69 char stringValue[]={'E', 'X', 'A', 'M', 'P', 'L', 'E', '\0'}; local
97 printf("Writing string value of %s\n", stringValue);
98 udata_writeString(pData, stringValue, sizeof(stringValue));
106 size=sizeof(stringValue) + sizeof(intValue);
/external/protobuf/objectivec/google/protobuf/
H A DStruct.pbobjc.h119 @property(nonatomic, readwrite, copy, null_resettable) NSString *stringValue; variable
/external/deqp/framework/qphelper/
H A DqpXmlWriter.h47 const char* stringValue; member in struct:qpXmlAttribute_s
57 attrib.stringValue = value;
68 attrib.stringValue = "<intAttrib>";
79 attrib.stringValue = "<boolAttrib>";
/external/icu/icu4c/source/tools/gentest/
H A Dgentest.c106 char stringValue[]={'Y', 'E', 'A', 'R', '\0'}; local
122 udata_writeString(pData, stringValue, sizeof(stringValue));
130 size=sizeof(stringValue) + sizeof(intValue);
/external/protobuf/csharp/src/Google.Protobuf/
H A DJsonToken.cs60 return new JsonToken(TokenType.Name, stringValue: name);
65 return new JsonToken(TokenType.StringValue, stringValue: value);
94 private readonly string stringValue; field in class:Google.Protobuf.JsonToken
98 internal string StringValue { get { return stringValue; } }
101 private JsonToken(TokenType type, string stringValue = null, double numberValue = 0)
104 this.stringValue = stringValue;
119 hash = hash * 31 + stringValue == null ? 0 : stringValue.GetHashCode();
136 return "name (" + stringValue
[all...]
/external/guice/core/src/com/google/inject/internal/
H A DInheritingState.java106 String stringValue, TypeLiteral<?> type, Errors errors, Object source) {
112 errors.ambiguousTypeConversion(stringValue, source, type, matchingConverter, converter);
105 getConverter( String stringValue, TypeLiteral<?> type, Errors errors, Object source) argument
H A DState.java75 public TypeConverterBinding getConverter(String stringValue, TypeLiteral<?> type, Errors errors,
160 String stringValue, TypeLiteral<?> type, Errors errors, Object source);
159 getConverter( String stringValue, TypeLiteral<?> type, Errors errors, Object source) argument
H A DErrors.java168 public Errors converterReturnedNull(String stringValue, Object source, argument
172 stringValue, convert(source), type, typeConverterBinding);
175 public Errors conversionTypeError(String stringValue, Object source, TypeLiteral<?> type, argument
180 stringValue, convert(source), type, typeConverterBinding, converted);
183 public Errors conversionError(String stringValue, Object source, argument
188 stringValue, convert(source), type, typeConverterBinding, cause);
191 public Errors ambiguousTypeConversion(String stringValue, Object source, TypeLiteral<?> type, argument
197 stringValue, convert(source), type, a, b);
/external/guice/core/test/com/google/inject/internal/
H A DWeakKeySetTest.java462 public TypeConverterBinding getConverter(String stringValue, TypeLiteral<?> type, Errors errors, argument
/external/junit-params/src/test/java/junitparams/usage/
H A DSamplesOfUsageTest.java152 String stringValue = "Test";
155 $(booleanValue, primitiveArray, stringValue, stringArray)
166 boolean booleanValue, int[] primitiveArray, String stringValue, String[] stringArray) {
165 usageOfMultipleTypesOfParameters( boolean booleanValue, int[] primitiveArray, String stringValue, String[] stringArray) argument
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/writer/
H A DDexDataWriterTest.java472 private void testWriteStringHelper(String stringValue, int... encodedValue) throws IOException { argument
475 writer.writeString(stringValue);
/external/skia/experimental/svg/model/
H A DSkSVGDOM.cpp35 const char* stringValue) {
37 SkSVGAttributeParser parser(stringValue);
47 const char* stringValue) {
49 SkSVGAttributeParser parser(stringValue);
59 const char* stringValue) {
61 SkSVGAttributeParser parser(stringValue);
71 const char* stringValue) {
73 SkSVGAttributeParser parser(stringValue);
84 const char* stringValue) {
86 if (!SkParsePath::FromSVGString(stringValue,
34 SetPaintAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, const char* stringValue) argument
46 SetColorAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, const char* stringValue) argument
58 SetIRIAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, const char* stringValue) argument
70 SetClipPathAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, const char* stringValue) argument
83 SetPathDataAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, const char* stringValue) argument
94 SetTransformAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, const char* stringValue) argument
106 SetLengthAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, const char* stringValue) argument
118 SetNumberAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, const char* stringValue) argument
130 SetViewBoxAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, const char* stringValue) argument
142 SetLineCapAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, const char* stringValue) argument
154 SetLineJoinAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, const char* stringValue) argument
166 SetSpreadMethodAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, const char* stringValue) argument
178 SetPointsAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, const char* stringValue) argument
190 SetFillRuleAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, const char* stringValue) argument
252 SetStyleAttributes(const sk_sp<SkSVGNode>& node, SkSVGAttribute, const char* stringValue) argument
[all...]
/external/v8/src/inspector/
H A Dv8-console-message.cc114 v8::Local<v8::String> stringValue; local
116 .ToLocal(&stringValue))
117 return append(stringValue);
119 v8::Local<v8::String> stringValue; local
120 if (!value->ToString(m_isolate->GetCurrentContext()).ToLocal(&stringValue))
122 return append(stringValue);
/external/llvm/lib/CodeGen/MIRParser/
H A DMILexer.h175 StringRef stringValue() const { return StringValue; } function in struct:llvm::MIToken
/external/pdfium/fpdfsdk/javascript/
H A DPublicMethods.cpp106 std::string stringValue = ss.str(); local
107 size_t iDecimalPos = stringValue.find(".");
108 *iDec2 = iDecimalPos == std::string::npos ? stringValue.size()
110 return CFX_ByteString(stringValue.c_str());
/external/jsoncpp/include/json/
H A Dvalue.h42 stringValue, ///< UTF-8 string value enumerator in enum:Json::ValueType
/external/icu/icu4c/source/test/intltest/
H A Dnumrgts.cpp420 UnicodeString stringValue; local
421 stringValue = nfcommon->format(returnfloat, stringValue);
422 logln(" DISPLAYVALUE " + stringValue);
424 nfcommon->parse(stringValue, result, status);
429 //String stringValue = nfcommon.format(returnfloat).substring(1);
430 //if (Float.valueOf(stringValue).floatValue() != returnfloat)
431 errln(UnicodeString("FAIL: expected ") + returnfloat + ", got " + floatResult + " (" + stringValue+")"); local
H A Dcaltest.cpp652 const UnicodeString *stringValue; local
653 while ((stringValue = values->snext(status)) != NULL) {
654 if (*stringValue == hebrew) {
/external/protobuf/conformance/third_party/jsoncpp/
H A Djson.h468 stringValue, ///< UTF-8 string value enumerator in enum:Json::ValueType
/external/icu/icu4c/source/test/cintltst/
H A Dcreststn.c1850 const UChar *stringValue=tres_getString(arrayItem1, -1, NULL, &len, &status); local
1851 CONFIRM_EQ(stringValue, expected_string);
/external/guice/extensions/persist/lib/
H A Dhibernate-search.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/hibernate/ org/hibernate/search/ org/hibernate/search/annotations/ ...

Completed in 636 milliseconds

123