Searched defs:specific (Results 1 - 21 of 21) sorted by relevance

/external/apache-commons-math/src/main/java/org/apache/commons/math/exception/
H A DConvergenceException.java14 * See the License for the specific language governing permissions and
40 * Construct the exception with a specific context.
42 * @param specific Specific contexte pattern.
44 public ConvergenceException(Localizable specific) { argument
45 this(specific,
50 * Construct the exception with a specific context and arguments.
52 * @param specific Specific contexte pattern.
55 public ConvergenceException(Localizable specific, argument
57 super(specific,
H A DNoDataException.java14 * See the License for the specific language governing permissions and
40 * Construct the exception with a specific context.
42 * @param specific Contextual information on what caused the exception.
44 public NoDataException(Localizable specific) { argument
45 super(specific, LocalizedFormats.NO_DATA, (Object[]) null);
H A DNotPositiveException.java14 * See the License for the specific language governing permissions and
41 * Construct the exception with a specific context.
43 * @param specific Specific context where the error occurred.
46 public NotPositiveException(Localizable specific, argument
48 super(specific, value, 0, true);
H A DNotStrictlyPositiveException.java14 * See the License for the specific language governing permissions and
41 * Construct the exception with a specific context.
43 * @param specific Specific context where the error occurred.
46 public NotStrictlyPositiveException(Localizable specific, argument
48 super(specific, value, 0, false);
H A DNullArgumentException.java14 * See the License for the specific language governing permissions and
44 * @param specific Message pattern providing the specific context of
47 public NullArgumentException(Localizable specific) { argument
48 super(specific, LocalizedFormats.NULL_NOT_ALLOWED);
H A DZeroException.java14 * See the License for the specific language governing permissions and
41 * Construct the exception with a specific context.
43 * @param specific Specific contexte pattern .
45 public ZeroException(Localizable specific) { argument
46 super(specific, LocalizedFormats.ZERO_NOT_ALLOWED, 0);
H A DMathIllegalNumberException.java14 * See the License for the specific language governing permissions and
41 * @param specific Localizable pattern.
46 protected MathIllegalNumberException(Localizable specific, argument
50 super(specific, general, wrong, arguments);
H A DMathUnsupportedOperationException.java14 * See the License for the specific language governing permissions and
41 * Pattern used to build the message (specific context).
43 private final Localizable specific; field in class:MathUnsupportedOperationException
56 * @param specific Message pattern providing the specific context of
60 public MathUnsupportedOperationException(Localizable specific, argument
62 this.specific = specific;
68 return specific;
90 specific,
[all...]
H A DNumberIsTooLargeException.java14 * See the License for the specific language governing permissions and
55 * Construct the exception with a specific context.
57 * @param specific Specific contexte pattern .
62 public NumberIsTooLargeException(Localizable specific, argument
66 super(specific,
H A DNumberIsTooSmallException.java14 * See the License for the specific language governing permissions and
56 * Construct the exception with a specific context.
58 * @param specific Specific contexte pattern .
63 public NumberIsTooSmallException(Localizable specific, argument
67 super(specific,
H A DMathIllegalArgumentException.java14 * See the License for the specific language governing permissions and
41 * Pattern used to build the message (specific context).
43 private final Localizable specific; field in class:MathIllegalArgumentException
54 * @param specific Message pattern providing the specific context of
59 protected MathIllegalArgumentException(Localizable specific, argument
62 this.specific = specific;
77 return specific;
98 return MessageFactory.buildMessage(locale, specific, genera
[all...]
H A DMathIllegalStateException.java14 * See the License for the specific language governing permissions and
38 * Pattern used to build the message (specific context).
40 private final Localizable specific; field in class:MathIllegalStateException
52 * @param specific Message pattern providing the specific context of
57 public MathIllegalStateException(Localizable specific, argument
60 this(null, specific, general, args);
66 * @param specific Message pattern providing the specific context of
72 Localizable specific,
71 MathIllegalStateException(Throwable cause, Localizable specific, Localizable general, Object ... args) argument
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/exception/util/
H A DMessageFactory.java14 * See the License for the specific language governing permissions and
49 * Builds a message string by from two patterns (specific and general) and
53 * @param specific Format specifier (may be null).
56 * <em>both</em> the {@code general} and {@code specific} format specifiers.
60 Localizable specific,
68 if (specific != null) {
72 final MessageFormat fmt = new MessageFormat(specific.getLocalizedString(locale), locale);
59 buildMessage(Locale locale, Localizable specific, Localizable general, Object ... arguments) argument
/external/libunwind/doc/
H A Dunw_getcontext.tex22 platform-specific, but, in general, at least all preserved
29 \section{Platform-specific Notes}
/external/webrtc/webrtc/test/
H A Dconfigurable_frame_size_encoder.cc54 CodecSpecificInfo specific; local
55 memset(&specific, 0, sizeof(specific));
56 callback_->Encoded(encodedImage, &specific, fragmentation);
/external/mesa3d/src/compiler/nir/
H A Dnir_opt_copy_prop_vars.c459 * some of its wildcards are replaced with indices from \param specific. The
461 * specific but has the same wildcard array lengths as \param deref.
466 nir_deref_var *specific,
473 nir_deref *spec_tail = specific->deref.child;
464 specialize_wildcards(nir_deref_var *deref, nir_deref_var *guide, nir_deref_var *specific, void *mem_ctx) argument
/external/ltp/testcases/kernel/fs/scsi/ltpscsi/
H A Dscsimain.c1036 printf(" 0x18 Protocol specific port\n");
1171 printf(" Reserved or vendor specific [0x%x]", pc);
1213 printf(" Vendor specific [0x%x]", pc);
2924 (" [vendor specific manner (5)]");
2936 (" opcode=0x%.2x vendor specific (%d)\n",
2997 desc_p = "vendor specific (4)";
3001 "supported in vendor specific way";
3005 desc_p = "vendor specific (6)";
3507 {0x16, "Extended device-type specific"},
3508 {0x18, "Protocol specific LU
3723 int medium_type, specific, headerlen; local
[all...]
/external/python/cpython2/Objects/
H A Dtypeobject.c4137 /* Add type-specific descriptors to tp_dict */
6248 interests, and then stores a generic wrapper or a specific function into
6256 void *generic = NULL, *specific = NULL; local
6271 specific = _PyObject_NextNotImplemented;
6284 if (specific == NULL ||
6285 specific == d->d_wrapped)
6286 specific = d->d_wrapped;
6307 specific = (void *)type->tp_new;
6318 specific = PyObject_HashNotImplemented;
6325 if (specific
[all...]
/external/guice/extensions/struts2/lib/
H A Dfreemarker-2.3.16.jarMETA-INF/ META-INF/MANIFEST.MF freemarker/ freemarker/cache/ freemarker/core/ freemarker/debug/ freemarker/debug/impl/ ...
/external/icu/tools/srcgen/currysrc/libs/
H A Dorg.eclipse.jdt.core_3.11.0.v20150602-1242.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSE_.SF META-INF/ECLIPSE_.RSA META ...
/external/dagger2/lib/
H A Dgoogle-java-format-0.1-20151017.042846-2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/googlejavaformat/ com/google/googlejavaformat/CloseOp ...

Completed in 1384 milliseconds