/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/events/ |
EventException.java | 37 * @param parts to insert in the format (no translation) 41 public EventException(final String specifier, final Object ... parts) { 42 super(specifier, parts); 48 * @param parts to insert in the format (no translation) 51 public EventException(final Localizable specifier, final Object ... parts) { 52 super(specifier, parts);
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/ |
OptimizationException.java | 41 * @param parts to insert in the format (no translation) 45 public OptimizationException(String specifier, Object ... parts) { 46 this(new DummyLocalizable(specifier), parts); 53 * @param parts to insert in the format (no translation) 56 public OptimizationException(Localizable specifier, Object ... parts) { 57 super(specifier, parts);
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/publishingFiles/staticDropFiles/ |
consoleLogs.php | 4 $parts = explode("/", getcwd());
variable 5 $parts2 = explode("-", $parts[count($parts) - 1]);
14 $parts = explode(",", $aLine);
variable 15 $dropNames[trim($parts[0])] = trim($parts[1]);
|
download.php | 7 $parts = explode("-", $dropFile);
variable 9 for ($i =0; $i<count($parts); $i++) {
11 $clickFile = $clickFile.$parts[$i];
12 if ($i < count($parts) - 1) {
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/publishingFiles/templateFiles/ |
testResults.php.template | 5 $parts = explode("/", getcwd()); 6 $parts2 = explode("-", $parts[count($parts) - 1]); 15 $parts = explode(",", $aLine); 16 $dropNames[trim($parts[0])] = trim($parts[1]);
|
/dalvik/opcode-gen/ |
opcode-gen.awk | 247 function readBytecodes(i, parts, line, cmd, status, count) { 248 # locals: parts, line, cmd, status, count 263 count = split(line, parts); 265 cmd = parts[1]; 286 function defineOpcode(line, count, parts, idx) { 287 # locals: count, parts, idx 288 count = split(line, parts); 290 idx = parseHex(parts[1]); 294 hex[idx] = parts[1]; 295 name[idx] = parts[2] [all...] |
/frameworks/base/tools/split-select/ |
SplitDescription.cpp | 85 ssize_t parseAbi(const Vector<String8>& parts, const ssize_t index, 87 const ssize_t N = parts.size(); 90 if (parts[endIndex] == "arm64") { 93 if (parts[endIndex] == "v8a") { 98 } else if (parts[endIndex] == "armeabi") { 102 if (parts[endIndex] == "v7a") { 107 } else if (parts[endIndex] == "x86") { 110 } else if (parts[endIndex] == "x86_64") { 113 } else if (parts[endIndex] == "mips") { 116 } else if (parts[endIndex] == "mips64") 148 Vector<String8> parts = AaptUtil::splitAndLowerCase(extensionStr, '-'); local [all...] |
/external/apache-http/android/src/com/android/internal/http/multipart/ |
Part.java | 351 * Write all parts and the last boundary to the specified output stream. 354 * @param parts The parts to write. 356 * @throws IOException If an I/O error occurs while writing the parts. 358 public static void sendParts(OutputStream out, final Part[] parts) 360 sendParts(out, parts, DEFAULT_BOUNDARY_BYTES); 364 * Write all parts and the last boundary to the specified output stream. 367 * @param parts The parts to write. 370 * @throws IOException If an I/O error occurs while writing the parts [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
LocaleUtility.java | 117 // Split the locale into parts and remove the rightmost part 118 String[] parts = new String[] local 122 if (parts[i].length() != 0) { 123 parts[i] = ""; 128 return null; // All parts were empty 130 return new Locale(parts[0], parts[1], parts[2]);
|
/external/lzma/CPP/7zip/UI/Common/ |
ExtractingFilePath.cpp | 105 UString MakePathNameFromParts(const UStringVector &parts)
108 for (int i = 0; i < parts.Size(); i++)
112 result += parts[i];
129 UStringVector parts;
local 130 SplitPathToParts(path, parts);
131 for (int i = 0; i < parts.Size(); i++)
133 UString &s = parts[i];
141 return MakePathNameFromParts(parts);
|
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/util/ |
StringUtil.java | 56 * Join the Strings within the parts Collection, inserting the delimiter in between elements
58 * @param parts - the Collection of Strings to join
59 * @param delimiter - the delimiter String to insert between the parts
60 * @return the Strings within the parts collection joined together using the specified delimiter
62 public static String join(Collection parts, String delimiter) {
63 Assert.notNull(parts, "parts");
67 Iterator iter = parts.iterator();
|
/external/nist-sip/java/gov/nist/javax/sip/message/ |
MultipartMimeContent.java | 36 * Get the number of Content parts. 38 * @return - the content parts.
|
/frameworks/base/tools/aapt2/ |
Locale_test.cpp | 26 std::vector<std::string> parts = util::splitAndLowercase(std::string(input), '-'); local 28 ssize_t count = lv.initFromParts(std::begin(parts), std::end(parts)); 35 << " parts were consumed parsing '" << input << "' but expected 1."; 48 std::vector<std::string> parts = util::splitAndLowercase(std::string(input), '-'); local 50 ssize_t count = lv.initFromParts(std::begin(parts), std::end(parts)); 57 << " parts were consumed parsing '" << input << "' but expected 2.";
|
/packages/screensavers/PhotoTable/res/values-sw600dp/ |
config.xml | 17 <!-- Parts per million ratio between image size and screen size. --> 20 <!-- Parts per million ratio between image size on the table and screen size. -->
|
/system/extras/tests/workloads/ |
atrace-uncompress.py | 16 parts = out.split('\nTRACE:', 1) 18 data = ''.join(parts[1])
|
/art/runtime/ |
indirect_reference_table.cc | 107 size_t topIndex = segment_state_.parts.topIndex; 112 DCHECK_GE(segment_state_.parts.numHoles, prevState.parts.numHoles); 124 int numHoles = segment_state_.parts.numHoles - prevState.parts.numHoles; 133 DCHECK_GE(pScan, table_ + prevState.parts.topIndex); 137 segment_state_.parts.numHoles--; 141 segment_state_.parts.topIndex = topIndex; 146 LOG(INFO) << "+++ added at " << ExtractIndex(result) << " top=" << segment_state_.parts.topIndex 147 << " holes=" << segment_state_.parts.numHoles [all...] |
/external/chromium-trace/trace-viewer/tracing/tracing/base/ |
utils.html | 55 var parts = path.split('.'); 58 for (var part; parts.length && (part = parts.shift());) { 59 if (!parts.length) {
|
/external/iptables/include/linux/netfilter/ |
nf_conntrack_tuple_common.h | 10 /* The protocol-specific manipulable parts of the tuple: always in
|
/external/kernel-headers/original/uapi/linux/netfilter/ |
nf_conntrack_tuple_common.h | 10 /* The protocol-specific manipulable parts of the tuple: always in
|
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/util/ |
OS.java | 32 final String[] parts = version.split("\\."); typedefs 33 leopard = Integer.parseInt(parts[0]) >= 10 && Integer.parseInt(parts[1]) >= 5;
|
/external/llvm/unittests/ADT/ |
StringRefTest.cpp | 151 SmallVector<StringRef, 5> parts; local 155 StringRef(",ab,,c,").split(parts, ",", -1, false); 156 EXPECT_TRUE(parts == expected); 158 expected.clear(); parts.clear(); 161 StringRef(",ab,,c,").split(parts, ",", -1, true); 162 EXPECT_TRUE(parts == expected); 164 expected.clear(); parts.clear(); 166 StringRef("").split(parts, ",", -1, true); 167 EXPECT_TRUE(parts == expected); 169 expected.clear(); parts.clear() [all...] |
/packages/services/Telephony/src/com/android/phone/common/mail/utils/ |
Utility.java | 35 public static String combine(Object[] parts, char separator) { 36 if (parts == null) { 40 for (int i = 0; i < parts.length; i++) { 41 sb.append(parts[i].toString()); 42 if (i < parts.length - 1) {
|
/build/tools/ |
event_log_tags.py | 68 parts = re.split(r"\s+", line, 2) 70 if len(parts) < 2: 74 if parts[0] == "option": 75 self.options[parts[1]] = parts[2:] 78 if parts[0] == "?": 82 tag = int(parts[0]) 84 self.AddError("\"%s\" isn't an integer tag or '?'" % (parts[0],)) 87 tagname = parts[1] 88 if len(parts) == 3 [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/publishingFiles/dropSiteRootFiles/ |
index.php | 66 $parts = explode("-", $anEntry);
variable 67 if (count($parts) == 3) {
69 $buckets[$parts[0]][] = $anEntry;
71 $timePart = $parts[2];
81 if ($timeStamp > $latestTimeStamp[$parts[0]]) {
82 $latestTimeStamp[$parts[0]] = $timeStamp;
83 $latestFile[$parts[0]] = $anEntry;
100 $parts = explode("-", $fileName);
variable 103 // echo "<td><a href=license.php?license=drops/$fileName>$parts[1]</a></td>";
106 echo "<td><a href=\"drops/$fileName/index.html\">$parts[1]</a></td>"; 132 $parts = explode("-", $innerValue); variable [all...] |
/system/core/libpixelflinger/codeflinger/ |
texturing.cpp | 39 void GGLAssembler::init_iterated_color(fragment_parts_t& parts, const reg_t& x) 53 parts.iterated_packed = 0; 54 parts.packed = 0; 59 if (optReload >= 3) parts.reload = 0; // reload nothing 60 else if (optReload == 2) parts.reload = 2; // reload iterators 61 else if (optReload == 1) parts.reload = 1; // reload colors 62 else if (optReload <= 0) parts.reload = 3; // reload both 67 parts.reload &= ~2; 71 const int t0 = (parts.reload & 1) ? scratches.obtain() : 0; 72 const int t1 = (parts.reload & 2) ? scratches.obtain() : 0 [all...] |