HomeSort by relevance Sort by last modified time
    Searched full:equivalent (Results 501 - 525 of 10360) sorted by null

<<21222324252627282930>>

  /external/icu/icu4c/source/common/unicode/
caniter.h 40 * This class allows one to iterate through all the strings that are canonically equivalent to a given
104 * Get the next canonically equivalent string.
106 * @return the next string that is canonically equivalent. A bogus string is returned when
171 // their different canonically equivalent representations
186 // we have a segment, in NFD. Find all the strings that are canonically equivalent to it.
ubiditransform.h 134 * <li><Logical LTR, Visual LTR>: this is equivalent to calling
136 * <li><Logical RTL, Visual LTR>: this is equivalent to calling
138 * <li><Logical Default ("Auto") LTR, Visual LTR>: this is equivalent to
141 * <li><Logical Default ("Auto") RTL, Visual LTR>: this is equivalent to
144 * <li><Visual LTR, Logical LTR>: this is equivalent to
147 * <li><Visual LTR, Logical RTL>: this is equivalent to
  /external/lz4/programs/
lz4.1.md 9 `unlz4` is equivalent to `lz4 -d`
11 `lz4cat` is equivalent to `lz4 -dcfm`
72 is equivalent to :
84 For example, `-d -c` is equivalent to `-dc`.
146 `lz4 -m` has a behavior equivalent to `gzip -k`
  /libcore/ojluni/src/main/java/java/text/
Normalizer.java 43 * text into an equivalent composed or decomposed form, allowing for easier
66 * treated as equivalent. In addition, you must handle characters with more than
69 * really equivalent.
120 // BEGIN Android-changed: remove static modifier and add mapping to equivalent ICU values.
149 // END Android-changed: remove static modifier and add mapping to equivalent ICU values.
  /libcore/ojluni/src/main/java/java/time/temporal/
TemporalAdjuster.java 75 * There are two equivalent ways of using a {@code TemporalAdjuster}.
79 * // these two lines are equivalent, but the second approach is recommended
116 * There are two equivalent ways of using this method.
120 * // these two lines are equivalent, but the second approach is recommended
136 * This provides equivalent, safe behavior for immutable and mutable temporal objects.
Temporal.java 177 * This provides equivalent, safe behavior for immutable and mutable implementations.
179 * The default implementation must behave equivalent to this code:
216 * This provides equivalent, safe behavior for immutable and mutable implementations.
249 * This provides equivalent, safe behavior for immutable and mutable implementations.
251 * The default implementation must behave equivalent to this code:
288 * This provides equivalent, safe behavior for immutable and mutable implementations.
321 * This provides equivalent, safe behavior for immutable and mutable implementations.
323 * The default implementation must behave equivalent to this code:
350 * Implementations must behave in a manor equivalent to the default method behavior.
354 * This provides equivalent, safe behavior for immutable and mutable implementations
    [all...]
TemporalAmount.java 142 * There are two equivalent ways of using this method.
146 * // These two lines are equivalent, but the second approach is recommended
162 * This provides equivalent, safe behavior for immutable and mutable temporal objects.
184 * There are two equivalent ways of using this method.
188 * // these two lines are equivalent, but the second approach is recommended
204 * This provides equivalent, safe behavior for immutable and mutable temporal objects.
  /libcore/ojluni/src/main/java/java/util/regex/
MatchResult.java 59 * the expression <i>m.</i><tt>start(0)</tt> is equivalent to
96 * the expression <i>m.</i><tt>end(0)</tt> is equivalent to
122 * are equivalent. </p>
144 * are equivalent. </p>
148 * the expression <tt>m.group(0)</tt> is equivalent to <tt>m.group()</tt>.
  /external/clang/docs/
ObjectiveCLiterals.rst 47 NSNumber *theLetterZ = @'Z'; // equivalent to [NSNumber numberWithChar:'Z']
50 NSNumber *fortyTwo = @42; // equivalent to [NSNumber numberWithInt:42]
51 NSNumber *fortyTwoUnsigned = @42U; // equivalent to [NSNumber numberWithUnsignedInt:42U]
52 NSNumber *fortyTwoLong = @42L; // equivalent to [NSNumber numberWithLong:42L]
53 NSNumber *fortyTwoLongLong = @42LL; // equivalent to [NSNumber numberWithLongLong:42LL]
56 NSNumber *piFloat = @3.141592654F; // equivalent to [NSNumber numberWithFloat:3.141592654F]
57 NSNumber *piDouble = @3.1415926535; // equivalent to [NSNumber numberWithDouble:3.1415926535]
60 NSNumber *yesNumber = @YES; // equivalent to [NSNumber numberWithBool:YES]
61 NSNumber *noNumber = @NO; // equivalent to [NSNumber numberWithBool:NO]
64 NSNumber *trueNumber = @true; // equivalent to [NSNumber numberWithBool:(BOOL)true
    [all...]
  /external/python/cpython3/Doc/c-api/
bytes.rst 75 | :attr:`%d` | int | Exactly equivalent to |
78 | :attr:`%u` | unsigned int | Exactly equivalent to |
81 | :attr:`%ld` | long | Exactly equivalent to |
84 | :attr:`%lu` | unsigned long | Exactly equivalent to |
87 | :attr:`%zd` | Py_ssize_t | Exactly equivalent to |
90 | :attr:`%zu` | size_t | Exactly equivalent to |
93 | :attr:`%i` | int | Exactly equivalent to |
96 | :attr:`%x` | int | Exactly equivalent to |
103 | | | pointer. Mostly equivalent to |
  /libcore/ojluni/src/main/java/java/util/
Deque.java 100 * inherited from the {@code Queue} interface are precisely equivalent to
107 * <td ALIGN=CENTER> <b>Equivalent {@code Deque} Method</b></td>
138 * beginning of the deque. Stack methods are precisely equivalent to
145 * <td ALIGN=CENTER> <b>Equivalent {@code Deque} Method</b></td>
219 * <p>This method is equivalent to {@link #add}.
391 * <p>This method is equivalent to {@link #addLast}.
415 * <p>This method is equivalent to {@link #offerLast}.
435 * <p>This method is equivalent to {@link #removeFirst()}.
447 * <p>This method is equivalent to {@link #pollFirst()}.
460 * <p>This method is equivalent to {@link #getFirst()}
    [all...]
  /libcore/ojluni/src/main/java/java/util/concurrent/
BlockingDeque.java 132 * {@code BlockingQueue} interface are precisely equivalent to
139 * <td ALIGN=CENTER> <b>Equivalent {@code BlockingDeque} Method</b></td>
446 * <p>This method is equivalent to {@link #addLast(Object) addLast}.
467 * <p>This method is equivalent to {@link #offerLast(Object) offerLast}.
483 * <p>This method is equivalent to {@link #putLast(Object) putLast}.
500 * <p>This method is equivalent to
522 * <p>This method is equivalent to {@link #removeFirst() removeFirst}.
534 * <p>This method is equivalent to {@link #pollFirst()}.
545 * <p>This method is equivalent to {@link #takeFirst() takeFirst}.
557 * <p>This method is equivalent t
    [all...]
  /frameworks/base/core/res/res/values/
colors.xml 36 <!-- The color white, equivalent to 0xffffffff -->
38 <!-- The color black, equivalent to 0xff000000 -->
41 <!-- Fully transparent, equivalent to 0x00000000 -->
43 <!-- Equivalent to 0xff000000 -->
45 <!-- Equivalent to 0xffffffff -->
88 <!-- A dark gray, equivalent to 0xffaaaaaa -->
  /frameworks/rs/rsov/compiler/spirit/
module.h 164 // This implies that struct types are strictly structural equivalent, i.e.,
165 // two structs are equivalent i.f.f. their fields are equivalent, recursively.
419 // This implies that struct types are strictly structural equivalent, i.e.,
420 // two structs are equivalent i.f.f. their fields are equivalent, recursively.
  /libnativehelper/platform_include/nativehelper/
jni_macros.h 152 // The equivalent Java Language code must not be annotated with @FastNative/@CriticalNative.
158 // The equivalent Java Language code must be annotated with @FastNative.
164 // The equivalent Java Language code must be annotated with @CriticalNative.
175 // The equivalent Java Language code must not be annotated with @FastNative/@CriticalNative.
183 // The equivalent Java Language code must be annotated with @FastNative.
190 // The equivalent Java Language code must be annotated with @CriticalNative.
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/timezone/
TimeZoneRuleTest.java 86 // Equivalent, but different date rule type
97 // Equivalent, but different time rule type
113 errln("FAIL: rbtz1 must be equivalent to the SimpleTimeZone in the time range.");
116 errln("FAIL: rbtz2 must be equivalent to the SimpleTimeZone in the time range.");
119 errln("FAIL: rbtz3 must be equivalent to the SimpleTimeZone in the time range.");
214 * equivalent rules in a certain time range
218 // Compare to America/New_York with equivalent RBTZ
276 errln("FAIL: The RBTZ must be equivalent to America/New_York between 1967 and 2010");
279 errln("FAIL: The RBTZ must not be equivalent to America/New_York between 1950 and 2010");
284 errln("FAIL: The RBTZ must be equivalent to America/New_York between 1967 and 2010")
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/timezone/
TimeZoneRuleTest.java 83 // Equivalent, but different date rule type
94 // Equivalent, but different time rule type
110 errln("FAIL: rbtz1 must be equivalent to the SimpleTimeZone in the time range.");
113 errln("FAIL: rbtz2 must be equivalent to the SimpleTimeZone in the time range.");
116 errln("FAIL: rbtz3 must be equivalent to the SimpleTimeZone in the time range.");
211 * equivalent rules in a certain time range
215 // Compare to America/New_York with equivalent RBTZ
273 errln("FAIL: The RBTZ must be equivalent to America/New_York between 1967 and 2010");
276 errln("FAIL: The RBTZ must not be equivalent to America/New_York between 1950 and 2010");
281 errln("FAIL: The RBTZ must be equivalent to America/New_York between 1967 and 2010")
    [all...]
  /external/guava/guava/src/com/google/common/collect/
ImmutableSortedSet.java 59 * implementations must check whether a provided object is equivalent to an
62 * two elements are equivalent. Instead, with an explicit comparator, the
64 * equivalent: <pre> {@code
69 * two elements are equivalent: <pre> {@code
135 * their natural ordering. When multiple elements are equivalent according to
148 * their natural ordering. When multiple elements are equivalent according to
161 * their natural ordering. When multiple elements are equivalent according to
174 * their natural ordering. When multiple elements are equivalent according to
187 * their natural ordering. When multiple elements are equivalent according to
211 * their natural ordering. When multiple elements are equivalent according t
    [all...]
  /external/python/cpython2/Doc/library/
itertools.rst 71 :func:`product` p, q, ... [repeat=1] cartesian product, equivalent to a nested for-loop
97 Roughly equivalent to::
109 single iterable argument that is evaluated lazily. Roughly equivalent to::
132 Roughly equivalent to::
183 Roughly equivalent to::
222 Roughly equivalent to::
235 Also, used with :func:`izip` to add sequence numbers. Equivalent to::
256 indefinitely. Roughly equivalent to::
277 start-up time. Roughly equivalent to::
316 :func:`groupby` is roughly equivalent to:
    [all...]
  /bootable/recovery/edify/
README.md 70 # these are all equivalent
83 The last example is equivalent to:
  /build/kati/
eval.h 51 // Equivalent to LookupVar, but doesn't mark as used.
122 // Equivalent to LookupVarInCurrentScope, but doesn't mark as used.
  /build/make/target/product/
runtime_libart.mk 23 # Minimal boot classpath. This should be a subset of PRODUCT_BOOT_JARS, and equivalent to
89 # or if it is empty speed-profile is equivalent to (quicken + empty app image).
  /developers/build/prebuilts/gradle/DocumentCentricApps/
README.md 21 attribute documentLaunchMode which may take on one of three values, ?intoExisting? equivalent to
22 NEW_DOCUMENT, ?always? equivalent to NEW_DOCUMENT | MULTIPLE_TASK, ?none? the default, and
  /developers/samples/android/ui/activitytasks/DocumentCentricApps/
template-params.xml 73 attribute documentLaunchMode which may take on one of three values, ?intoExisting? equivalent to
74 NEW_DOCUMENT, ?always? equivalent to NEW_DOCUMENT | MULTIPLE_TASK, ?none? the default, and
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
contextlib.py 72 equivalent to this:
140 is equivalent to this:

Completed in 499 milliseconds

<<21222324252627282930>>