Searched refs:put (Results 251 - 275 of 1475) sorted by last modified time

<<11121314151617181920>>

/external/proguard/src/proguard/obfuscate/
H A DMemberNameCollector.java102 nameMap.put(newName, name);
H A DMemberObfuscator.java111 nameMap.put(newName, name);
137 descriptorMap.put(descriptor, nameMap);
/external/proguard/src/proguard/retrace/
H A DReTrace.java566 classMap.put(newClassName, className);
579 classFieldMap.put(className, fieldMap);
587 fieldMap.put(newFieldName, fieldSet);
603 classMethodMap.put(className, methodMap);
611 methodMap.put(newMethodName, methodSet);
/external/protobuf/editors/
H A Dprotobuf-mode.el75 (put 'protobuf-mode 'c-mode-prefix "protobuf-"))
/external/protobuf/gtest/src/
H A Dgtest.cc1737 helper.put(*ch);
2017 << "of the classes to put the tests into different test cases.";
2156 << "probably rename one of the classes to put the tests into different\n"
2206 // This is used for implementation of the TestCase class only. We put
3830 // This is used for implementation of the UnitTest class only. We put
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DDescriptors.java214 // FileDescriptorProto's tree and put all of the descriptors into the
1711 final GenericDescriptor old = descriptorsByName.put(fullName, descriptor);
1713 descriptorsByName.put(fullName, old);
1774 descriptorsByName.put(fullName,
1777 descriptorsByName.put(fullName, old);
1818 final FieldDescriptor old = fieldsByNumber.put(key, field);
1820 fieldsByNumber.put(key, old);
1837 final EnumValueDescriptor old = enumValuesByNumber.put(key, value);
1839 enumValuesByNumber.put(key, old);
H A DExtensionRegistry.java225 extensionsByName.put(extension.descriptor.getFullName(), extension);
226 extensionsByNumber.put(
239 extensionsByName.put(field.getMessageType().getFullName(), extension);
H A DExtensionRegistryLite.java109 extensionsByNumber.put(
H A DFieldSet.java112 fields.put(entry.getKey(), Collections.unmodifiableList(value));
188 fields.put(descriptor, value);
277 fields.put(descriptor, list);
394 fields.put(descriptor, new ArrayList((List) otherValue));
402 fields.put(descriptor, otherValue);
405 fields.put(descriptor,
412 fields.put(descriptor, otherValue);
H A DGeneratedMessage.java80 result.put(field, value);
84 result.put(field, getField(field));
H A DUnknownFieldSet.java441 fields.put(number, field);
/external/protobuf/java/src/main/java/com/google/protobuf/nano/
H A DExtendableMessageNano.java101 unknownFieldData.put(fieldNumber, new FieldData(extension, value));
145 unknownFieldData.put(fieldNumber, field);
H A DFieldArray.java121 public void put(int fieldNumber, FieldData data) { method in class:FieldArray
/external/protobuf/java/src/test/java/com/google/protobuf/
H A DNanoTest.java3217 hashMap.put(a, "a");
3218 hashMap.put(b, "b");
3219 hashMap.put(c, "c");
3220 hashMap.put(d, "d");
3221 hashMap.put(e, "e");
3222 hashMap.put(f, "f");
3223 hashMap.put(g, "g");
3224 hashMap.put(h, "h");
3225 hashMap.put(i, "i");
/external/owasp/sanitizer/distrib/lib/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/owasp/sanitizer/lib/guava-libraries/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/owasp/sanitizer/src/main/org/owasp/html/
H A DCssSchema.java98 propertiesBuilder.put(propertyName, prop);
230 .put("image(", "image()")
231 .put("linear-gradient(", "linear-gradient()")
232 .put("radial-gradient(", "radial-gradient()")
233 .put("repeating-linear-gradient(", "repeating-linear-gradient()")
234 .put("repeating-radial-gradient(", "repeating-radial-gradient()")
235 .put("rgb(", "rgb()").put("rgba(", "rgba()")
390 builder.put("-moz-border-radius", mozBorderRadius);
393 builder.put("
[all...]
H A DElementAndAttributePolicies.java74 joinedAttrPolicies.put(attrName, a);
79 joinedAttrPolicies.put(attrName, e.getValue());
119 anded.put(attrName, joined);
130 anded.put(attrName, e.getValue());
H A DHtmlEntities.java223 .put("quot", Integer.valueOf('"'))
224 .put("amp", Integer.valueOf('&'))
225 .put("lt", Integer.valueOf('<'))
226 .put("gt", Integer.valueOf('>'))
229 .put("apos", Integer.valueOf('\''))
232 .put("nbsp", Integer.valueOf('\u00a0'))
233 .put("iexcl", Integer.valueOf('\u00a1'))
234 .put("cent", Integer.valueOf('\u00a2'))
235 .put("pound", Integer.valueOf('\u00a3'))
236 .put("curre
[all...]
H A DHtmlPolicyBuilder.java209 elPolicies.put(elementName, newPolicy);
213 textContainers.put(elementName, true);
252 textContainers.put(elementName, true);
261 textContainers.put(elementName, false);
334 globalAttrPolicies.put(
348 attrPolicies.put(elementName, policies);
352 policies.put(
526 elPolicies.put(
567 globalAttrPolicies.put(urlAttributeName, AttributePolicy.Util.join(
578 policies.put(urlAttributeNam
[all...]
H A DHtmlTextEscapingMode.java87 .put("iframe", CDATA)
92 .put("listing", CDATA_SOMETIMES)
93 .put("xmp", CDATA)
98 //.put("noembed", CDATA_SOMETIMES)
99 //.put("noframes", CDATA_SOMETIMES)
100 //.put("noscript", CDATA_SOMETIMES)
101 .put("comment", CDATA_SOMETIMES) // IE only
104 .put("plaintext", PLAIN_TEXT)
106 .put("script", CDATA)
107 .put("styl
[all...]
H A DPolicyFactory.java148 b.put(elName, p);
158 b.put(elName, p);
182 ab.put(
191 ab.put(attrName, e.getValue());
H A DTagBalancingHtmlStreamEventReceiver.java398 definitions.put(elementName, info);
/external/owasp/sanitizer/src/tests/org/owasp/html/
H A DCssFuzzerTest.java181 TOKEN_TYPE_FILTERS.put(
183 TOKEN_TYPE_FILTERS.put(
185 TOKEN_TYPE_FILTERS.put(
187 TOKEN_TYPE_FILTERS.put(
189 TOKEN_TYPE_FILTERS.put(
192 TOKEN_TYPE_FILTERS.put(
194 TOKEN_TYPE_FILTERS.put(
196 TOKEN_TYPE_FILTERS.put(
198 TOKEN_TYPE_FILTERS.put(
200 TOKEN_TYPE_FILTERS.put(
[all...]
/external/owasp/sanitizer/tools/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...

Completed in 293 milliseconds

<<11121314151617181920>>