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

1 2 3 4 5 6 7 8 91011>>

  /development/tools/mkstubs/tests/com/android/mkstubs/sourcer/
TestHelper.java 30 String en = expected.replaceAll("[\\s]+", " ").trim();
31 String an = actual.replaceAll( "[\\s]+", " ").trim();
  /external/proguard/src/proguard/obfuscate/
MappingReader.java 66 line = line.trim();
126 String className = line.substring(0, arrowIndex).trim();
127 String newClassName = line.substring(arrowIndex + 2, colonIndex).trim();
162 String type = line.substring(colonIndex2 + 1, spaceIndex).trim();
163 String name = line.substring(spaceIndex + 1, argumentIndex1 >= 0 ? argumentIndex1 : arrowIndex).trim();
164 String newName = line.substring(arrowIndex + 2).trim();
183 firstLineNumber = Integer.parseInt(line.substring(0, colonIndex1).trim());
184 lastLineNumber = Integer.parseInt(line.substring(colonIndex1 + 1, colonIndex2).trim());
187 String arguments = line.substring(argumentIndex1 + 1, argumentIndex2).trim();
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/srt/
SrtParser.java 37 while (!((s = r.readLine()) == null || s.trim().equals(""))) {
51 long hours = Long.parseLong(in.split(":")[0].trim());
52 long minutes = Long.parseLong(in.split(":")[1].trim());
53 long seconds = Long.parseLong(in.split(":")[2].split(",")[0].trim());
54 long millies = Long.parseLong(in.split(":")[2].split(",")[1].trim());
  /tools/motodev/src/plugins/common/src/com/motorola/studio/android/model/manifest/dom/
GrantUriPermissionNode.java 70 if ((propPath != null) && (propPath.trim().length() > 0))
75 if ((propPathPattern != null) && (propPathPattern.trim().length() > 0))
80 if ((propPathPrefix != null) && (propPathPrefix.trim().length() > 0))
103 return ((propPath != null) && (propPath.trim().length() > 0))
104 || ((propPathPattern != null) && (propPathPattern.trim().length() > 0))
105 || ((propPathPrefix != null) && (propPathPrefix.trim().length() > 0));
AbstractIconLabelNameNode.java 71 return propName.trim().length() > 0;
82 if ((propName != null) && (propName.trim().length() > 0))
87 if ((propIcon != null) && (propIcon.trim().length() > 0))
92 if ((propLabel != null) && (propLabel.trim().length() > 0))
DataNode.java 92 if ((propHost != null) && (propHost.trim().length() > 0))
97 if ((propMimeType != null) && (propMimeType.trim().length() > 0))
102 if ((propPath != null) && (propPath.trim().length() > 0))
107 if ((propPathPattern != null) && (propPathPattern.trim().length() > 0))
112 if ((propPathPrefix != null) && (propPathPrefix.trim().length() > 0))
117 if ((propPort != null) && (propPort.trim().length() > 0))
122 if ((propScheme != null) && (propScheme.trim().length() > 0))
AbstractSimpleNameNode.java 67 if ((propName != null) && (propName.trim().length() > 0))
81 return propName.trim().length() > 0;
  /external/emma/ant/ant14/com/vladium/emma/ant/
VerbosityCfg.java 76 if ((m_verbosity != null) && (m_verbosity.trim ().length () > 0))
77 settings.setProperty (AppLoggers.PROPERTY_VERBOSITY_LEVEL, m_verbosity.trim ());
79 if ((m_verbosityFilter != null) && (m_verbosityFilter.trim ().length () > 0))
80 settings.setProperty (AppLoggers.PROPERTY_VERBOSITY_FILTER, m_verbosityFilter.trim ());
  /external/proguard/src/proguard/classfile/util/
ExternalTypeEnumeration.java 98 return descriptor.substring(startIndex, index++).trim();
104 return descriptor.substring(0, descriptor.indexOf(ClassConstants.EXTERNAL_METHOD_ARGUMENTS_OPEN)).trim();
  /sdk/emulator/opengl/host/tools/emugen/
strUtils.h 24 std::string trim(const std::string & str);
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/packages/
MajorRevision.java 54 return new MajorRevision(Integer.parseInt(revision.trim()));
  /libcore/luni/src/test/java/libcore/java/util/logging/
OldXMLFormatterTest.java 61 "</log>", formatter.getTail(null).trim());
63 formatter.getTail(handler).trim());
66 "</log>", formatter.getTail(handler).trim());
  /packages/apps/Email/src/org/apache/james/mime4j/
BodyDescriptor.java 73 name = name.trim().toLowerCase();
78 value = value.trim().toLowerCase();
86 value = value.trim();
104 main = main.toLowerCase().trim();
108 String type = main.substring(0, index).trim();
109 String subtype = main.substring(index + 1).trim();
135 c = c.trim();
244 paramName.toString().trim().toLowerCase(),
245 paramValue.toString().trim());
278 // don't trim quoted strings; the spaces could be intentional.
    [all...]
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
MultiLineReceiver.java 39 * Set the trim lines flag.
40 * @param trim hether the lines are trimmed, or not.
42 public void setTrimLine(boolean trim) {
43 mTrimLines = trim;
86 line = line.trim();
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/format/
GLAPISpec.java 73 String header = reader.readLine().trim();
83 line = line.trim();
110 String retType = words.get(0).trim();
111 String func = words.get(1).trim();
117 argDefn = argDefn.trim();
  /external/nist-sip/java/gov/nist/javax/sip/clientauthutils/
MessageDigestAlgorithm.java 63 if (qop_value == null || qop_value.trim().length() == 0
64 || qop_value.trim().equalsIgnoreCase("auth")) {
121 + (passwd != null && passwd.trim().length() > 0) + ", " + nonce_value + ", "
135 if (algorithm == null || algorithm.trim().length() == 0
136 || algorithm.trim().equalsIgnoreCase("MD5")) {
148 if (qop_value == null || qop_value.trim().length() == 0
149 || qop_value.trim().equalsIgnoreCase("auth")) {
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/logcat/
LogCatFilter.java 78 mName = name.trim();
79 mTag = tag.trim();
80 mText = text.trim();
81 mPid = pid.trim();
82 mAppName = appName.trim();
150 for (String s : query.trim().split(" ")) {
  /cts/tests/tests/security/src/android/security/cts/
AslrTest.java 40 int level = Integer.parseInt(in.readLine().trim());
  /external/apache-harmony/security/src/test/api/java.injected/java/security/
ProviderTest.java 63 if (!"value 1".equals(p.getProperty("Property 1").trim()) ||
64 !"className".equals(p.getProperty("serviceName.algName").trim()) ||
65 !"attrValue".equals(p.getProperty("serviceName.algName attrName").trim()) ||
66 !"standardName".equals(p.getProperty("Alg.Alias.engineClassName.aliasName").trim()) ||
67 !String.valueOf(p.getName()).equals(p.getProperty("Provider.id name").trim()) ||
68 !String.valueOf(p.getVersion()).equals(p.getProperty("Provider.id version").trim()) ||
69 !String.valueOf(p.getInfo()).equals(p.getProperty("Provider.id info").trim()) ||
70 !p.getClass().getName().equals(p.getProperty("Provider.id className").trim()) ||
71 !"SomeClassName".equals(p.getProperty("MessageDigest.SHA-1").trim()) ) {
  /external/doclava/src/com/google/doclava/
SampleTagInfo.java 79 boolean trim = "@sample".equals(name);
82 mIncluded = readFile(position, filename, id, trim, true, false);
84 mIncluded = loadInclude(position, filename, id, trim);
109 static String loadInclude(SourcePositionInfo pos, String filename, String id, boolean trim) {
141 boolean empty = "".equals(line.trim());
142 if (trim) {
198 static String readFile(SourcePositionInfo pos, String filename, String id, boolean trim,
213 if (trim) {
217 if (!"".equals(line.trim())) {
  /external/icu4c/common/
unistr_props.cpp 26 UnicodeString::trim() function in class:UnicodeString
  /external/icu4c/test/intltest/
textfile.h 43 * '#'. Trim leading white space.
44 * @param trim if TRUE then remove leading Pattern_White_Space
49 UBool trim = FALSE);
  /external/nist-sip/java/gov/nist/javax/sip/parser/
CallIDParser.java 75 callID.setCallId(rest.trim());
OrganizationParser.java 76 organization.setOrganization(value.trim());
SubjectParser.java 75 subject.setSubject(s.trim());

Completed in 1287 milliseconds

1 2 3 4 5 6 7 8 91011>>