HomeSort by relevance Sort by last modified time
    Searched full:split (Results 426 - 450 of 5986) sorted by null

<<11121314151617181920>>

  /external/llvm/utils/release/
findRegressions-nightly.py 27 tmp = t[2].split(testDirName)
47 n = t[0].split('RESULT-')[1]
53 test[fname][tp + n] = float(t[2].split(' ')[2])
  /external/llvm/utils/
wciia.py 36 # split paths
38 for path in paths.split():
54 for word in line.split():
  /external/markdown/markdown/extensions/
rss.py 24 heading = heading.split("-")[0]
27 month, date, year = heading.split()
36 time = time.split()
  /external/opencv/cv/src/
_cvkdtree.hpp 69 int dim; // split dimension; >=0 for nodes, -1 for leaves
166 __instype *split = median; local
167 for (; split != last && deref(ctor(*split), dim) ==
168 deref(ctor(*median), dim); ++split);
170 if (split == last) { // leaf
172 for (--split; split >= first; --split) {
176 n.value = ctor(*split);
    [all...]
  /external/oprofile/libutil++/
string_manip.h 29 /// split string s by first occurence of char c, returning the second part.
30 /// s is set to the first part. Neither include the split character
31 std::string split(std::string & s, char c);
  /external/zlib/src/
zlib2ansi 59 split /\s*,\s*/, $param_list;
62 my @params = split /\s*;\s*/, $params;
68 my @bits = split /\s*,\s*/, $p;
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/
MediaTestUtil.java 78 String[] poList2 = memoryUsage.split("\t|\\s+");
103 String[] poList = memoryUsage.split("\r|\n|\r\n");
112 String[] poList2 = memoryUsage.split("\t|\\s+");
  /frameworks/volley/src/com/android/volley/toolbox/
HttpHeaderParser.java 61 String[] tokens = headerValue.split(",");
124 String[] params = contentType.split(";");
126 String[] pair = params[i].trim().split("=");
  /hardware/qcom/display/msm8974/libqdutils/
mdp_version.h 79 struct Split {
82 Split() : mLeft(0), mRight(0){}
117 Split mSplit;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
glob.py 42 dirname, basename = os.path.split(pathname)
47 # `os.path.split()` returns the argument itself as a dirname if it is a
82 # `os.path.split()` returns an empty basename for paths ending with a
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
glob.py 42 dirname, basename = os.path.split(pathname)
47 # `os.path.split()` returns the argument itself as a dirname if it is a
82 # `os.path.split()` returns an empty basename for paths ending with a
  /external/chromium_org/third_party/icu/source/test/intltest/
fldset.cpp 68 static UnicodeString *split(const UnicodeString &src, UChar ch, int32_t &splits) function
80 int32_t split = 0; local
84 src.extractBetween(start, end, result[split++]);
88 src.extractBetween(start, src.length(), result[split]);
103 UnicodeString *dest = split(str, 0x002C /* ',' */, destCount);
107 UnicodeString *kv = split(dest[i], 0x003D /* '=' */, dc);
  /external/icu4c/test/intltest/
fldset.cpp 68 static UnicodeString *split(const UnicodeString &src, UChar ch, int32_t &splits) function
80 int32_t split = 0; local
84 src.extractBetween(start, end, result[split++]);
88 src.extractBetween(start, src.length(), result[split]);
103 UnicodeString *dest = split(str, 0x002C /* ',' */, destCount);
107 UnicodeString *kv = split(dest[i], 0x003D /* '=' */, dc);
  /external/llvm/utils/lit/lit/
TestFormats.py 13 self.test_sub_dir = os.path.normcase(str(test_sub_dir)).split(';')
35 lines = lines.split('\n')
63 (dirname, basename) = os.path.split(execpath)
92 testPath,testName = os.path.split(test.getSourcePath())
96 testPath, namePrefix = os.path.split(testPath)
188 testSuite, path_in_suite + tuple(suffix.split(os.sep)),
  /packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
CombinedInputOutput.java 105 final String header[] = headerLine.split(",");
108 final String keyValue[] = item.split("=");
131 final String args[] = line.trim().split(",");
143 final String params[] = param.split("=", 2);
157 final String params[] = param.split("=", 2);
176 final String params[] = param.split("=", 2);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/
idna.py 157 labels = dots.split(input)
178 labels = dots.split(input)
183 labels = input.split(".")
206 labels = dots.split(input)
241 labels = dots.split(input)
246 labels = input.split(".")
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/
idna.py 157 labels = dots.split(input)
178 labels = dots.split(input)
183 labels = input.split(".")
206 labels = dots.split(input)
241 labels = dots.split(input)
246 labels = input.split(".")
  /cts/suite/audio_quality/test/
StringUtilTest.cpp 56 std::vector<android::String8>* tokens = StringUtil::split(str, ':');
66 std::vector<android::String8>* tokens2 = StringUtil::split(str2, ':');
  /cts/tests/tests/os/src/android/os/cts/
BuildVersionTest.java 64 final String[] fingerprintSegs = fingerprint.split("/");
69 String[] devicePlatform = fingerprintSegs[2].split(":");
  /cts/tools/cts-xml-generator/src/com/android/cts/xmlgenerator/
TestListParser.java 43 String[] tokens = line.split(":");
71 String[] suites = fullSuite.split("\\.");
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ACBTree.h 82 - (ACBTree *) internalinsert:(ACBKey *)key value:(id)value split:(NSInteger *)h;
83 - (ACBTree *) insert:(ACBKey *)key value:(id)value index:(NSInteger)hi split:(NSInteger *)h;
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
calc.rb 80 ].strip!.split( /\n/ ).map { |line|
81 expr, val = line.strip.split( /\s+=\s+/, 2 )
  /external/chromium_org/build/android/pylib/
thermal_throttle.py 50 temp = float([s for s in line.split() if s.isdigit()][0]) / 1000.0
68 btemp = float([s for s in line.split() if s.isdigit()][0]) / 10.0
  /external/chromium_org/chrome/browser/net/
websocket_browsertest.cc 38 // Test that the browser can handle a WebSocket frame split into multiple TCP
63 // Test that the browser can handle a WebSocket frame split into multiple SSL
  /external/chromium_org/chrome/browser/resources/net_internals/
top_mid_bottom_view.js 50 // Calculate the vertical split points.
61 // Position the boxes using calculated split points.

Completed in 1082 milliseconds

<<11121314151617181920>>