HomeSort by relevance Sort by last modified time
    Searched refs:typeString (Results 1 - 25 of 39) sorted by null

1 2

  /frameworks/base/services/java/com/android/server/firewall/
SenderFilter.java 60 String typeString = parser.getAttributeValue(null, ATTR_TYPE);
61 if (typeString == null) {
65 if (typeString.equals(VAL_SYSTEM)) {
67 } else if (typeString.equals(VAL_SIGNATURE)) {
69 } else if (typeString.equals(VAL_SYSTEM_OR_SIGNATURE)) {
71 } else if (typeString.equals(VAL_USER_ID)) {
75 "Invalid type attribute for <sender>: " + typeString, parser, null);
  /libcore/luni/src/main/java/java/io/
ObjectStreamField.java 44 private String typeString;
110 this.typeString = signature.replace('.', '/').intern();
245 if (typeString == null) {
249 typeString = str.intern();
251 return typeString;
294 if (typeString == null && isPrimitive()) {
296 typeString = String.valueOf(getTypeCode());
299 if (typeString.length() == 1) {
305 String className = typeString.replace('/', '.');
332 * Resolves typeString into type. Returns true if the type is primitiv
    [all...]
  /external/doclava/src/com/google/doclava/
TypeInfo.java 37 public TypeInfo(String typeString) {
39 if (typeString.endsWith("...")) {
40 typeString = typeString.substring(0, typeString.length() - 3);
44 int paramStartPos = typeString.indexOf('<');
47 int paramEndPos = typeString.lastIndexOf('>');
52 char c = typeString.charAt(i);
54 String entry = typeString.substring(entryStartPos, i).trim();
65 TypeInfo info = new TypeInfo(typeString.substring(entryStartPos, paramEndPos).trim())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XMLErrors.h 51 void appendErrorMessage(const String& typeString, TextPosition, const char* message);
XMLErrors.cpp 74 void XMLErrors::appendErrorMessage(const String& typeString, TextPosition position, const char* message)
76 // <typeString> on line <lineNumber> at column <columnNumber>: <message>
77 m_errorMessages.append(typeString);
  /frameworks/wilhelm/tests/examples/
slesTestEffectCapabilities.cpp 122 char typeString[GUID_DISPLAY_LENGTH];
142 guidToString(effectType, typeString);
145 fprintf(stdout, " type=%s, impl=%s name=%.*s \n", typeString, implString, effectNameLength,
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8InspectorFrontendHostCustom.cpp 72 String typeString = toCoreStringWithNullCheck(type.As<v8::String>());
73 if (typeString == "separator") {
78 } else if (typeString == "subMenu" && subItems->IsArray()) {
92 ContextMenuItem menuItem((typeString == "checkbox" ? CheckableActionType : ActionType), typedId, labelString);
  /external/smack/src/org/xbill/DNS/
SIGBase.java 66 String typeString = st.getString();
67 covered = Type.value(typeString);
69 throw st.exception("Invalid type: " + typeString);
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorFileSystemAgent.h 52 virtual void requestFileSystemRoot(ErrorString*, const String& origin, const String& typeString, PassRefPtr<RequestFileSystemRootCallback>) OVERRIDE;
InspectorDOMDebuggerAgent.cpp 229 static int domTypeForName(ErrorString* errorString, const String& typeString)
231 if (typeString == "subtree-modified")
233 if (typeString == "attribute-modified")
235 if (typeString == "node-removed")
237 *errorString = "Unknown DOM breakpoint type: " + typeString;
252 void InspectorDOMDebuggerAgent::setDOMBreakpoint(ErrorString* errorString, int nodeId, const String& typeString)
258 int type = domTypeForName(errorString, typeString);
270 void InspectorDOMDebuggerAgent::removeDOMBreakpoint(ErrorString* errorString, int nodeId, const String& typeString)
275 int type = domTypeForName(errorString, typeString);
  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
DOMFileSystemBase.cpp 97 String typeString = url.innerURL()->path().substring(1);
98 if (!pathPrefixToFileSystemType(typeString, type))
107 String typeString;
109 typeString = temporaryPathPrefix;
111 typeString = persistentPathPrefix;
113 typeString = externalPathPrefix;
117 String result = "filesystem:" + origin + "/" + typeString + "/";
  /libcore/luni/src/main/java/java/net/
URLConnection.java 258 final String typeString = parseTypeString(type.replace('/', '.'));
276 String className = packageName + "." + typeString;
290 String className = "org.apache.harmony.awt.www.content." + typeString;
782 * @param typeString
786 private String parseTypeString(String typeString) {
787 StringBuilder result = new StringBuilder(typeString);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/core/
RenameResourceXmlTextAction.java 258 String typeString = element.getTagName();
259 if (TAG_ITEM.equals(typeString)) {
260 typeString = element.getAttribute(ATTR_TYPE);
261 if (typeString == null || typeString.isEmpty()) {
265 ResourceType type = ResourceType.getEnum(typeString);
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGAnimationElement.h 105 String typeString;
106 adjustForInheritance(contextElement, attributeName(), typeString);
107 animatedType = (*parseTypeFromString)(this, typeString);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
ConsoleMessage.js     [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
TemplateMetadata.java 204 String typeString = getAttributeOrNull(icon, ATTR_TYPE);
205 if (typeString != null) {
206 typeString = typeString.toUpperCase(Locale.US);
209 if (typeString.equals(type.name())) {
216 AdtPlugin.log(null, "Unknown asset type %1$s", typeString);
  /external/chromium_org/third_party/angle/src/compiler/
UnfoldShortCircuit.cpp 120 out << mOutputHLSL->typeString(node->getType()) << " s" << i << ";\n";
OutputHLSL.cpp 179 uniforms += "uniform " + typeString(type) + " " + decorateUniform(name, type) + arrayString(type) +
190 varyings += "static " + typeString(type) + " " + decorate(name) + arrayString(type) + " = " + initializer(type) + ";\n";
198 attributes += "static " + typeString(type) + " " + decorate(name) + arrayString(type) + " = " + initializer(type) + ";\n";
    [all...]
OutputHLSL.h 36 TString typeString(const TType &type);
  /dalvik/dx/src/com/android/dx/cf/direct/
AnnotationParser.java 247 CstString typeString = (CstString) pool.get(typeIndex);
248 CstType type = new CstType(Type.intern(typeString.getString()));
  /external/smack/src/org/jivesoftware/smack/util/
PacketParserUtils.java.orig 192 String typeString = parser.getAttributeValue("", "type");
193 if (typeString != null && !typeString.equals("")) {
195 type = Presence.Type.valueOf(typeString);
198 System.err.println("Found invalid presence type " + typeString);
    [all...]
PacketParserUtils.java 191 String typeString = parser.getAttributeValue("", "type");
192 if (typeString != null && !typeString.equals("")) {
194 type = Presence.Type.valueOf(typeString);
197 System.err.println("Found invalid presence type " + typeString);
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/detail/
ContactDetailFragment.java     [all...]
  /external/chromium_org/chrome/third_party/chromevox/chromevox/injected/
mathjax_external_util.js 401 * @param {string} typeString Type of the expression to be converted (e.g.,
414 callback, math, typeString, filterString, errorString, parseFunction) {
416 var script = MathJax.HTML.Element('script', {type: typeString}, [math]);
432 typeString, filterString, errorString, parseFunction],
  /frameworks/native/opengl/libs/EGL/
trace.cpp 137 const char* typeString = isFloat ? "GLfloat" : "GLint";
138 ALOGD("const %s value[] = {", typeString);

Completed in 564 milliseconds

1 2