Searched refs:stringValue (Results 1 - 25 of 131) sorted by relevance

123456

/external/clang/test/Modules/Inputs/
H A DMethodPoolString1.h3 - (int)stringValue;
H A DMethodPoolString2.h3 - (int)stringValue;
H A DMethodPoolCombined1.h4 - (int)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/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...]
/external/walt/ios/WALT/
H A DDebugLogController.m25 self.textView.text = [[WALTLogger sessionLogger] stringValue];
30 self.textView.text = [[WALTLogger sessionLogger] stringValue];
H A DWALTLogger.h27 - (NSString *)stringValue;
/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/ksoap2/ksoap2-j2se/src/main/java/org/ksoap2/serialization/
H A DMarshalFloat.java33 String stringValue = parser.nextText();
36 result = new Float(stringValue);
38 result = new Double(stringValue);
40 result = new java.math.BigDecimal(stringValue);
/external/turbine/java/com/google/turbine/parse/
H A DLexer.java27 String stringValue(); method in interface:Lexer
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
H A DShadowSystemProperties.java30 String stringValue = getProperty(key);
31 return stringValue == null ? def : Integer.parseInt(stringValue);
36 String stringValue = getProperty(key);
37 return stringValue == null ? def : Long.parseLong(stringValue);
42 String stringValue = getProperty(key);
43 if (stringValue == null) {
47 switch (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/testng/src/test/java/test/listeners/
H A DMyInvokedMethodListener.java27 String stringValue = method.getTestMethod().getMethodName();
28 Integer count = map.get(stringValue);
32 map.put(stringValue, count+1);
/external/autotest/frontend/client/test/autotest/moblab/rpc/
H A DCloudStorageInfoTest.java26 jsonInfo.get(CloudStorageInfo.JSON_FIELD_BOTO_KEY_ID).isString().stringValue());
28 jsonInfo.get(CloudStorageInfo.JSON_FIELD_BOTO_SECRET_KEY).isString().stringValue());
30 jsonInfo.get(CloudStorageInfo.JSON_FIELD_IMAGE_STORAGE_URL).isString().stringValue());
32 jsonInfo.get(CloudStorageInfo.JSON_FIELD_RESULT_STORAGE_URL).isString().stringValue());
H A DNetworkInfoTest.java30 assertEquals("10.0.0.1", ips.isArray().get(0).isString().stringValue());
31 assertEquals("10.0.0.2", ips.isArray().get(1).isString().stringValue());
/external/jsilver/src/com/google/clearsilver/jsilver/functions/string/
H A DSliceFunction.java38 Value stringValue = args[0];
41 String string = stringValue.asString();
63 return literalValue(string.substring(start, end), stringValue.getEscapeMode(), stringValue
/external/skia/experimental/svg/model/
H A DSkSVGDOM.cpp38 const char* stringValue) {
40 SkSVGAttributeParser parser(stringValue);
50 const char* stringValue) {
52 SkSVGAttributeParser parser(stringValue);
62 const char* stringValue) {
64 SkSVGAttributeParser parser(stringValue);
74 const char* stringValue) {
76 SkSVGAttributeParser parser(stringValue);
87 const char* stringValue) {
89 if (!SkParsePath::FromSVGString(stringValue,
37 SetPaintAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, const char* stringValue) argument
49 SetColorAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, const char* stringValue) argument
61 SetIRIAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, const char* stringValue) argument
73 SetClipPathAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, const char* stringValue) argument
86 SetPathDataAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, const char* stringValue) argument
97 SetTransformAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, const char* stringValue) argument
109 SetLengthAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, const char* stringValue) argument
121 SetNumberAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, const char* stringValue) argument
133 SetViewBoxAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, const char* stringValue) argument
145 SetLineCapAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, const char* stringValue) argument
157 SetLineJoinAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, const char* stringValue) argument
169 SetSpreadMethodAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, const char* stringValue) argument
181 SetPointsAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, const char* stringValue) argument
193 SetFillRuleAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, const char* stringValue) argument
205 SetVisibilityAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, const char* stringValue) argument
217 SetDashArrayAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, const char* stringValue) argument
279 SetStyleAttributes(const sk_sp<SkSVGNode>& node, SkSVGAttribute, const char* stringValue) argument
[all...]
/external/skqp/experimental/svg/model/
H A DSkSVGDOM.cpp38 const char* stringValue) {
40 SkSVGAttributeParser parser(stringValue);
50 const char* stringValue) {
52 SkSVGAttributeParser parser(stringValue);
62 const char* stringValue) {
64 SkSVGAttributeParser parser(stringValue);
74 const char* stringValue) {
76 SkSVGAttributeParser parser(stringValue);
87 const char* stringValue) {
89 if (!SkParsePath::FromSVGString(stringValue,
37 SetPaintAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, const char* stringValue) argument
49 SetColorAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, const char* stringValue) argument
61 SetIRIAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, const char* stringValue) argument
73 SetClipPathAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, const char* stringValue) argument
86 SetPathDataAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, const char* stringValue) argument
97 SetTransformAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, const char* stringValue) argument
109 SetLengthAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, const char* stringValue) argument
121 SetNumberAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, const char* stringValue) argument
133 SetViewBoxAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, const char* stringValue) argument
145 SetLineCapAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, const char* stringValue) argument
157 SetLineJoinAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, const char* stringValue) argument
169 SetSpreadMethodAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, const char* stringValue) argument
181 SetPointsAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, const char* stringValue) argument
193 SetFillRuleAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, const char* stringValue) argument
205 SetVisibilityAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, const char* stringValue) argument
217 SetDashArrayAttribute(const sk_sp<SkSVGNode>& node, SkSVGAttribute attr, const char* stringValue) argument
279 SetStyleAttributes(const sk_sp<SkSVGNode>& node, SkSVGAttribute, const char* stringValue) argument
[all...]
/external/annotation-tools/asmx/test/conform/annotations/
H A DValuesAnnotation.classValuesAnnotation.java package annotations public abstract annotation annotations.ValuesAnnotation extends java.lang.Object implements java ...
H A DValues.java14 stringValue = "A",
H A DValuesAnnotation.java21 String stringValue() default "defaultString";
/external/autotest/frontend/client/src/autotest/common/
H A DCommonClassFactory.java25 "motd").isString().stringValue();
33 String motd = result.isString().stringValue();
/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/autotest/frontend/client/src/autotest/moblab/rpc/
H A DConnectedDutInfo.java43 leaseObject.get("mac_address").isString().stringValue());
49 configuredIpsToLabels.put(ipAddress, configuredDuts.get(ipAddress).isString().stringValue());
/external/autotest/frontend/client/src/autotest/afe/
H A DJobStatusDataSource.java36 return dictionary.get(status).isString().stringValue();
52 String status = queueEntry.get("status").isString().stringValue();
92 String label = queueEntry.get("meta_host").isString().stringValue();
93 String status = queueEntry.get("status").isString().stringValue();

Completed in 652 milliseconds

123456