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

1 2 3 4 5 6 7 8 91011>>

  /external/mesa3d/src/glsl/glcpp/tests/
066-if-nospace-expression.c 2 success
028-define-chain-obj-to-non-func.c 1 #define success() failure macro
2 #define foo success
049-if-expression-precedence.c 4 success
057-empty-arguments.c 1 #define zero() success
3 #define one(x) success
5 #define two(x,y) success
027-define-chain-obj-to-func.c 1 #define failure() success
055-define-chain-obj-to-func-parens-in-text.c 1 #define failure() success
029-define-chain-obj-to-func-with-args.c 2 #define foo bar(success)
036-define-func-non-macro-multi-token-argument.c 1 #define bar success
038-func-arg-with-commas.c 1 #define foo(x) success
  /external/valgrind/main/drd/tests/
tc11_XCHG.stdout.exp 0 success
  /external/valgrind/main/helgrind/tests/
tc11_XCHG.stdout.exp 0 success
  /external/valgrind/main/memcheck/tests/x86-linux/
bug133694.stdout.exp 0 success
  /external/valgrind/main/none/tests/amd64/
xadd.stdout.exp 0 success
  /external/valgrind/main/none/tests/ppc32/
bug139050-ppc32.stdout.exp 0 success
  /external/valgrind/main/none/tests/x86/
xadd.stdout.exp 0 success
  /external/valgrind/main/none/tests/
bug129866.stdout.exp 2 success
  /external/chromium/chrome/browser/chromeos/login/
authentication_notification_details.h 13 explicit AuthenticationNotificationDetails(bool success) : success_(success) {
16 bool success() const { return success_; } function in class:AuthenticationNotificationDetails
  /external/webkit/Source/WebCore/platform/graphics/cairo/
OpenGLShims.cpp 29 #define ASSIGN_FUNCTION_TABLE_ENTRY(FunctionName, success) \
30 openGLFunctionTable()->FunctionName = reinterpret_cast<FunctionName##Type>(lookupOpenGLFunctionAddress(#FunctionName, success))
51 static void* lookupOpenGLFunctionAddress(const char* functionName, bool& success)
53 if (!success)
72 success = false;
85 static bool success = true; local
88 return success;
91 ASSIGN_FUNCTION_TABLE_ENTRY(glActiveTexture, success);
92 ASSIGN_FUNCTION_TABLE_ENTRY(glAttachShader, success);
93 ASSIGN_FUNCTION_TABLE_ENTRY(glBindAttribLocation, success);
    [all...]
  /packages/inputmethods/PinyinIME/jni/command/
pinyinime_dictbuilder.cpp 32 bool success; local
34 success = dict_trie->build_dict(argv[1], argv[2]);
36 success = dict_trie->build_dict("../data/rawdict_utf16_65105_freq.txt",
39 if (success) {
46 success = dict_trie->save_dict("../../res/raw/dict_pinyin.dat");
48 if (success) {
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
InitializeDll.cpp 47 bool success = true; local
52 success = DetachThread();
55 success = false;
62 return success;
93 bool success = true; local
104 success = false;
108 success = false;
113 return success;
  /frameworks/base/core/java/android/view/
IOnKeyguardExitResult.aidl 23 void onKeyguardExitResult(boolean success);
  /external/icu4c/layout/
loengine.cpp 23 LEErrorCode *success)
27 return (le_engine *) LayoutEngine::layoutEngineFactory(fontInstance, scriptCode, languageCode, typo_flags, *success);
47 LEErrorCode *success)
52 *success = LE_ILLEGAL_ARGUMENT_ERROR;
56 return le->layoutChars(chars, offset, count, max, rightToLeft, x, y, *success);
61 LEErrorCode *success)
66 *success = LE_ILLEGAL_ARGUMENT_ERROR;
76 LEErrorCode *success)
81 *success = LE_ILLEGAL_ARGUMENT_ERROR;
85 le->getGlyphs(glyphs, *success);
    [all...]
LEGlyphStorage.cpp 65 void LEGlyphStorage::allocateGlyphArray(le_int32 initialGlyphCount, le_bool rightToLeft, LEErrorCode &success)
67 if (LE_FAILURE(success)) {
72 success = LE_ILLEGAL_ARGUMENT_ERROR;
81 success = LE_MEMORY_ALLOCATION_ERROR;
92 success = LE_MEMORY_ALLOCATION_ERROR;
119 success = LE_MEMORY_ALLOCATION_ERROR;
126 le_int32 LEGlyphStorage::allocatePositions(LEErrorCode &success)
128 if (LE_FAILURE(success)) {
133 success = LE_INTERNAL_ERROR;
140 success = LE_MEMORY_ALLOCATION_ERROR
518 LEErrorCode success = LE_NO_ERROR; local
    [all...]
  /frameworks/base/opengl/tests/EGLTest/
EGL_test.cpp 48 EGLBoolean success = eglTerminate(mEglDisplay); local
49 ASSERT_EQ(EGL_TRUE, success);
58 EGLBoolean success; local
65 success = eglChooseConfig(mEglDisplay, attrs, &config, 1, &numConfigs);
66 ASSERT_EQ(EGL_TRUE, success);
72 success = eglGetConfigAttrib(mEglDisplay, config, EGL_RED_SIZE, &components[0]);
73 ASSERT_EQ(EGL_TRUE, success);
75 success = eglGetConfigAttrib(mEglDisplay, config, EGL_GREEN_SIZE, &components[1]);
76 ASSERT_EQ(EGL_TRUE, success);
78 success = eglGetConfigAttrib(mEglDisplay, config, EGL_BLUE_SIZE, &components[2])
91 EGLBoolean success; local
    [all...]
  /libcore/luni/src/test/java/tests/org/w3c/dom/
NodeIsSupported.java 90 boolean success;
103 success = element.isSupported(featureXML, version);
104 assertTrue("nodeissupported01_XML1", success);
105 success = element.isSupported(featureXML, version1);
106 assertTrue("nodeissupported01_XML2", success);
110 success = element.isSupported(featureCore, version);
111 assertTrue("nodeissupported01_Core1", success);
112 success = element.isSupported(featureCore, version1);
113 success = element.isSupported(featureCore, version2);
114 assertTrue("nodeissupported01_Core3", success);
    [all...]

Completed in 1371 milliseconds

1 2 3 4 5 6 7 8 91011>>