Home
last modified time | relevance | path

Searched refs:insertion (Results 1 – 25 of 143) sorted by relevance

123456

/external/icu/icu4c/source/layout/
DLEInsertionList.cpp60 …InsertionRecord *insertion = (InsertionRecord *) LE_NEW_ARRAY(char, sizeof(InsertionRecord) + (cou… in insert() local
61 if (insertion == NULL) { in insert()
66 insertion->position = position; in insert()
67 insertion->count = count; in insert()
73 insertion->next = NULL; in insert()
74 tail->next = insertion; in insert()
75 tail = insertion; in insert()
78 insertion->next = head; in insert()
79 head = insertion; in insert()
82 return insertion->glyphs; in insert()
/external/llvm/test/CodeGen/SystemZ/
Dvec-move-09.ll1 ; Test vector insertion of constants.
5 ; Test v16i8 insertion into the first element.
14 ; Test v16i8 insertion into the last element.
23 ; Test v16i8 insertion with the maximum signed value.
32 ; Test v16i8 insertion with the minimum signed value.
41 ; Test v16i8 insertion with the maximum unsigned value.
50 ; Test v16i8 insertion into a variable element.
59 ; Test v8i16 insertion into the first element.
68 ; Test v8i16 insertion into the last element.
77 ; Test v8i16 insertion with the maximum signed value.
[all …]
Dvec-move-04.ll1 ; Test vector insertion of register variables.
5 ; Test v16i8 insertion into the first element.
14 ; Test v16i8 insertion into the last element.
23 ; Test v16i8 insertion into a variable element.
32 ; Test v8i16 insertion into the first element.
41 ; Test v8i16 insertion into the last element.
50 ; Test v8i16 insertion into a variable element.
59 ; Test v4i32 insertion into the first element.
68 ; Test v4i32 insertion into the last element.
77 ; Test v4i32 insertion into a variable element.
[all …]
Dvec-move-11.ll5 ; Test v16i8 insertion into an undef, with an arbitrary index.
14 ; Test v16i8 insertion into an undef, with the first good index for VLVGP.
23 ; Test v16i8 insertion into an undef, with the second good index for VLVGP.
32 ; Test v8i16 insertion into an undef, with an arbitrary index.
41 ; Test v8i16 insertion into an undef, with the first good index for VLVGP.
50 ; Test v8i16 insertion into an undef, with the second good index for VLVGP.
59 ; Test v4i32 insertion into an undef, with an arbitrary index.
68 ; Test v4i32 insertion into an undef, with the first good index for VLVGP.
77 ; Test v4i32 insertion into an undef, with the second good index for VLVGP.
86 ; Test v2i64 insertion into an undef.
[all …]
Dvec-move-12.ll5 ; Test v16i8 insertion into an undef, with an arbitrary index.
15 ; Test v16i8 insertion into an undef, with the first good index for VLVGP.
25 ; Test v16i8 insertion into an undef, with the second good index for VLVGP.
35 ; Test v8i16 insertion into an undef, with an arbitrary index.
45 ; Test v8i16 insertion into an undef, with the first good index for VLVGP.
55 ; Test v8i16 insertion into an undef, with the second good index for VLVGP.
65 ; Test v4i32 insertion into an undef, with an arbitrary index.
75 ; Test v4i32 insertion into an undef, with the first good index for VLVGP.
85 ; Test v4i32 insertion into an undef, with the second good index for VLVGP.
95 ; Test v2i64 insertion into an undef.
[all …]
Dvec-move-08.ll1 ; Test vector insertion of memory values.
5 ; Test v16i8 insertion into the first element.
15 ; Test v16i8 insertion into the last element.
25 ; Test v16i8 insertion with the highest in-range offset.
36 ; Test v16i8 insertion with the first ouf-of-range offset.
48 ; Test v16i8 insertion into a variable element.
58 ; Test v8i16 insertion into the first element.
68 ; Test v8i16 insertion into the last element.
78 ; Test v8i16 insertion with the highest in-range offset.
89 ; Test v8i16 insertion with the first ouf-of-range offset.
[all …]
Dvec-move-13.ll5 ; Test v16i8 insertion into 0.
17 ; Test v8i16 insertion into 0.
29 ; Test v4i32 insertion into 0.
39 ; Test v2i64 insertion into 0.
49 ; Test v4f32 insertion into 0.
60 ; Test v2f64 insertion into 0.
/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
DBreakTransliterator.java22 private String insertion; field in BreakTransliterator
26 … public BreakTransliterator(String ID, UnicodeFilter filter, BreakIterator bi, String insertion) { in BreakTransliterator() argument
29 this.insertion = insertion; in BreakTransliterator()
39 return insertion; in getInsertion()
45 public void setInsertion(String insertion) { in setInsertion() argument
46 this.insertion = insertion; in setInsertion()
118 delta = boundaryCount * insertion.length(); in handleTransliterate()
125 text.replace(boundary, boundary, insertion); in handleTransliterate()
400 targetSet.addAll(insertion); in addSourceTargetSet()
DTransliterator.java606 String insertion) { in transliterate() argument
610 if (insertion != null) { in transliterate()
611 text.replace(index.limit, index.limit, insertion); in transliterate()
612 index.limit += insertion.length(); in transliterate()
613 index.contextLimit += insertion.length(); in transliterate()
652 int insertion) { in transliterate() argument
653 transliterate(text, index, UTF16.valueOf(insertion)); in transliterate()
/external/icu/android_icu4j/src/main/java/android/icu/text/
DBreakTransliterator.java23 private String insertion; field in BreakTransliterator
27 … public BreakTransliterator(String ID, UnicodeFilter filter, BreakIterator bi, String insertion) { in BreakTransliterator() argument
30 this.insertion = insertion; in BreakTransliterator()
40 return insertion; in getInsertion()
46 public void setInsertion(String insertion) { in setInsertion() argument
47 this.insertion = insertion; in setInsertion()
119 delta = boundaryCount * insertion.length(); in handleTransliterate()
126 text.replace(boundary, boundary, insertion); in handleTransliterate()
401 targetSet.addAll(insertion); in addSourceTargetSet()
DTransliterator.java587 String insertion) { in transliterate() argument
591 if (insertion != null) { in transliterate()
592 text.replace(index.limit, index.limit, insertion); in transliterate()
593 index.limit += insertion.length(); in transliterate()
594 index.contextLimit += insertion.length(); in transliterate()
632 int insertion) { in transliterate() argument
633 transliterate(text, index, UTF16.valueOf(insertion)); in transliterate()
/external/owasp/sanitizer/lib/htmlparser-1.3/doc/
Dtree-construction.txt26 corresponding to the current insertion mode.
140 3. Let the original insertion mode be the current insertion mode.
141 4. Then, switch the insertion mode to "in CDATA/RCDATA".
182 8.2.5.4 The "initial" insertion mode
184 When the insertion mode is "initial", tokens must be handled as
356 Then, switch the insertion mode to "before html".
363 Switch the insertion mode to "before html", then reprocess the
366 8.2.5.5 The "before html" insertion mode
368 When the insertion mode is "before html", tokens must be handled as
395 Switch the insertion mode to "before head".
[all …]
/external/libchrome/base/
Dcommand_line.cc333 auto insertion = in AppendSwitchNative() local
335 if (!insertion.second) in AppendSwitchNative()
336 insertion.first->second = value; in AppendSwitchNative()
337 switches_by_stringpiece_[insertion.first->first] = &(insertion.first->second); in AppendSwitchNative()
/external/srtp/googlepatches/
Dgoogle-11-srtp-replay-fix.patch41 * test sequential insertion
43 printf("\ttesting sequential insertion...");
61 printf("\ttesting non-sequential insertion...");
/external/protobuf/src/google/protobuf/compiler/
Dplugin.proto105 // content here is to be inserted into that file at a defined insertion
108 // insertion points by placing special annotations in the file that look
115 // immediately above the line containing the insertion point (thus multiple
118 // could contain things that look like insertion points by accident.
128 // Note that if the line containing the insertion point begins with
131 // indentation matters. In these languages, the insertion point comment
/external/nanopb-c/generator/proto/
Dplugin.proto103 // content here is to be inserted into that file at a defined insertion
106 // insertion points by placing special annotations in the file that look
113 // immediately above the line containing the insertion point (thus multiple
116 // could contain things that look like insertion points by accident.
126 // Note that if the line containing the insertion point begins with
129 // indentation matters. In these languages, the insertion point comment
/external/icu/icu4c/source/i18n/
Dbrktrans.cpp167 void BreakTransliterator::setInsertion(const UnicodeString &insertion) { in setInsertion() argument
168 this->fInsertion = insertion; in setInsertion()
Dtranslit.cpp280 const UnicodeString& insertion, in transliterate() argument
282 _transliterate(text, index, &insertion, status); in transliterate()
302 UChar32 insertion, in transliterate() argument
304 UnicodeString str(insertion); in transliterate()
353 const UnicodeString* insertion, in _transliterate() argument
365 if (insertion != 0) { in _transliterate()
366 text.handleReplaceBetween(index.limit, index.limit, *insertion); in _transliterate()
367 index.limit += insertion->length(); in _transliterate()
368 index.contextLimit += insertion->length(); in _transliterate()
Dbrktrans.h59 virtual void setInsertion(const UnicodeString &insertion);
/external/guava/guava-tests/test/com/google/common/hash/
DAbstractStreamingHasherTest.java160 for (int insertion = 0; insertion < totalInsertions; insertion++) { in testExhaustive()
/external/icu/icu4c/source/i18n/unicode/
Dtranslit.h470 const UnicodeString& insertion,
489 UChar32 insertion,
541 const UnicodeString* insertion,
/external/llvm/test/Transforms/LICM/
D2003-02-27-PreheaderExitNodeUpdate.ll1 ; This testcase fails because preheader insertion is not updating exit node
/external/autotest/client/deps/webgl_perf/files/
D0002-Always-increment-numberOfResults.patch9 1 file changed, 1 insertion(+), 1 deletion(-)
/external/pdfium/third_party/freetype/src/base/
Dftrfork.c384 const char *insertion );
809 const char *insertion ) in raccess_make_file_name() argument
820 new_length = ft_strlen( original_name ) + ft_strlen( insertion ); in raccess_make_file_name()
839 ft_strcat( new_name, insertion ); in raccess_make_file_name()
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/base/
Dftrfork.c384 const char *insertion );
809 const char *insertion ) in raccess_make_file_name() argument
820 new_length = ft_strlen( original_name ) + ft_strlen( insertion ); in raccess_make_file_name()
839 ft_strcat( new_name, insertion ); in raccess_make_file_name()

123456