HomeSort by relevance Sort by last modified time
    Searched refs:insertion (Results 1 - 25 of 78) sorted by null

1 2 3 4

  /external/icu4c/layout/
LEInsertionList.cpp 60 InsertionRecord *insertion = (InsertionRecord *) LE_NEW_ARRAY(char, sizeof(InsertionRecord) + (count - ANY_NUMBER) * sizeof (LEGlyphID)); local
61 if (insertion == NULL) {
66 insertion->position = position;
67 insertion->count = count;
73 insertion->next = NULL;
74 tail->next = insertion;
75 tail = insertion;
78 insertion->next = head;
79 head = insertion;
82 return insertion->glyphs
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
brktrans.h 36 const UnicodeString &insertion);
61 virtual void setInsertion(const UnicodeString &insertion);
brktrans.cpp 149 void BreakTransliterator::setInsertion(const UnicodeString &insertion) {
150 this->fInsertion = insertion;
translit.cpp 220 * <code>insertion</code> will be inserted into <code>text</code>
222 * <code>index.contextLimit</code> by <code>insertion.length()</code>.
260 * <code>insertion</code> is inserted at
269 * @param insertion text to be inserted and possibly
282 const UnicodeString& insertion,
284 _transliterate(text, index, &insertion, status);
297 * @param insertion text to be inserted and possibly
304 UChar32 insertion,
306 UnicodeString str(insertion);
348 * 'insertion' is non-null then we append it to 'text' befor
    [all...]
  /external/chromium_org/webkit/data/test_shell/sort/
sort-insertion.js 0 // insertion sort
  /external/icu4c/i18n/
brktrans.h 36 const UnicodeString &insertion);
61 virtual void setInsertion(const UnicodeString &insertion);
brktrans.cpp 149 void BreakTransliterator::setInsertion(const UnicodeString &insertion) {
150 this->fInsertion = insertion;
translit.cpp 218 * <code>insertion</code> will be inserted into <code>text</code>
220 * <code>index.contextLimit</code> by <code>insertion.length()</code>.
258 * <code>insertion</code> is inserted at
267 * @param insertion text to be inserted and possibly
280 const UnicodeString& insertion,
282 _transliterate(text, index, &insertion, status);
295 * @param insertion text to be inserted and possibly
302 UChar32 insertion,
304 UnicodeString str(insertion);
346 * 'insertion' is non-null then we append it to 'text' befor
    [all...]
  /frameworks/base/core/java/android/net/nsd/
DnsSdTxtRecord.java 171 int insertion = 0; local
174 for (int i = 0; i < index && insertion < mData.length; i++) {
175 insertion += (0xFF & (mData[insertion] + 1));
182 System.arraycopy(oldBytes, 0, mData, 0, insertion);
183 int secondHalfLen = oldBytes.length - insertion;
184 System.arraycopy(oldBytes, insertion, mData, newLen - secondHalfLen, secondHalfLen);
185 mData[insertion] = (byte) avLen;
186 System.arraycopy(keyBytes, 0, mData, insertion + 1, keyBytes.length);
188 mData[insertion + 1 + keyBytes.length] = mSeperator
    [all...]
  /external/llvm/test/MC/X86/AlignedBundling/
single-inst-bundling.s 4 # Test simple NOP insertion for single instructions.
  /external/chromium_org/third_party/icu/source/i18n/unicode/
translit.h 118 * maintaining a cursor position (independent of the insertion point,
121 * be coincident with the insertion point, but in a case like the one
122 * above, it will precede the insertion point.
407 * <code>insertion</code> will be inserted into <code>text</code>
409 * <code>index.limit</code> by <code>insertion.length()</code>.
447 * <code>insertion</code> is inserted at
456 * @param insertion text to be inserted and possibly
468 const UnicodeString& insertion,
479 * @param insertion text to be inserted and possibly
487 UChar32 insertion,
    [all...]
  /external/guava/guava-tests/test/com/google/common/hash/
AbstractStreamingHasherTest.java 135 for (int insertion = 0; insertion < totalInsertions; insertion++) {
  /external/icu4c/i18n/unicode/
translit.h 118 * maintaining a cursor position (independent of the insertion point,
121 * be coincident with the insertion point, but in a case like the one
122 * above, it will precede the insertion point.
409 * <code>insertion</code> will be inserted into <code>text</code>
411 * <code>index.limit</code> by <code>insertion.length()</code>.
449 * <code>insertion</code> is inserted at
458 * @param insertion text to be inserted and possibly
470 const UnicodeString& insertion,
481 * @param insertion text to be inserted and possibly
489 UChar32 insertion,
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorDOMDebuggerAgent.h 109 void descriptionForDOMEvent(Node* target, int breakpointType, bool insertion, JSONObject* description);
InspectorDOMDebuggerAgent.cpp 327 void InspectorDOMDebuggerAgent::descriptionForDOMEvent(Node* target, int breakpointType, bool insertion, JSONObject* description)
339 if (!insertion)
350 description->setBoolean("insertion", insertion);
  /external/chromium_org/v8/test/mjsunit/
enumeration-order.js 62 // named properties in insertion order, followed by indexed properties
64 // properties of the prototype object in insertion order, and so on.
  /external/v8/test/mjsunit/
enumeration-order.js 62 // named properties in insertion order, followed by indexed properties
64 // properties of the prototype object in insertion order, and so on.
  /external/chromium_org/third_party/freetype/src/base/
ftrfork.c 349 const char *insertion );
802 const char *insertion )
813 new_length = ft_strlen( original_name ) + ft_strlen( insertion );
830 ft_strcat( new_name, insertion );
  /external/freetype/src/base/
ftrfork.c 355 const char *insertion );
780 const char *insertion )
791 new_length = ft_strlen( original_name ) + ft_strlen( insertion );
808 ft_strcat( new_name, insertion );
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
codegen.ml 84 (* Create a new basic block to start insertion into. *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
codegen.ml 84 (* Create a new basic block to start insertion into. *)
  /external/v8/test/mjsunit/harmony/
module-parsing.js 30 // Test basic module syntax, with and without automatic semicolon insertion.
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
statetracker.py 351 insertion = distance[i+1][j] + 1
356 if deletion <= insertion and deletion <= substitution:
362 elif insertion <= substitution:
363 # Insertion is best.
364 best = insertion
  /external/chromium_org/third_party/closure_linter/closure_linter/
statetracker.py 351 insertion = distance[i+1][j] + 1
356 if deletion <= insertion and deletion <= substitution:
362 elif insertion <= substitution:
363 # Insertion is best.
364 best = insertion
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
codegen.ml 113 (* Start insertion in loop_bb. *)
206 (* Create a new basic block to start insertion into. *)

Completed in 1941 milliseconds

1 2 3 4