Searched refs:parts (Results 1 - 25 of 196) sorted by relevance

12345678

/external/chromium-trace/trace-viewer/third_party/Paste/paste/util/
H A Dimport_string.py40 parts = s.split('.')
41 module = import_module(parts[0])
42 name = parts[0]
43 parts = parts[1:]
45 while parts:
46 name += '.' + parts[0]
49 parts = parts[1:]
54 while parts
[all...]
/external/openssh/openbsd-compat/
H A Dinet_aton.c93 u_int parts[4]; local
94 u_int *pp = parts;
131 if (pp >= parts + 3)
145 * the number of parts specified.
147 n = pp - parts + 1;
157 if ((val > 0xffffff) || (parts[0] > 0xff))
159 val |= parts[0] << 24;
163 if ((val > 0xffff) || (parts[0] > 0xff) || (parts[1] > 0xff))
165 val |= (parts[
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
H A Dcall-stack.rb9 parts = call_string.split( ':', 3 )
10 file = parts.shift
11 line = parts.shift.to_i
12 if parts.empty?
15 mstring = parts.shift
/external/apache-commons-math/src/main/java/org/apache/commons/math/geometry/
H A DNotARotationMatrixException.java41 * @param parts to insert in the format (no translation)
45 public NotARotationMatrixException(String specifier, Object ... parts) { argument
46 super(specifier, parts);
53 * @param parts to insert in the format (no translation)
56 public NotARotationMatrixException(Localizable specifier, Object ... parts) { argument
57 super(specifier, parts);
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/
H A DIntegratorException.java38 * @param parts to insert in the format (no translation)
42 public IntegratorException(final String specifier, final Object ... parts) { argument
43 super(specifier, parts);
49 * @param parts to insert in the format (no translation)
52 public IntegratorException(final Localizable specifier, final Object ... parts) { argument
53 super(specifier, parts);
H A DDerivativeException.java39 * @param parts to insert in the format (no translation)
41 public DerivativeException(final String specifier, final Object ... parts) { argument
42 this(new DummyLocalizable(specifier), parts);
48 * @param parts to insert in the format (no translation)
51 public DerivativeException(final Localizable specifier, final Object ... parts) { argument
52 super(specifier, parts);
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/events/
H A DEventException.java37 * @param parts to insert in the format (no translation)
41 public EventException(final String specifier, final Object ... parts) { argument
42 super(specifier, parts);
48 * @param parts to insert in the format (no translation)
51 public EventException(final Localizable specifier, final Object ... parts) { argument
52 super(specifier, parts);
/external/jarjar/src/main/com/tonicsystems/jarjar/
H A DRulesFileParser.java50 String[] parts = line.split("\\s+");
51 if (parts.length < 2)
52 error(c, parts);
53 String type = parts[0];
56 if (parts.length < 3)
57 error(c, parts);
59 rule.setResult(parts[2]);
66 error(c, parts);
68 element.setPattern(parts[1]);
78 private static void error(int line, String[] parts) { argument
[all...]
/external/chromium-trace/trace-viewer/third_party/webapp2/webapp2_extras/
H A Dsecurecookie.py70 parts = value.split('|')
71 if len(parts) != 3:
74 signature = self._get_signature(name, parts[0], parts[1])
76 if not security.compare_hashes(parts[2], signature):
81 if int(parts[1]) < self._get_timestamp() - max_age:
86 return self._decode(parts[0])
88 logging.warning('Cookie value failed to be decoded: %r', parts[0])
100 def _get_signature(self, *parts):
103 signature.update('|'.join(parts))
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/publishingFiles/staticDropFiles/
H A DbuildNotes.php4 $parts = explode("/", getcwd()); variable
5 $parts2 = explode("-", $parts[count($parts) - 1]);
14 $parts = explode(",", $aLine); variable
15 $dropNames[trim($parts[0])] = trim($parts[1]);
43 $parts = explode("_", $anEntry); variable
44 $baseName = $parts[1];
45 $parts = explode(".", $baseName); variable
46 $component = $parts[
[all...]
H A DconsoleLogs.php4 $parts = explode("/", getcwd()); variable
5 $parts2 = explode("-", $parts[count($parts) - 1]);
14 $parts = explode(",", $aLine); variable
15 $dropNames[trim($parts[0])] = trim($parts[1]);
H A Ddownload.php7 $parts = explode("-", $dropFile); variable
9 for ($i =0; $i<count($parts); $i++) {
11 $clickFile = $clickFile.$parts[$i];
12 if ($i < count($parts) - 1) {
/external/apache-commons-math/src/main/java/org/apache/commons/math/estimation/
H A DEstimationException.java44 * @param parts to insert in the format (no translation)
46 public EstimationException(String specifier, Object ... parts) { argument
47 this(new DummyLocalizable(specifier), parts);
54 * @param parts to insert in the format (no translation)
57 public EstimationException(Localizable specifier, Object ... parts) { argument
58 super(specifier, parts);
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/
H A DOptimizationException.java41 * @param parts to insert in the format (no translation)
45 public OptimizationException(String specifier, Object ... parts) { argument
46 this(new DummyLocalizable(specifier), parts);
53 * @param parts to insert in the format (no translation)
56 public OptimizationException(Localizable specifier, Object ... parts) { argument
57 super(specifier, parts);
/external/apache-http/android/src/com/android/internal/http/multipart/
H A DMultipartEntity.java57 * a series of parts. Each part is expected to contain a content-disposition
71 * Part[] parts = {
76 * new MultipartRequestEntity(parts, filePost.getParams())
117 /** The MIME parts as set by the constructor */
118 protected Part[] parts; field in class:MultipartEntity
127 * Creates a new multipart entity containing the given parts.
128 * @param parts The parts to include.
131 public MultipartEntity(Part[] parts, HttpParams params) { argument
132 if (parts
142 MultipartEntity(Part[] parts) argument
[all...]
H A DPart.java351 * 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) argument
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
374 sendParts(OutputStream out, Part[] parts, byte[] partBoundary) argument
402 getLengthOfParts(Part[] parts) argument
418 getLengthOfParts(Part[] parts, byte[] partBoundary) argument
[all...]
/external/libpcap/Win32/Src/
H A Dinet_net.c51 u_long parts[4], *pp = parts; local
85 if (pp >= parts + 4)
93 n = pp - parts;
98 val |= parts[i] & 0xff;
/external/lzma/CPP/7zip/UI/Common/
H A DExtractingFilePath.h8 UString MakePathNameFromParts(const UStringVector &parts);
/external/guava/guava/src/com/google/common/base/
H A DJoiner.java92 * Appends the string representation of each of {@code parts}, using the previously configured
95 public <A extends Appendable> A appendTo(A appendable, Iterable<?> parts) throws IOException { argument
96 return appendTo(appendable, parts.iterator());
100 * Appends the string representation of each of {@code parts}, using the previously configured
105 public <A extends Appendable> A appendTo(A appendable, Iterator<?> parts) throws IOException { argument
107 if (parts.hasNext()) {
108 appendable.append(toString(parts.next()));
109 while (parts.hasNext()) {
111 appendable.append(toString(parts.next()));
118 * Appends the string representation of each of {@code parts}, usin
121 appendTo(A appendable, Object[] parts) argument
139 appendTo(StringBuilder builder, Iterable<?> parts) argument
150 appendTo(StringBuilder builder, Iterator<?> parts) argument
164 appendTo(StringBuilder builder, Object[] parts) argument
182 join(Iterable<?> parts) argument
192 join(Iterator<?> parts) argument
200 join(Object[] parts) argument
352 appendTo(A appendable, Iterator<? extends Entry<?, ?>> parts) argument
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DLocaleUtility.java117 // Split the locale into parts and remove the rightmost part
118 String[] parts = new String[]
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/protobuf/src/google/protobuf/compiler/
H A Dcode_generator.cc66 vector<string> parts = Split(text, ",", true); local
68 for (int i = 0; i < parts.size(); i++) {
69 string::size_type equals_pos = parts[i].find_first_of('=');
72 value.first = parts[i];
75 value.first = parts[i].substr(0, equals_pos);
76 value.second = parts[i].substr(equals_pos + 1);
/external/jetty/src/java/org/eclipse/jetty/servlets/
H A DConcatServlet.java98 String[] parts = q.split("\\&");
100 for (int i=0;i<parts.length;i++)
102 String t = _context.getMimeType(parts[i]);
118 for (int i=0;i<parts.length;i++)
120 RequestDispatcher dispatcher=_context.getRequestDispatcher(parts[i]);
/external/chromium-trace/trace-viewer/hooks/
H A Dpre_push26 parts = sys.stdin.readline().split()
27 if len(parts) < 4:
29 local_ref, local_sha, remote_ref, remote_sha = parts
/external/guava/guava/src/com/google/common/net/
H A DInternetDomainName.java63 * {@link #parts()}, and will be reflected in the result of
93 * Maximum parts (labels) in a domain name. This value arises from
121 * The parts of the domain name, converted to lower case.
123 private final ImmutableList<String> parts; field in class:InternetDomainName
126 * The index in the {@link #parts()} list at which the public suffix begins.
153 this.parts = ImmutableList.copyOf(DOT_SPLITTER.split(name));
154 checkArgument(parts.size() <= MAX_PARTS,
155 "Domain has too many parts: '%s'", name);
156 checkArgument(validateSyntax(parts), "Not a valid domain name: '%s'", name);
168 final int partsSize = parts
222 validateSyntax(List<String> parts) argument
306 public ImmutableList<String> parts() { method in class:InternetDomainName
[all...]
/external/chromium-libpac/src/
H A Dnet_util.cc66 std::vector<std::string> parts; local
70 parts.push_back(cidr_literal.substr(0, split));
71 parts.push_back(cidr_literal.substr(split + 1));
72 if (parts[1].find('/') != std::string::npos)
76 if (!ParseIPLiteralToNumber(parts[0], ip_number))
80 int number_of_bits = atoi(parts[1].c_str());

Completed in 2389 milliseconds

12345678