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

  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
CursorAdapterTest.java 42 String[] inserts = { local
50 for (String insert : inserts) {
SQLiteCursorTest.java 328 String[] inserts = { local
334 for (String insert : inserts) {
  /external/jdiff/src/jdiff/
Diff.java 127 int inserts = hunk.inserted; local
129 if (deletes == 1 && inserts == 1) {
137 if (deletes == 1 && inserts == 1 &&
183 int inserts = hunk.inserted; local
184 if (deletes == 0 && inserts == 0) {
194 // Index of last inserted word, invalid if inserts == 0
199 System.out.println("inserts: " + inserts);
238 if (inserts != 0) {
    [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
TokenRewriteStream.as 258 // should be included (they will be inserts).
269 * overlapping replaces that are not completed nested). Inserts to
296 * Then we can deal with inserts:
298 * 1. for any inserts to same index, combine even if not adjacent.
322 // Wipe prior inserts within range
323 var inserts:Array = getKindOfOps(rewrites, InsertBeforeOp, i);
324 for (var j:int = 0; j < inserts.length; j++) {
325 var iop:InsertBeforeOp = InsertBeforeOp(inserts[j]);
350 // WALK INSERTS
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
argparse.py 385 inserts = {}
397 if start in inserts:
398 inserts[start] += ' ['
400 inserts[start] = '['
401 inserts[end] = ']'
403 if start in inserts:
404 inserts[start] += ' ('
406 inserts[start] = '('
407 inserts[end] = ')'
409 inserts[i] = '|
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
argparse.py 385 inserts = {}
397 if start in inserts:
398 inserts[start] += ' ['
400 inserts[start] = '['
401 inserts[end] = ']'
403 if start in inserts:
404 inserts[start] += ' ('
406 inserts[start] = '('
407 inserts[end] = ')'
409 inserts[i] = '|
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
TokenRewriteStream.cs 436 // should be included (they will be inserts).
446 * overlapping replaces that are not completed nested). Inserts to
473 * Then we can deal with inserts:
475 * 1. for any inserts to same index, combine even if not adjacent.
501 // Wipe prior inserts within range
502 var inserts = GetKindOfOps(rewrites, typeof(InsertBeforeOp), i);
503 for (int j = 0; j < inserts.Count; j++) {
504 InsertBeforeOp iop = (InsertBeforeOp)inserts[j];
531 // WALK INSERTS
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
TokenRewriteStream.cs 506 // should be included (they will be inserts).
517 * overlapping replaces that are not completed nested). Inserts to
548 * Then we can deal with inserts:
550 * 1. for any inserts to same index, combine even if not adjacent.
578 // Wipe prior inserts within range
579 var inserts = GetKindOfOps( rewrites, typeof( InsertBeforeOp ), i );
580 for ( int j = 0; j < inserts.Count; j++ )
582 InsertBeforeOp iop = (InsertBeforeOp)inserts[j];
630 // WALK INSERTS
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
TokenRewriteStream.java 397 // should be included (they will be inserts).
408 * overlapping replaces that are not completed nested). Inserts to
439 * Then we can deal with inserts:
441 * 1. for any inserts to same index, combine even if not adjacent.
465 // Wipe prior inserts within range
466 List inserts = getKindOfOps(rewrites, InsertBeforeOp.class, i); local
467 for (int j = 0; j < inserts.size(); j++) {
468 InsertBeforeOp iop = (InsertBeforeOp) inserts.get(j);
510 // WALK INSERTS
  /external/libvorbis/doc/
Vorbis_I_spec.tex 79 % Useful helper macro that inserts TODO comments very visibly into the generated
  /external/guava/guava/lib/
jdiff.jar 
  /external/chromium_org/chrome/browser/resources/chromeos/braille_ime/
braille_ime.js 35 * and inserts {@code newText}. {@code contextID} identifies the text field
  /external/chromium_org/chrome/third_party/chromevox/third_party/closure-library/closure/goog/object/
object.js 67 * For every element in an object/map/hash calls a function and inserts the
  /external/llvm/bindings/ocaml/llvm/
llvm.mli     [all...]
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.pas     [all...]
  /external/bison/build-aux/
texinfo.tex 814 % @| inserts a changebar to the left of the current line. It should
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/build-aux/
texinfo.tex 204 % @| inserts a changebar to the left of the current line. It should
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/pydoc_data/
topics.py 4 'atom-identifiers': '\nIdentifiers (Names)\n*******************\n\nAn identifier occurring as an atom is a name. See section\n*Identifiers and keywords* for lexical definition and section *Naming\nand binding* for documentation of naming and binding.\n\nWhen the name is bound to an object, evaluation of the atom yields\nthat object. When a name is not bound, an attempt to evaluate it\nraises a ``NameError`` exception.\n\n**Private name mangling:** When an identifier that textually occurs in\na class definition begins with two or more underscore characters and\ndoes not end in two or more underscores, it is considered a *private\nname* of that class. Private names are transformed to a longer form\nbefore code is generated for them. The transformation inserts the\nclass name, with leading underscores removed and a single underscore\ninserted, in front of the name. For example, the identifier\n``__spam`` occurring in a class named ``Ham`` will be transformed to\n``_Ham__spam``. This transformation is independent of the syntactical\ncontext in which the identifier is used. If the transformed name is\nextremely long (longer than 255 characters), implementation defined\ntruncation may happen. If the class name consists only of underscores,\nno transformation is done.\n',
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/pydoc_data/
topics.py 4 'atom-identifiers': '\nIdentifiers (Names)\n*******************\n\nAn identifier occurring as an atom is a name. See section\n*Identifiers and keywords* for lexical definition and section *Naming\nand binding* for documentation of naming and binding.\n\nWhen the name is bound to an object, evaluation of the atom yields\nthat object. When a name is not bound, an attempt to evaluate it\nraises a ``NameError`` exception.\n\n**Private name mangling:** When an identifier that textually occurs in\na class definition begins with two or more underscore characters and\ndoes not end in two or more underscores, it is considered a *private\nname* of that class. Private names are transformed to a longer form\nbefore code is generated for them. The transformation inserts the\nclass name, with leading underscores removed and a single underscore\ninserted, in front of the name. For example, the identifier\n``__spam`` occurring in a class named ``Ham`` will be transformed to\n``_Ham__spam``. This transformation is independent of the syntactical\ncontext in which the identifier is used. If the transformed name is\nextremely long (longer than 255 characters), implementation defined\ntruncation may happen. If the class name consists only of underscores,\nno transformation is done.\n',
    [all...]
  /prebuilts/sdk/tools/lib/
lombok-ast-0.2.jar 
  /prebuilts/tools/common/lombok-ast/
lombok-ast-0.2.1.jar 
lombok-ast-0.2.jar 
  /prebuilts/tools/common/m2/repository/com/android/tools/external/lombok/lombok-ast/0.2.1/
lombok-ast-0.2.1.jar 
  /external/antlr/antlr-3.4/lib/
antlr-3.4-complete.jar 
  /prebuilts/misc/common/antlr/
antlr-3.4-complete.jar 

Completed in 429 milliseconds