HomeSort by relevance Sort by last modified time
    Searched defs:trim (Results 51 - 75 of 788) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Headers.java 171 namesAndValues[i] = namesAndValues[i].trim();
201 String name = header.getKey().trim();
202 String value = header.getValue().trim();
240 return add(line.substring(0, index).trim(), line.substring(index + 1));
255 namesAndValues.add(value.trim());
  /external/skia/third_party/lua/src/
lbitlib.c 24 /* macro to trim extra bits */
25 #define trim(x) ((x) & ALLONES) macro
41 return trim(r);
64 lua_pushunsigned(L, trim(r));
74 lua_pushunsigned(L, trim(r));
81 lua_pushunsigned(L, trim(r));
89 r = trim(r);
96 r = trim(r);
121 r = trim((r >> i) | ~(~(b_uint)0 >> i)); /* add signal bit */
131 r = trim(r)
    [all...]
  /external/syslinux/com32/lua/src/
lbitlib.c 24 /* macro to trim extra bits */
25 #define trim(x) ((x) & ALLONES) macro
41 return trim(r);
64 lua_pushunsigned(L, trim(r));
74 lua_pushunsigned(L, trim(r));
81 lua_pushunsigned(L, trim(r));
89 r = trim(r);
96 r = trim(r);
121 r = trim((r >> i) | ~(~(b_uint)0 >> i)); /* add signal bit */
131 r = trim(r)
    [all...]
  /frameworks/base/tools/bit/
util.cpp 181 trim(const string& str) function
  /frameworks/minikin/tools/
mk_hyb_file.py 116 def trim(pattern): function
  /packages/apps/Car/Radio/src/com/android/car/radio/
PresetsViewHolder.java 123 mPresetItemMetadata.setText(metadata.trim());
  /prebuilts/go/darwin-x86/src/cmd/doc/
pkg.go 66 if p, ok := trim(path, filepath.ToSlash(goroot)); ok {
70 if p, ok := trim(path, filepath.ToSlash(gopath)); ok {
77 // trim trims the directory prefix from the path, paying attention
81 func trim(path, prefix string) (string, bool) { func
  /prebuilts/go/darwin-x86/src/net/textproto/
reader.go 95 // trim returns s with leading and trailing spaces and tabs removed.
97 func trim(s []byte) []byte { func
138 return trim(line), nil
144 r.buf = append(r.buf[:0], trim(line)...)
153 r.buf = append(r.buf, trim(line)...)
  /prebuilts/go/linux-x86/src/cmd/doc/
pkg.go 66 if p, ok := trim(path, filepath.ToSlash(goroot)); ok {
70 if p, ok := trim(path, filepath.ToSlash(gopath)); ok {
77 // trim trims the directory prefix from the path, paying attention
81 func trim(path, prefix string) (string, bool) { func
  /prebuilts/go/linux-x86/src/net/textproto/
reader.go 95 // trim returns s with leading and trailing spaces and tabs removed.
97 func trim(s []byte) []byte { func
138 return trim(line), nil
144 r.buf = append(r.buf[:0], trim(line)...)
153 r.buf = append(r.buf, trim(line)...)
  /system/libvintf/
RuntimeInfo-target.cpp 51 static void trim(std::string *s) { function in namespace:android::vintf
106 trim(s);
  /tools/tradefederation/core/src/com/android/tradefed/util/
AaptParser.java 80 mNativeCode.add(m.group(i).replace("'", "").trim()); method
  /cts/hostsidetests/jvmti/base/host/src/android/jvmti/cts/
JvmtiHostTest.java 135 pwd = pwd.trim();
146 if (attachReply != null && !attachReply.trim().isEmpty()) {
184 if (runAsCp != null && !runAsCp.trim().isEmpty()) {
185 throw new RuntimeException(runAsCp.trim());
190 if (runAsChmod != null && !runAsChmod.trim().isEmpty()) {
191 throw new RuntimeException(runAsChmod.trim());
  /frameworks/base/wifi/java/android/net/wifi/hotspot2/
ConfigParser.java 358 type = attributes[0].trim();
361 String attribute = attributes[i].trim();
397 if (line.length() == 0 || line.trim().length() == 0) {
409 value.append(' ').append(line.trim());
427 name = line.substring(0, nameEnd).trim();
429 value.append(line.substring(nameEnd+1).trim()); method
  /development/ndk/platforms/android-9/include/linux/
elevator.h 62 void (*trim)(struct io_context *); member in struct:elevator_ops
  /development/tools/idegen/src/com/android/idegen/
MakeFileParser.java 95 String trimmed = line.trim();
107 String completeLine = lineBuffer.toString().trim();
131 String key = arr[0].trim();
153 lineBuffer.append(line.substring(0, line.length() - 1).trim()); method
160 String value = rawValue.trim();
227 value = value.substring(25).trim();
229 value = value.substring(4).trim();
  /external/apache-xml/src/main/java/org/apache/xpath/objects/
XStringForFSB.java 823 public XMLString trim() method in class:XStringForFSB
841 * Conditionally trim all leading and trailing whitespace in the specified String.
849 * @param trimHead Trim leading whitespace?
850 * @param trimTail Trim trailing whitespace?
  /external/clang/lib/StaticAnalyzer/Core/
ExplodedGraph.cpp 348 ExplodedGraph::trim(ArrayRef<const NodeTy *> Sinks, function in class:ExplodedGraph
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/
AbstractResults.java 223 buffer.append(end.trim());
  /external/libjpeg-turbo/
transupp.h 48 * The "trim" option causes untransformable partial iMCUs to be dropped;
52 * (For example, -rot 270 -trim trims only the bottom edge, but -rot 90 -trim
53 * followed by -rot 180 -trim trims both edges.)
121 boolean trim; /* if TRUE, trim partial MCUs as needed */ member in struct:__anon23399
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_draw.c 138 static GLuint trim(GLenum prim, GLuint length) function
173 verts_per_instance = trim(prim->mode, prim->count);
230 verts_per_instance = trim(prim->mode, prim->count);
  /external/nanohttpd/core/src/test/java/fi/iki/elonen/
HttpServerTest.java 172 lines.add(line.trim());
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
OkHeaders.java 181 result.add(varyField.trim());
254 String scheme = value.substring(tokenStart, pos).trim();
  /external/toybox/scripts/
config2help.c 35 char *trim(char *s) function
47 line = trim(line);
51 line = trim(line);
74 s = trim((*help)->data);
107 s = trim((*from)->data);
120 while (!*trim((*from)->prev->data)) {
131 if (*trim(dd->data) != '-') break;
152 // Read line, trim whitespace at right edge.
269 that = trim(that);
308 if (cfrom && cfrom->prev->data && *trim(cfrom->prev->data)
    [all...]
  /external/vogar/src/vogar/
OptionParser.java 224 String line = rawLine.trim();
235 argsList.add(line.substring(space + 1).trim()); method

Completed in 734 milliseconds

1 23 4 5 6 7 8 91011>>