/external/llvm/include/llvm/ADT/ |
APFloat.h | 166 enum opStatus { 293 opStatus add(const APFloat &, roundingMode); 294 opStatus subtract(const APFloat &, roundingMode); 295 opStatus multiply(const APFloat &, roundingMode); 296 opStatus divide(const APFloat &, roundingMode); 298 opStatus remainder(const APFloat &); 300 opStatus mod(const APFloat &, roundingMode); 301 opStatus fusedMultiplyAdd(const APFloat &, const APFloat &, roundingMode); 302 opStatus roundToIntegral(roundingMode); 304 opStatus next(bool nextDown) [all...] |
/external/llvm/lib/Support/ |
APFloat.cpp | 947 opStatus status; 1167 APFloat::opStatus [all...] |
/frameworks/base/media/jni/ |
android_media_MediaRecorder.cpp | 115 static bool process_media_recorder_call(JNIEnv *env, status_t opStatus, const char* exception, const char* message) 118 if (opStatus == (status_t)INVALID_OPERATION) { 121 } else if (opStatus != (status_t)OK) { 257 status_t opStatus = mr->setOutputFile(fd, offset, length); 258 process_media_recorder_call(env, opStatus, "java/io/IOException", "setOutputFile failed.");
|
android_media_MediaMetadataRetriever.cpp | 50 static void process_media_retriever_call(JNIEnv *env, status_t opStatus, const char* exception, const char *message) 52 if (opStatus == (status_t) INVALID_OPERATION) { 54 } else if (opStatus != (status_t) OK) { 61 sprintf(msg, "%s: status = 0x%X", message, opStatus);
|
android_media_MediaPlayer.cpp | 154 // If exception is NULL and opStatus is not OK, this method sends an error 156 // opStatus is not OK, this method throws the given exception to the client 158 static void process_media_player_call(JNIEnv *env, jobject thiz, status_t opStatus, const char* exception, const char *message) 161 if (opStatus != (status_t) OK) { 163 if (mp != 0) mp->notify(MEDIA_ERROR, opStatus, 0); 166 if ( opStatus == (status_t) INVALID_OPERATION ) { 168 } else if ( opStatus == (status_t) PERMISSION_DENIED ) { 170 } else if ( opStatus != (status_t) OK ) { 177 sprintf(msg, "%s: status=0x%X", message, opStatus); 217 status_t opStatus [all...] |
/external/clang/include/clang/Lex/ |
LiteralSupport.h | 97 llvm::APFloat::opStatus GetFloatValue(llvm::APFloat &Result);
|
/external/clang/lib/Lex/ |
LiteralSupport.cpp | 878 llvm::APFloat::opStatus [all...] |
/external/llvm/lib/Analysis/ |
ConstantFolding.cpp | [all...] |
/external/llvm/unittests/ADT/ |
APFloatTest.cpp | [all...] |
/external/llvm/lib/CodeGen/SelectionDAG/ |
SelectionDAG.cpp | [all...] |
DAGCombiner.cpp | [all...] |
/external/clang/lib/Sema/ |
SemaOverload.cpp | 371 llvm::APFloat::opStatus ConvertStatus = FloatVal.convert( [all...] |
SemaExpr.cpp | [all...] |