HomeSort by relevance Sort by last modified time
    Searched defs:success (Results 351 - 375 of 2342) sorted by null

<<11121314151617181920>>

  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_vs.c 345 bool success = brw_codegen_vs_prog(brw, vp, &key); local
346 (void) success;
347 assert(success);
358 bool success; local
371 success = brw_codegen_vs_prog(brw, bvp, &key);
376 return success;
  /external/parameter-framework/upstream/parameter/
DomainConfiguration.cpp 182 bool success = areaConfiguration->serializeXmlSettings( local
186 return success;
207 bool success = areaConfiguration->serializeXmlSettings( local
211 return success;
  /external/parameter-framework/upstream/tools/xmlGenerator/
domainGeneratorConnector.cpp 141 bool success = criterionType->addValuePair(numericalValue, literalValue, error); local
143 if (not success) {
  /external/python/cpython2/Lib/unittest/test/
test_runner.py 97 def success(some_test): function in function:TestCleanUp.testCleanupInRun
99 ordering.append('success')
102 result.addSuccess = success
106 'cleanup2', 'cleanup1', 'success'])
  /external/python/cpython2/Python/
thread_beos.h 117 status_t success = 0; local
132 success = resume_thread( tid );
135 return ( success == B_NO_ERROR ? tid : -1 );
214 int success; local
226 success = 1;
228 success = 0;
233 dprintf(("PyThread_acquire_lock(%p, %d) -> %d\n", lock, waitflag, success));
234 return success;
thread_pthread.h 315 int success; local
335 success = (status == 0) ? 1 : 0;
337 dprintf(("PyThread_acquire_lock(%p, %d) -> %d\n", lock, waitflag, success));
338 return success;
413 int success; local
421 success = thelock->locked == 0;
423 if ( !success && waitflag ) {
433 success = 1;
435 if (success) thelock->locked = 1;
439 if (error) success = 0
    [all...]
thread_sgi.h 118 int success = 0; /* init not needed when SOLARIS_THREADS and */ local
129 success = -1;
147 if ((success = sproc(func, PR_SALL, arg)) < 0)
157 if (success >= 0) {
160 pidlist[maxpidindex++].child = success;
162 maxpidindex-1, success));
167 return success;
240 int success; local
245 success = ussetlock((ulock_t) lock);
247 success = uscsetlock((ulock_t) lock, 1); /* Try it once *
    [all...]
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowWifiP2pManagerTest.java 38 assertThat(testListener.success).isTrue();
59 assertThat(testListener.success).isFalse();
69 assertThat(testListener.success).isFalse();
72 assertThat(testListener.success).isTrue();
79 assertThat(testListener.success).isTrue();
99 assertThat(testListener.success).isFalse();
133 private boolean success; field in class:ShadowWifiP2pManagerTest.TestActionListener
137 success = true;
142 success = false;
  /external/sfntly/cpp/src/sample/subtly/
font_info.cc 142 bool success = GetCharacterMap(chars_to_glyph_ids); local
143 if (!success) {
151 success = ResolveCompositeGlyphs(chars_to_glyph_ids, resolved_glyph_ids);
152 if (!success) {
  /external/skia/example/
SkiaSDLExample.cpp 177 int success = SDL_GL_MakeCurrent(window, glContext); local
178 if (success != 0) {
180 return success;
  /external/skia/src/core/
SkReader32.h 150 bool success = (size > 0) && (size <= this->available()) && (SkAlign4(size) == size); local
152 (void)this->skip(success ? size : this->available());
153 return success;
  /external/skia/tests/
CanvasStateTest.cpp 126 bool success = complex_layers_draw_from_canvas_state(state, local
128 REPORTER_ASSERT(reporter, success);
237 bool success = drawFn(state, clipRect.fLeft, clipRect.fTop, local
240 REPORTER_ASSERT(reporter, success);
ColorSpaceXformTest.cpp 339 bool success = xform->apply(SkColorSpaceXform::kRGBA_8888_ColorFormat, &dstPixel, local
342 REPORTER_ASSERT(r, success);
EmptyPathTest.cpp 39 // success means we drew everywhere or nowhere (depending on shouldDraw)
40 bool success = shouldDraw ? (~0U == andValue) : (0 == orValue); local
42 if (!success) {
EncodeTest.cpp 51 bool success = GetResourceAsBitmap("images/mandrill_128.png", &bitmap); local
52 if (!success) {
57 success = bitmap.peekPixels(&src);
58 REPORTER_ASSERT(r, success);
59 if (!success) {
64 success = encode(format, &dst0, src);
65 REPORTER_ASSERT(r, success);
69 success = encoder1->encodeRows(1);
70 REPORTER_ASSERT(r, success);
75 success = encoder2->encodeRows(3)
136 bool success = GetResourceAsBitmap("images\/mandrill_128.png", &bitmap); local
209 bool success = SkPngEncoder::Encode(&dst, src, options); local
248 bool success = GetResourceAsBitmap("images\/mandrill_128.png", &bitmap); local
291 bool success = GetResourceAsBitmap("images\/google_chrome.ico", &bitmap); local
    [all...]
FrontBufferedStreamTest.cpp 28 const bool success = bufferedStream->rewind(); local
29 REPORTER_ASSERT(reporter, success == shouldSucceed);
SRGBMipMapTest.cpp 67 bool success = local
72 if (!success) {
  /external/skqp/example/
SkiaSDLExample.cpp 177 int success = SDL_GL_MakeCurrent(window, glContext); local
178 if (success != 0) {
180 return success;
  /external/skqp/src/core/
SkReader32.h 150 bool success = (size > 0) && (size <= this->available()) && (SkAlign4(size) == size); local
152 (void)this->skip(success ? size : this->available());
153 return success;
  /external/skqp/tests/
CanvasStateTest.cpp 126 bool success = complex_layers_draw_from_canvas_state(state, local
128 REPORTER_ASSERT(reporter, success);
237 bool success = drawFn(state, clipRect.fLeft, clipRect.fTop, local
240 REPORTER_ASSERT(reporter, success);
ColorSpaceXformTest.cpp 339 bool success = xform->apply(SkColorSpaceXform::kRGBA_8888_ColorFormat, &dstPixel, local
342 REPORTER_ASSERT(r, success);
EmptyPathTest.cpp 39 // success means we drew everywhere or nowhere (depending on shouldDraw)
40 bool success = shouldDraw ? (~0U == andValue) : (0 == orValue); local
42 if (!success) {
EncodeTest.cpp 50 bool success = GetResourceAsBitmap("images/mandrill_128.png", &bitmap); local
51 if (!success) {
56 success = bitmap.peekPixels(&src);
57 REPORTER_ASSERT(r, success);
58 if (!success) {
63 success = encode(format, &dst0, src);
64 REPORTER_ASSERT(r, success);
68 success = encoder1->encodeRows(1);
69 REPORTER_ASSERT(r, success);
74 success = encoder2->encodeRows(3)
135 bool success = GetResourceAsBitmap("images\/mandrill_128.png", &bitmap); local
208 bool success = SkPngEncoder::Encode(&dst, src, options); local
247 bool success = GetResourceAsBitmap("images\/mandrill_128.png", &bitmap); local
290 bool success = GetResourceAsBitmap("images\/google_chrome.ico", &bitmap); local
    [all...]
FrontBufferedStreamTest.cpp 28 const bool success = bufferedStream->rewind(); local
29 REPORTER_ASSERT(reporter, success == shouldSucceed);
IntTextureTest.cpp 98 bool success = context->contextPriv().readSurfacePixels(sContext.get(), local
102 REPORTER_ASSERT(reporter, !success);
106 bool success = context->contextPriv().readSurfacePixels(sContext.get(), local
110 REPORTER_ASSERT(reporter, !success);
117 bool success = context->contextPriv().readSurfacePixels(sContext.get(), local
121 REPORTER_ASSERT(reporter, success);
122 if (success) {
128 bool success = context->contextPriv().readSurfacePixels( local
134 REPORTER_ASSERT(reporter, !success);
147 bool success = context->contextPriv().readSurfacePixels(dstContext.get(), 0, 0, kS, kS local
183 bool success = context->contextPriv().writeSurfacePixels(sContext.get(), local
191 bool success = context->contextPriv().writeSurfacePixels( local
201 bool success = context->contextPriv().writeSurfacePixels(sContext.get(), local
    [all...]

Completed in 586 milliseconds

<<11121314151617181920>>