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

  /external/llvm/include/llvm/ADT/
APFloat.h 166 enum opStatus {
294 opStatus add(const APFloat &, roundingMode);
295 opStatus subtract(const APFloat &, roundingMode);
296 opStatus multiply(const APFloat &, roundingMode);
297 opStatus divide(const APFloat &, roundingMode);
299 opStatus remainder(const APFloat &);
301 opStatus mod(const APFloat &, roundingMode);
302 opStatus fusedMultiplyAdd(const APFloat &, const APFloat &, roundingMode);
303 opStatus roundToIntegral(roundingMode);
305 opStatus next(bool nextDown)
    [all...]
  /external/llvm/lib/Support/
APFloat.cpp 965 opStatus status;
    [all...]
  /frameworks/base/media/jni/
android_media_MediaRecorder.cpp 117 static bool process_media_recorder_call(JNIEnv *env, status_t opStatus, const char* exception, const char* message)
120 if (opStatus == (status_t)INVALID_OPERATION) {
123 } else if (opStatus != (status_t)OK) {
264 status_t opStatus = mr->setOutputFile(fd, offset, length);
265 process_media_recorder_call(env, opStatus, "java/io/IOException", "setOutputFile failed.");
android_media_MediaMetadataRetriever.cpp 53 static void process_media_retriever_call(JNIEnv *env, status_t opStatus, const char* exception, const char *message)
55 if (opStatus == (status_t) INVALID_OPERATION) {
57 } else if (opStatus != (status_t) OK) {
64 sprintf(msg, "%s: status = 0x%X", message, opStatus);
android_media_MediaPlayer.cpp 156 // If exception is NULL and opStatus is not OK, this method sends an error
158 // opStatus is not OK, this method throws the given exception to the client
160 static void process_media_player_call(JNIEnv *env, jobject thiz, status_t opStatus, const char* exception, const char *message)
163 if (opStatus != (status_t) OK) {
165 if (mp != 0) mp->notify(MEDIA_ERROR, opStatus, 0);
168 if ( opStatus == (status_t) INVALID_OPERATION ) {
170 } else if ( opStatus == (status_t) PERMISSION_DENIED ) {
172 } else if ( opStatus != (status_t) OK ) {
179 sprintf(msg, "%s: status=0x%X", message, opStatus);
225 status_t opStatus
    [all...]
  /external/clang/include/clang/Lex/
LiteralSupport.h 102 llvm::APFloat::opStatus GetFloatValue(llvm::APFloat &Result);
  /external/llvm/lib/Analysis/
ConstantFolding.cpp     [all...]
  /external/clang/lib/Lex/
LiteralSupport.cpp 966 llvm::APFloat::opStatus
    [all...]
  /external/llvm/unittests/ADT/
APFloatTest.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp     [all...]
DAGCombiner.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp     [all...]
  /external/clang/lib/Sema/
SemaOverload.cpp 374 llvm::APFloat::opStatus ConvertStatus = FloatVal.convert(
    [all...]
SemaExpr.cpp     [all...]

Completed in 570 milliseconds