HomeSort by relevance Sort by last modified time
    Searched refs:opStatus (Results 1 - 13 of 13) sorted by null

  /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 153 // If exception is NULL and opStatus is not OK, this method sends an error
155 // opStatus is not OK, this method throws the given exception to the client
157 static void process_media_player_call(JNIEnv *env, jobject thiz, status_t opStatus, const char* exception, const char *message)
160 if (opStatus != (status_t) OK) {
162 if (mp != 0) mp->notify(MEDIA_ERROR, opStatus, 0);
165 if ( opStatus == (status_t) INVALID_OPERATION ) {
167 } else if ( opStatus == (status_t) PERMISSION_DENIED ) {
169 } else if ( opStatus != (status_t) OK ) {
176 sprintf(msg, "%s: status=0x%X", message, opStatus);
216 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...]

Completed in 1785 milliseconds