HomeSort by relevance Sort by last modified time
    Searched defs:target (Results 1 - 25 of 406) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/genext2fs/
Config.mk 5 define build-userimage-ext2-target
  /external/icu4c/i18n/
anytrans.h 24 * A transliterator named Any-T or Any-T/V, where T is the target
27 * The target must be a script. It partitions text into runs of the
29 * transliterates from that script to the given target or
30 * target/variant. Adjacent COMMON or INHERITED script characters are
43 * The target or target/variant string.
45 UnicodeString target; member in class:AnyTransliterator
48 * The target script code. Never USCRIPT_INVALID_CODE.
91 * @param theTarget the target name. Must not be empty, and must
107 * Returns a transliterator from the given source to our target o
    [all...]
tridpars.h 31 * A basic ID, which contains source, target, and variant, but no
56 * 'source' and 'target' will always be non-null. The 'variant'
69 UnicodeString target; // not null member in class:TransliteratorIDParser::Specs
221 * @param target the given target.
226 * @return an array of 4 strings: source, target, variant, and
229 * isSourcePresent will be non-null. The target may be empty if the
234 UnicodeString& target,
239 * Given source, target, and variant strings, concatenate them into a
244 const UnicodeString& target,
    [all...]
  /external/skia/src/animator/
SkHitClear.cpp 32 SkDisplayable* target = targets[tIndex]; local
33 target->clearBounder();
  /cts/tests/src/android/provider/cts/
FileCopyHelper.java 61 OutputStream target = null; local
65 target = mContext.openFileOutput(fileName, Context.MODE_WORLD_READABLE);
69 target.write(buffer, 0, len);
78 if (target != null) {
79 target.close();
  /external/guava/src/com/google/common/io/
AppendableWriter.java 25 * Writer that places all output on an {@link Appendable} target. If the target
27 * be delegated to the target.
34 private final Appendable target; field in class:AppendableWriter
38 * Creates a new writer that appends everything it writes to {@code target}.
40 * @param target target to which to append output
42 AppendableWriter(Appendable target) {
43 this.target = target;
    [all...]
  /bionic/libc/stdio/
fseek.c 52 fpos_t target, curoff; local
140 target = offset;
144 target = st.st_size + offset;
178 * If the target offset is within the current buffer,
184 target >= curoff && target < (fpos_t)(curoff + n)) {
185 int o = target - curoff;
203 curoff = target & ~(fp->_blksize - 1);
211 n = target - curoff;
  /dalvik/libcore/logging/src/main/java/java/util/logging/
MemoryHandler.java 33 * Every {@code MemoryHandler} has a target handler, and push action can be
34 * triggered so that all buffered records will be output to the target handler
55 * <li>java.util.logging.MemoryHandler.target specifies the class of the target
65 // target handler
66 private Handler target; field in class:MemoryHandler
94 // init target
95 final String targetName = manager.getProperty(className + ".target"); //$NON-NLS-1$
108 target = (Handler) targetClass.newInstance();
110 // logging.10=Cannot load target handler:{0
    [all...]
  /dalvik/libcore/luni/src/main/java/java/lang/reflect/
InvocationTargetException.java 31 private Throwable target; field in class:InvocationTargetException
35 * {@code null} cause / target exception.
43 * cause / target exception filled in.
51 target = exception;
56 * cause / target exception and message filled in.
66 target = exception;
70 * Returns the target exception, which may be {@code null}.
72 * @return the target exception
75 return target;
85 return target;
    [all...]
  /external/icu4c/i18n/unicode/
bmsearch.h 30 class Target;
41 * string and the target string. Then you call the <code>search</code> method. Here's a code sample:
44 * void boyerMooreExample(UCollator *collator, UnicodeString *pattern, UnicodeString *target)
54 * BoyerMooreSearch *search = new BoyerMooreSearch(collData, *patternString, target, status);
144 * Search for the pattern string in the target string.
146 * @param offset - the offset in the target string at which to begin the search
157 * Set the target string for the match.
159 * @param targetString - the new target string
218 Target *target; member in class:BoyerMooreSearch
    [all...]
  /external/srec/srec/include/
channorm.h 39 int target[MAX_CHAN_DIM]; /* Values located in the .TMN file */ member in struct:__anon5854
  /external/v8/src/
ic-inl.h 67 // Get the target address of the IC.
68 Address target = Assembler::target_address_at(address); local
69 // Convert target address to the code object. Code::GetCodeFromTargetAddress
71 Code* result = Code::GetCodeFromTargetAddress(target);
77 void IC::SetTargetAtAddress(Address address, Code* target) {
78 ASSERT(target->is_inline_cache_stub());
79 Assembler::set_target_address_at(address, target->instruction_start());
  /external/webkit/WebCore/html/
HTMLBaseElement.h 38 virtual String target() const { return m_target; } function in class:WebCore::HTMLBaseElement
  /external/webkit/WebCore/svg/
SVGMPathElement.cpp 66 Element* target = document()->getElementById(getTarget(href())); local
67 if (target && target->hasTagName(SVGNames::pathTag))
68 return static_cast<SVGPathElement*>(target);
  /cts/tests/tests/jni/src/android/jni/cts/
JniInstanceTest.java 28 private InstanceNonce target; field in class:JniInstanceTest
32 target = new InstanceNonce();
39 target.nop();
46 assertEquals(false, target.returnBoolean());
53 assertEquals(123, target.returnByte());
60 assertEquals(-12345, target.returnShort());
67 assertEquals(34567, target.returnChar());
74 assertEquals(12345678, target.returnInt());
81 assertEquals(-1098765432109876543L, target.returnLong());
88 assertEquals(-98765.4321F, target.returnFloat())
    [all...]
  /dalvik/libcore/sql/src/test/java/tests/sql/
ResultSetTest.java 39 ResultSet target = null; field in class:ResultSetTest
59 target = stForward.getResultSet();
60 assertNotNull(target);
80 target.close();
99 assertTrue(target.isBeforeFirst());
100 assertFalse(target.absolute(0));
101 assertTrue(target.absolute(1));
102 assertTrue(target.isFirst());
103 assertTrue(target.absolute(-1));
104 assertTrue(target.isLast())
    [all...]
  /bionic/libc/regex/
regerror.c 83 int target = errcode &~ REG_ITOA; local
91 if (r->code == target)
100 "REG_0x%x", target);
  /dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/util/
BinarySearch.java 37 char target = data.charAt(mid); local
38 if (value == target)
40 else if (value < target)
  /dalvik/libcore/luni/src/test/java/java/text/
NormalizerTest.java 52 String target; local
54 target = new String(new char[] {0x03D3, 0x03D4, 0x1E9B});
55 assertTrue(Normalizer.isNormalized(target, Normalizer.Form.NFC));
56 assertFalse(Normalizer.isNormalized(target, Normalizer.Form.NFD));
57 assertFalse(Normalizer.isNormalized(target, Normalizer.Form.NFKC));
58 assertFalse(Normalizer.isNormalized(target, Normalizer.Form.NFKD));
60 target = new String(new char[] {0x03D2, 0x0301, 0x03D2, 0x0308, 0x017F, 0x0307});
61 assertFalse(Normalizer.isNormalized(target, Normalizer.Form.NFC));
62 assertTrue(Normalizer.isNormalized(target, Normalizer.Form.NFD));
63 assertFalse(Normalizer.isNormalized(target, Normalizer.Form.NFKC))
    [all...]
  /dalvik/libcore/xml/src/main/java/org/apache/harmony/xml/dom/
ProcessingInstructionImpl.java 36 private String target; field in class:ProcessingInstructionImpl
40 ProcessingInstructionImpl(DocumentImpl document, String target, String data) {
42 this.target = target; // TODO: validate that target is well-formed
52 return target;
66 return target;
  /external/astl/tests/
Android.mk 29 # generate the right make target (host vs device). $(5) is used in the
59 define target-test
  /external/gtest/test/
Android.mk 40 # before the test-target call).
54 # generate the right make target (host vs device). $(4) is used in the
88 define target-test
117 $(call target-test, $(sources))
  /external/icu4c/common/
ustr_cnv.c 110 UChar *target = ucs1; local
116 &target,
128 if(target < (ucs1+n)) { /* U_BUFFER_OVERFLOW_ERROR isn't an err, just means no termination will happen. */
129 *target = 0; /* terminate */
182 char *target = s1; local
188 &target,
200 if(target < (s1+n)) { /* U_BUFFER_OVERFLOW_ERROR isn't an err, just means no termination will happen. */
201 *target = 0; /* terminate */
  /external/icu4c/samples/datefmt/
util.cpp 20 // Append a hex string to the target
23 UnicodeString& target) {
26 target += DIGIT_STRING[(number >> ((--digits) * 4)) & 0xF];
28 return target;
34 UnicodeString target; local
35 target += "\"";
39 target += "\\u";
40 appendHex(ch, 4, target);
42 target += ch;
45 target += "\""
    [all...]
  /external/icu4c/samples/msgfmt/
util.cpp 20 // Append a hex string to the target
23 UnicodeString& target) {
26 target += DIGIT_STRING[(number >> ((--digits) * 4)) & 0xF];
28 return target;
34 UnicodeString target; local
35 target += "\"";
39 target += "\\u";
40 appendHex(ch, 4, target);
42 target += ch;
45 target += "\""
    [all...]

Completed in 521 milliseconds

1 2 3 4 5 6 7 8 91011>>