HomeSort by relevance Sort by last modified time
    Searched full:sema (Results 1 - 25 of 248) sorted by null

1 2 3 4 5 6 7 8 910

  /external/clang/include/clang/
CMakeLists.txt 6 add_subdirectory(Sema)
  /hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/osal/
Exynos_OSAL_Semaphore.c 44 sem_t *sema; local
46 sema = (sem_t *)Exynos_OSAL_Malloc(sizeof(sem_t));
47 if (!sema)
50 if (sem_init(sema, 0, 0) != 0) {
51 Exynos_OSAL_Free(sema);
55 *semaphoreHandle = (OMX_HANDLETYPE)sema;
61 sem_t *sema = (sem_t *)semaphoreHandle; local
63 if (sema == NULL)
66 if (sem_destroy(sema) != 0)
69 Exynos_OSAL_Free(sema);
75 sem_t *sema = (sem_t *)semaphoreHandle; local
92 sem_t *sema = (sem_t *)semaphoreHandle; local
109 sem_t *sema = (sem_t *)semaphoreHandle; local
122 sem_t *sema = (sem_t *)semaphoreHandle; local
    [all...]
  /external/valgrind/main/coregrind/m_scheduler/
sema.c 3 /*--- Semaphore stuff. sema.c ---*/
44 Slower (than the removed futex-based sema scheme) but more portable
55 void ML_(sema_init)(vg_sema_t *sema)
59 r = VG_(pipe)(sema->pipe);
62 vg_assert(sema->pipe[0] != sema->pipe[1]);
64 sema->pipe[0] = VG_(safe_fd)(sema->pipe[0]);
65 sema->pipe[1] = VG_(safe_fd)(sema->pipe[1])
    [all...]
sched-lock-generic.c 41 vg_sema_t sema; member in struct:sched_lock
55 ML_(sema_init)(&p->sema);
61 ML_(sema_deinit)(&p->sema);
67 return p->sema.owner_lwpid;
72 ML_(sema_down)(&p->sema, False);
77 ML_(sema_up)(&p->sema, False);
  /external/clang/test/CodeGen/
PR2743-reference-missing-static.c 6 sema. Unfortunately this test will become useless once sema starts
2003-08-21-WideString.c 3 // This bit is taken from Sema/wchar.c so we can avoid the wchar.h include.
2009-07-15-pad-wchar_t-array.c 3 // This bit is taken from Sema/wchar.c so we can avoid the wchar.h include.
  /external/qemu/distrib/sdl-1.2.15/src/thread/symbian/
SDL_syssem.cpp 84 RSemaphore sema; local
85 sema.SetHandle(sem->handle);
87 sema.Signal();
88 sema.Close();
111 RSemaphore sema; local
112 sema.SetHandle(info->iHandle);
113 sema.Signal();
125 RSemaphore sema; local
126 sema.SetHandle(sem->handle);
127 sema.Wait()
149 RSemaphore sema; local
210 RSemaphore sema; local
    [all...]
  /external/clang/lib/
CMakeLists.txt 7 add_subdirectory(Sema)
  /external/clang/test/Sema/Inputs/
conversion.h 1 /* Fake system header for Sema/conversion.c */
  /external/clang/include/clang/Sema/
SemaInternal.h 1 //===--- SemaInternal.h - Internal Sema Interfaces --------------*- C++ -*-===//
11 // implementation of Sema.
19 #include "clang/Sema/Sema.h"
20 #include "clang/Sema/SemaDiagnostic.h"
24 inline PartialDiagnostic Sema::PDiag(unsigned DiagID) {
ExternalSemaSource.h 1 //===--- ExternalSemaSource.h - External Sema Interface ---------*- C++ -*-===//
17 #include "clang/Sema/Weak.h"
29 class Sema;
53 /// \brief Initialize the semantic source with the Sema instance
56 virtual void InitializeSema(Sema &S) {}
58 /// \brief Inform the semantic consumer that Sema is no longer available.
76 /// Sema cannot find.
82 /// \return true to tell Sema to recover using the LookupResult.
85 /// \brief Read the set of tentative definitions known to the external Sema
96 /// external Sema source
    [all...]
AnalysisBasedWarnings.h 1 //=- AnalysisBasedWarnings.h - Sema warnings based on libAnalysis -*- C++ -*-=//
10 // This file defines AnalysisBasedWarnings, a worker object used by Sema
26 class Sema;
27 namespace sema { namespace in namespace:clang
31 namespace sema { namespace in namespace:clang
47 Sema &S;
90 AnalysisBasedWarnings(Sema &s);
100 }} // end namespace clang::sema
SemaFixItUtils.h 1 //===--- SemaFixItUtils.h - Sema FixIts -----------------------------------===//
10 // This file defines helper classes for generation of Sema FixItHints.
28 class Sema;
37 Sema &S,
54 Sema &S,
78 Sema &S);
PrettyDeclStackTrace.h 25 class Sema;
32 Sema &S;
38 PrettyDeclStackTraceEntry(Sema &S, Decl *D, SourceLocation Loc,
  /external/clang/test/CodeGenCXX/
member-call-parens.cpp 11 // FIXME: Sema doesn't like this for some reason...
  /external/clang/test/Index/
rdar-8288645-invalid-code.mm 3 // This test case previously crashed Sema.
  /external/clang/lib/AST/
CommentSema.cpp 28 Sema::Sema(llvm::BumpPtrAllocator &Allocator, const SourceManager &SourceMgr,
36 void Sema::setDecl(const Decl *D) {
45 ParagraphComment *Sema::actOnParagraphComment(
50 BlockCommandComment *Sema::actOnBlockCommandStart(
62 void Sema::actOnBlockCommandArgs(BlockCommandComment *Command,
67 void Sema::actOnBlockCommandFinish(BlockCommandComment *Command,
76 ParamCommandComment *Sema::actOnParamCommandStart(
94 void Sema::checkFunctionDeclVerbatimLine(const BlockCommandComment *Comment) {
121 void Sema::checkContainerDeclVerbatimLine(const BlockCommandComment *Comment)
    [all...]
  /external/clang/include/clang/Basic/
CMakeLists.txt 16 clang_diag_gen(Sema)
32 clang_tablegen(arm_neon.inc -gen-arm-neon-sema
  /external/clang/lib/Sema/
SemaStmtAttr.cpp 14 #include "clang/Sema/SemaInternal.h"
19 #include "clang/Sema/DelayedDiagnostic.h"
20 #include "clang/Sema/Lookup.h"
21 #include "clang/Sema/ScopeInfo.h"
25 using namespace sema;
27 static Attr *handleFallThroughAttr(Sema &S, Stmt *St, const AttributeList &A,
48 static Attr *ProcessStmtAttribute(Sema &S, Stmt *St, const AttributeList &A,
67 StmtResult Sema::ProcessStmtAttributes(Stmt *S, AttributeList *AttrList,
TargetAttributesSema.h 17 class Sema;
23 const AttributeList &Attr, Sema &S) const;
TargetAttributesSema.cpp 18 #include "clang/Sema/SemaInternal.h"
25 const AttributeList &Attr, Sema &S) const {
30 const AttributeList &Attr, Sema &S) {
64 const AttributeList &Attr, Sema &S) const {
75 Sema &S) {
90 Sema &S) {
110 Sema &S) const {
125 Sema &S) {
154 DLLImportAttr *Sema::mergeDLLImportAttr(Decl *D, SourceRange Range,
168 static void HandleDLLImportAttr(Decl *D, const AttributeList &Attr, Sema &S)
    [all...]
Sema.cpp 1 //===--- Sema.cpp - AST Builder and Semantic Analysis Implementation ------===//
15 #include "clang/Sema/SemaInternal.h"
30 #include "clang/Sema/CXXFieldCollector.h"
31 #include "clang/Sema/DelayedDiagnostic.h"
32 #include "clang/Sema/ExternalSemaSource.h"
33 #include "clang/Sema/MultiplexExternalSemaSource.h"
34 #include "clang/Sema/ObjCMethodList.h"
35 #include "clang/Sema/PrettyDeclStackTrace.h"
36 #include "clang/Sema/Scope.h"
37 #include "clang/Sema/ScopeInfo.h
    [all...]
  /external/clang/test/Sema/
fn-ptr-as-fn-prototype.c 4 // Sema::ActOn{Start,End}FunctionDeclarator, specifically checking that
  /external/clang/
Android.mk 21 lib/Sema \

Completed in 916 milliseconds

1 2 3 4 5 6 7 8 910