Searched defs:simple (Results 1 - 25 of 57) sorted by relevance

123

/external/chromium_org/v8/test/mjsunit/
H A Dhtml-string-funcs.js34 var simple = { big: 'big', blink: 'blink', bold: 'b',
37 for (var i in simple) CheckSimple(i, simple[i]);
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-2339.js30 function simple() { function
40 simple();
41 simple();
42 %OptimizeFunctionOnNextCall(simple);
43 simple();
44 assertOptimized(simple);
/external/clang/test/Sema/
H A Dmember-reference.c3 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 '.'?}}
/external/okhttp/okcurl/src/test/java/com/squareup/okhttp/curl/
H A DMainTest.java28 @Test public void simple() { method in class:MainTest
/external/guava/guava-tests/test/com/google/common/util/concurrent/
H A DForwardingCheckedFutureTest.java46 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/chromium_org/third_party/libxml/src/include/libxml/
H A Dxlink.h79 * This is the prototype for a simple link detection callback.
153 xlinkSimpleLinkFunk simple; member in struct:_xlinkHandler
/external/libxml2/include/libxml/
H A Dxlink.h79 * This is the prototype for a simple link detection callback.
153 xlinkSimpleLinkFunk simple; member in struct:_xlinkHandler
/external/llvm/include/llvm/Support/
H A DDOTGraphTraits.h12 // this file will produce a simple, but not very polished graph. By
39 explicit DefaultDOTGraphTraits(bool simple=false) : IsSimple (simple) {} argument
161 DOTGraphTraits (bool simple=false) : DefaultDOTGraphTraits (simple) {} argument
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DCubicIntersection.cpp30 static int quadPart(const Cubic& cubic, double tStart, double tEnd, Quadratic& simple) { argument
37 int order = reduceOrder(quad, simple, kReduceOrder_TreatAsFill);
46 SkDebugf("%s simple=(%1.17g,%1.17g", __FUNCTION__, simple[0].x, simple[0].y);
48 SkDebugf(" %1.17g,%1.17g", simple[1].x, simple[1].y);
51 SkDebugf(" %1.17g,%1.17g", simple[2].x, simple[2].y);
H A DShapeOps.cpp133 const int xorMask, const int xorOpMask, PathWrapper& simple) {
167 if (!unsortable && simple.hasMove()
169 && !simple.isClosed()) {
170 current->addCurveTo(index, endIndex, simple, true);
171 SkASSERT(simple.isClosed());
180 current->addCurveTo(index, endIndex, simple, true);
184 } while (!simple.isClosed() && ((!unsortable)
186 if (current->activeWinding(index, endIndex) && !simple.isClosed()) {
190 current->addCurveTo(index, endIndex, simple, true);
194 simple
132 bridgeOp(SkTDArray<Contour*>& contourList, const ShapeOp op, const int xorMask, const int xorOpMask, PathWrapper& simple) argument
[all...]
/external/chromium_org/third_party/skia/src/pathops/
H A DSkPathOpsSimplify.cpp12 static bool bridgeWinding(SkTArray<SkOpContour*, true>& contourList, SkPathWriter* simple) { argument
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, tru
105 bridgeXor(SkTArray<SkOpContour*, true>& contourList, SkPathWriter* simple) argument
[all...]
H A DSkPathOpsOp.cpp122 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
121 bridgeOp(SkTArray<SkOpContour*, true>& contourList, const SkPathOp op, const int xorMask, const int xorOpMask, SkPathWriter* simple) argument
[all...]
/external/clang/test/CodeGenCXX/
H A Dmicrosoft-abi-vtables-virtual-inheritance-vtordisps.cpp34 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
[all...]
/external/skia/experimental/Intersection/
H A DCubicIntersection.cpp30 static int quadPart(const Cubic& cubic, double tStart, double tEnd, Quadratic& simple) { argument
37 int order = reduceOrder(quad, simple, kReduceOrder_TreatAsFill);
46 SkDebugf("%s simple=(%1.17g,%1.17g", __FUNCTION__, simple[0].x, simple[0].y);
48 SkDebugf(" %1.17g,%1.17g", simple[1].x, simple[1].y);
51 SkDebugf(" %1.17g,%1.17g", simple[2].x, simple[2].y);
H A DShapeOps.cpp133 const int xorMask, const int xorOpMask, PathWrapper& simple) {
167 if (!unsortable && simple.hasMove()
169 && !simple.isClosed()) {
170 current->addCurveTo(index, endIndex, simple, true);
171 SkASSERT(simple.isClosed());
180 current->addCurveTo(index, endIndex, simple, true);
184 } while (!simple.isClosed() && ((!unsortable)
186 if (current->activeWinding(index, endIndex) && !simple.isClosed()) {
190 current->addCurveTo(index, endIndex, simple, true);
194 simple
132 bridgeOp(SkTDArray<Contour*>& contourList, const ShapeOp op, const int xorMask, const int xorOpMask, PathWrapper& simple) argument
[all...]
/external/skia/src/pathops/
H A DSkPathOpsSimplify.cpp12 static bool bridgeWinding(SkTArray<SkOpContour*, true>& contourList, SkPathWriter* simple) { argument
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, tru
105 bridgeXor(SkTArray<SkOpContour*, true>& contourList, SkPathWriter* simple) argument
[all...]
H A DSkPathOpsOp.cpp122 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
121 bridgeOp(SkTArray<SkOpContour*, true>& contourList, const SkPathOp op, const int xorMask, const int xorOpMask, SkPathWriter* simple) argument
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.artifact.repository_1.1.1.R36x_v20100901.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dcstrcase.c410 simple[]={ local
441 /* test simple case folding */
442 p=simple;
443 for(i=0; i<sizeof(simple)/12; p+=3, ++i) {
/external/clang/test/Analysis/
H A Darray-struct-region.c46 struct simple { int x; int y; }; struct
47 struct simple a;
48 struct simple *p = &a;
/external/clang/test/CXX/expr/expr.unary/expr.unary.noexcept/
H A Dsema.cpp8 void simple() { function
/external/clang/test/SemaTemplate/
H A Dinstantiate-expr-1.cpp4 int simple : I; // expected-error{{bit-field 'simple' has zero width}} member in struct:Bitfields
/external/emma/core/java12/com/vladium/emma/report/xml/
H A DReportGenerator.java462 private void closeElementTag (final boolean simple) argument
465 if (simple)
/external/icu/icu4c/source/test/cintltst/
H A Dcstrcase.c410 simple[]={ local
441 /* test simple case folding */
442 p=simple;
443 for(i=0; i<sizeof(simple)/12; p+=3, ++i) {
/external/ltrace/testsuite/ltrace.main/
H A Dparameters.c105 int simple; member in struct:__anon26669
113 x.simple = 89;

Completed in 1221 milliseconds

123