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

1 2

  /external/llvm/unittests/ADT/
TwineTest.cpp 18 std::string repr(const Twine &Value) { function in namespace:__anon18234
52 // Check verse repr, since we care about the actual representation not just
57 repr(Twine("hi").concat(Twine::createNull())));
59 repr(Twine::createNull().concat(Twine("hi"))));
63 repr(Twine("hi").concat(Twine())));
65 repr(Twine().concat(Twine("hi"))));
67 repr(Twine().concat(Twine(SmallString<5>("hi")))));
69 repr(Twine(SmallString<7>("hey")).concat(Twine("there"))));
73 repr(Twine("a").concat(Twine("b"))));
77 repr(Twine("a").concat(Twine("b")).concat(Twine("c"))))
    [all...]
  /external/snakeyaml/src/test/java/examples/staticstate/
StaticFieldsWrapperTest.java 62 Representer repr = new Representer(); local
63 repr.addClassTag(Wrapper.class, new Tag("!mybean"));
64 Yaml yaml = new Yaml(repr);
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue60/
CustomOrderTest.java 38 Representer repr = new Representer(); local
39 repr.setPropertyUtils(new ReversedPropertyUtils());
40 Yaml yaml = new Yaml(repr);
57 Representer repr = new Representer(); local
58 repr.setPropertyUtils(new UnsortedPropertyUtils());
59 Yaml yaml = new Yaml(repr);
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/javabeans/
LongTest.java 55 Representer repr = new Representer(); local
56 repr.addClassTag(Long.class, new Tag("!!java.lang.Long"));
57 Yaml yaml = new Yaml(repr, options);
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/ruby/
RubyTest.java 60 Representer repr = new Representer(); local
61 repr.addClassTag(TestObject.class, new Tag("!ruby/object:Test::Module::Object"));
62 repr.addClassTag(Sub1.class, new Tag("!ruby/object:Test::Module::Sub1"));
63 repr.addClassTag(Sub2.class, new Tag("!ruby/object:Test::Module::Sub2"));
64 Yaml yaml2 = new Yaml(repr, options);
84 Representer repr = new Representer(); local
85 repr.addClassTag(Sub1.class, new Tag("!ruby/object:Test::Module::Sub1"));
86 repr.addClassTag(Sub2.class, new Tag("!ruby/object:Test::Module::Sub2"));
87 Yaml yaml2 = new Yaml(repr, options);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/genetics/
RandomKeyMutation.java 48 List<Double> repr = originalRk.getRepresentation(); local
49 int rInd = GeneticAlgorithm.getRandomGenerator().nextInt(repr.size());
51 List<Double> newRepr = new ArrayList<Double> (repr);
RandomKey.java 131 // now find the indices in the original repr and use them for permuting
193 List<Double> repr = new ArrayList<Double>(l); local
195 repr.add(GeneticAlgorithm.getRandomGenerator().nextDouble());
197 return repr;
209 List<Double> repr = new ArrayList<Double>(l); local
211 repr.add((double)i/l);
213 return repr;
  /system/netd/server/
Network.cpp 57 std::stringstream repr; local
59 repr << mNetId;
61 repr << kSeparator;
64 repr << "DUMMY";
67 repr << "LOCAL";
70 repr << "PHYSICAL";
73 repr << "VIRTUAL";
76 repr << "unknown";
80 repr << kSeparator << android::base::Join(mInterfaces, ",");
83 return repr.str()
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
repr.py 1 """Redo the builtin repr() (representation) but with limits on most sizes."""
3 __all__ = ["Repr","repr"]
8 class Repr:
23 def repr(self, x): member in class:Repr
34 s = __builtin__.repr(x)
92 s = __builtin__.repr(x[:self.maxstring])
96 s = __builtin__.repr(x[:i] + x[len(x)-j:])
101 s = __builtin__.repr(x) # XXX Hope this isn't too slow...
110 s = __builtin__.repr(x
132 repr = aRepr.repr variable
    [all...]
copy.py 410 import repr namespace
411 print map(repr.repr, l)
412 print map(repr.repr, l1)
413 print map(repr.repr, l2)
414 print map(repr.repr, l3)
416 import repr namespace
    [all...]
bdb.py 62 print 'bdb.Bdb.dispatch: unknown debugging event:', repr(event)
362 import linecache, repr namespace
375 s = s + repr.repr(args)
381 s = s + repr.repr(rv)
  /prebuilts/gdb/linux-x86/lib/python2.7/
repr.py 1 """Redo the builtin repr() (representation) but with limits on most sizes."""
3 __all__ = ["Repr","repr"]
8 class Repr:
23 def repr(self, x): member in class:Repr
34 s = __builtin__.repr(x)
92 s = __builtin__.repr(x[:self.maxstring])
96 s = __builtin__.repr(x[:i] + x[len(x)-j:])
101 s = __builtin__.repr(x) # XXX Hope this isn't too slow...
110 s = __builtin__.repr(x
132 repr = aRepr.repr variable
    [all...]
copy.py 410 import repr namespace
411 print map(repr.repr, l)
412 print map(repr.repr, l1)
413 print map(repr.repr, l2)
414 print map(repr.repr, l3)
416 import repr namespace
    [all...]
bdb.py 62 print 'bdb.Bdb.dispatch: unknown debugging event:', repr(event)
362 import linecache, repr namespace
375 s = s + repr.repr(args)
381 s = s + repr.repr(rv)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
repr.py 1 """Redo the builtin repr() (representation) but with limits on most sizes."""
3 __all__ = ["Repr","repr"]
8 class Repr:
23 def repr(self, x): member in class:Repr
34 s = __builtin__.repr(x)
92 s = __builtin__.repr(x[:self.maxstring])
96 s = __builtin__.repr(x[:i] + x[len(x)-j:])
101 s = __builtin__.repr(x) # XXX Hope this isn't too slow...
110 s = __builtin__.repr(x
132 repr = aRepr.repr variable
    [all...]
copy.py 410 import repr namespace
411 print map(repr.repr, l)
412 print map(repr.repr, l1)
413 print map(repr.repr, l2)
414 print map(repr.repr, l3)
416 import repr namespace
    [all...]
bdb.py 62 print 'bdb.Bdb.dispatch: unknown debugging event:', repr(event)
362 import linecache, repr namespace
375 s = s + repr.repr(args)
381 s = s + repr.repr(rv)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
repr.py 1 """Redo the builtin repr() (representation) but with limits on most sizes."""
3 __all__ = ["Repr","repr"]
8 class Repr:
23 def repr(self, x): member in class:Repr
34 s = __builtin__.repr(x)
92 s = __builtin__.repr(x[:self.maxstring])
96 s = __builtin__.repr(x[:i] + x[len(x)-j:])
101 s = __builtin__.repr(x) # XXX Hope this isn't too slow...
110 s = __builtin__.repr(x
132 repr = aRepr.repr variable
    [all...]
copy.py 410 import repr namespace
411 print map(repr.repr, l)
412 print map(repr.repr, l1)
413 print map(repr.repr, l2)
414 print map(repr.repr, l3)
416 import repr namespace
    [all...]
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue67/
NonAsciiCharsInClassNameTest.java 88 Representer repr = new Representer(); local
89 repr.addClassTag(Académico.class, new Tag("!foo"));
90 Yaml yaml = new Yaml(repr);
99 Representer repr = new Representer(); local
100 repr.addClassTag(Académico.class, new Tag("!Académico"));
101 Yaml yaml = new Yaml(repr);
  /art/tools/dexfuzz/src/dexfuzz/rawdex/
Instruction.java 211 String repr = info.name; local
247 repr += "(" + vregs + ")";
250 repr += " meth@" + poolIndex;
252 return repr;
273 repr += " " + vregs;
277 repr += " #" + constant;
281 repr += " pool@" + poolIndex;
285 repr += " +" + target;
288 return repr;
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
Debugger.py 416 import repr namespace
417 self.repr = repr.Repr()
418 self.repr.maxstring = 60
419 self.repr.maxother = 60
455 svalue = self.repr.repr(value) # repr(value)
456 # Strip extra quotes caused by calling repr on the (already
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
Debugger.py 416 import repr namespace
417 self.repr = repr.Repr()
418 self.repr.maxstring = 60
419 self.repr.maxother = 60
455 svalue = self.repr.repr(value) # repr(value)
456 # Strip extra quotes caused by calling repr on the (already
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
Debugger.py 416 import repr namespace
417 self.repr = repr.Repr()
418 self.repr.maxstring = 60
419 self.repr.maxother = 60
455 svalue = self.repr.repr(value) # repr(value)
456 # Strip extra quotes caused by calling repr on the (already
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
Debugger.py 416 import repr namespace
417 self.repr = repr.Repr()
418 self.repr.maxstring = 60
419 self.repr.maxother = 60
455 svalue = self.repr.repr(value) # repr(value)
456 # Strip extra quotes caused by calling repr on the (already
    [all...]

Completed in 1356 milliseconds

1 2