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

1 2 3 4 5 6 7 8 91011>>

  /libcore/luni/src/test/java/libcore/java/io/
OldReaderTest.java 34 Support_ASimpleReader simple; local
35 simple = new Support_ASimpleReader("Bla bla, what else?");
37 assertEquals("Wrong return value!", 4, simple.read(buf));
40 simple.read(buf);
43 simple.throwExceptionOnNextUse = true;
45 simple.read(buf);
52 Support_ASimpleReader simple; local
53 simple = new Support_ASimpleReader("Bla bla, what else?");
55 assertEquals("Wrong return value!", 4, simple.read(buf));
57 simple.read(buf)
73 Support_ASimpleReader simple = new Support_ASimpleReader("Bla bla, what else?"); local
87 Support_ASimpleReader simple = new Support_ASimpleReader("Bla bla, what else?"); local
97 Support_ASimpleReader simple = new Support_ASimpleReader("Bla bla, what else?"); local
    [all...]
  /external/nanopb-c/examples/simple/
Makefile 9 CSRC = simple.c # The main program
10 CSRC += simple.pb.c # The compiled protocol definition
15 simple: $(CSRC)
19 simple.pb.c: simple.proto
20 $(PROTOC) $(PROTOC_OPTS) --nanopb_out=. simple.proto
  /external/clang/test/Sema/
member-reference.c 3 struct simple { int i; }; struct
6 struct simple s[1];
22 int PR17762(struct simple c) {
23 return c->i; // expected-error {{member reference type 'struct simple' is not a pointer; maybe you meant to use '.'?}}
  /frameworks/base/test-runner/tests/src/android/test/suitebuilder/examples/simple/
AnotherSimpleTest.java 17 package android.test.suitebuilder.examples.simple;
SimpleTest.java 17 package android.test.suitebuilder.examples.simple;
  /cts/tests/tests/content/src/android/content/res/cts/
ResourceNameTest.java 31 final String fullName = res.getResourceName(R.configVarying.simple);
32 assertEquals("com.android.cts.content:configVarying/simple", fullName);
34 final String packageName = res.getResourcePackageName(R.configVarying.simple);
37 final String typeName = res.getResourceTypeName(R.configVarying.simple);
40 final String entryName = res.getResourceEntryName(R.configVarying.simple);
41 assertEquals("simple", entryName);
48 "com.android.cts.content:configVarying/simple",
50 assertEquals(R.configVarying.simple, resid);
52 resid = res.getIdentifier("configVarying/simple", null,
54 assertEquals(R.configVarying.simple, resid)
    [all...]
ConfigTest.java 62 assertNotNull("Returned wrong configuration-based simple value: expected <nothing>, "
65 assertEquals("Returned wrong configuration-based simple value: expected '"
69 assertNull("Resource not found for configuration-based simple value: expecting \""
241 checkValue(res, R.configVarying.simple, "simple default");
248 checkValue(res, R.configVarying.simple, "simple xx");
256 checkValue(res, R.configVarying.simple, "simple xx-rYY");
263 checkValue(res, R.configVarying.simple, "simple mcc111")
    [all...]
  /external/chromium_org/third_party/skia/src/pathops/
SkPathOpsSimplify.cpp 12 static bool bridgeWinding(SkTArray<SkOpContour*, true>& contourList, SkPathWriter* simple) {
50 if (!unsortable && simple->hasMove()
52 && !simple->isClosed()) {
53 current->addCurveTo(index, endIndex, simple, true);
54 SkASSERT(simple->isClosed());
63 current->addCurveTo(index, endIndex, simple, true);
67 } while (!simple->isClosed() && (!unsortable
69 if (current->activeWinding(index, endIndex) && !simple->isClosed()) {
70 // SkASSERT(unsortable || simple->isEmpty());
73 current->addCurveTo(index, endIndex, simple, true)
    [all...]
SkPathOpsOp.cpp 122 const int xorMask, const int xorOpMask, SkPathWriter* simple) {
167 if (!unsortable && simple->hasMove()
169 && !simple->isClosed()) {
170 current->addCurveTo(index, endIndex, simple, true);
172 if (!simple->isClosed()) {
176 // SkASSERT(simple->isClosed());
185 current->addCurveTo(index, endIndex, simple, true);
189 } while (!simple->isClosed() && (!unsortable
191 if (current->activeWinding(index, endIndex) && !simple->isClosed()) {
194 if (!unsortable && !simple->isEmpty())
    [all...]
SkPathOpsCommon.h 16 void Assemble(const SkPathWriter& path, SkPathWriter* simple);
  /external/skia/src/pathops/
SkPathOpsSimplify.cpp 12 static bool bridgeWinding(SkTArray<SkOpContour*, true>& contourList, SkPathWriter* simple) {
50 if (!unsortable && simple->hasMove()
52 && !simple->isClosed()) {
53 current->addCurveTo(index, endIndex, simple, true);
54 SkASSERT(simple->isClosed());
63 current->addCurveTo(index, endIndex, simple, true);
67 } while (!simple->isClosed() && (!unsortable
69 if (current->activeWinding(index, endIndex) && !simple->isClosed()) {
70 // SkASSERT(unsortable || simple->isEmpty());
73 current->addCurveTo(index, endIndex, simple, true)
    [all...]
SkPathOpsOp.cpp 122 const int xorMask, const int xorOpMask, SkPathWriter* simple) {
167 if (!unsortable && simple->hasMove()
169 && !simple->isClosed()) {
170 current->addCurveTo(index, endIndex, simple, true);
172 if (!simple->isClosed()) {
176 // SkASSERT(simple->isClosed());
185 current->addCurveTo(index, endIndex, simple, true);
189 } while (!simple->isClosed() && (!unsortable
191 if (current->activeWinding(index, endIndex) && !simple->isClosed()) {
194 if (!unsortable && !simple->isEmpty())
    [all...]
SkPathOpsCommon.h 16 void Assemble(const SkPathWriter& path, SkPathWriter* simple);
  /development/ndk/samples/test-libstdc++/jni/
Android.mk 1 # A simple test for the minimal standard C++ library
  /external/chromium_org/third_party/skia/experimental/Intersection/
ShapeOps.h 11 void simplify(const SkPath& path, bool asFill, SkPath& simple);
33 void simplifyx(const SkPath& path, SkPath& simple);
  /external/skia/experimental/Intersection/
ShapeOps.h 11 void simplify(const SkPath& path, bool asFill, SkPath& simple);
33 void simplifyx(const SkPath& path, SkPath& simple);
  /ndk/tests/build/multi-module-path/path1/foo/
Android.mk 1 # A simple module used to demonstrate multi-path NDK_MODULE_PATH imports.
  /external/llvm/include/llvm/Support/
DOTGraphTraits.h 12 // this file will produce a simple, but not very polished graph. By
39 explicit DefaultDOTGraphTraits(bool simple=false) : IsSimple (simple) {}
161 DOTGraphTraits (bool simple=false) : DefaultDOTGraphTraits (simple) {}
  /external/javassist/src/test/test/javassist/convert/
ArrayAccessReplaceTest.java 14 private static SimpleInterface simple; field in class:ArrayAccessReplaceTest
19 CtClass simpleClass = pool.get(ArrayAccessReplaceTest.class.getName() + "$Simple");
24 simple = (SimpleInterface) simpleClass.toClass(new URLClassLoader(new URL[0], getClass().getClassLoader()), Class.class.getProtectionDomain()).newInstance();
41 simple.setBoolean(i, value);
46 assertEquals(value, simple.getBoolean(i));
52 simple.setByte(i, i);
56 assertEquals(i, simple.getByte(i));
62 simple.setShort(i, i);
66 assertEquals(i, simple.getShort(i));
72 simple.setChar(i, i)
    [all...]
  /external/valgrind/main/memcheck/tests/
malloc_free_fill.stderr.exp 1 test simple malloc/free:
  /system/extras/tests/framebuffer/
Android.mk 20 LOCAL_MODULE = test-fb-simple
  /external/chromium_org/v8/test/mjsunit/regress/
regress-2339.js 30 function simple() { function
40 simple();
41 simple();
42 %OptimizeFunctionOnNextCall(simple);
43 simple();
44 assertOptimized(simple);
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
ForwardingCheckedFutureTest.java 46 private TestSimpleFuture simple = new TestSimpleFuture(); field in class:ForwardingCheckedFutureTest
52 assertEquals(VALUE, simple.checkedGet());
60 assertEquals(VALUE, simple.checkedGet(100, TIME_UNIT));
74 simple.checkedGet(100, TIME_UNIT);
91 simple.checkedGet();
  /external/clang/test/CodeGenCXX/
microsoft-abi-vtables-virtual-inheritance-vtordisps.cpp 34 namespace simple { namespace
51 // A simple vtordisp{A,B} thunk for Method@Class is something like:
57 // CHECK-LABEL: VFTable for 'V1' in 'simple::A' (2 entries).
58 // CHECK-NEXT: 0 | void simple::A::f()
60 // CHECK-NEXT: 1 | simple::A::~A() [scalar deleting]
63 // CHECK-LABEL: Thunks for 'simple::A::~A()' (1 entry).
66 // CHECK-LABEL: Thunks for 'void simple::A::f()' (1 entry).
70 // MANGLING-DAG: @"\01?f@A@simple@@$4PPPPPPPM@A@AEXXZ"
73 // MANGLING-DAG: @"\01??_EA@simple@@$4PPPPPPPM@A@AEPAXI@Z"
80 // CHECK-LABEL: VFTable for 'Z' in 'V3' in 'simple::B' (2 entries)
    [all...]
  /external/llvm/test/MC/X86/AlignedBundling/
asm-printing-bundle-directives.s 3 # Just a simple test for the assembly emitter - making sure it emits back the

Completed in 1756 milliseconds

1 2 3 4 5 6 7 8 91011>>