HomeSort by relevance Sort by last modified time
    Searched refs:decl (Results 126 - 150 of 566) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/v8/tools/clang/blink_gc_plugin/
BlinkGCPluginConsumer.cpp 28 std::set<FunctionDecl*> GetLateParsedFunctionDecls(TranslationUnitDecl* decl) {
38 v.TraverseDecl(decl);
127 void BlinkGCPluginConsumer::ParseFunctionTemplates(TranslationUnitDecl* decl) {
131 std::set<FunctionDecl*> late_parsed_decls = GetLateParsedFunctionDecls(decl);
349 bool BlinkGCPluginConsumer::DeclaresVirtualMethods(CXXRecordDecl* decl) {
350 CXXRecordDecl::method_iterator it = decl->method_begin();
351 for (; it != decl->method_end(); ++it)
704 if (NamespaceDecl* decl = dyn_cast<NamespaceDecl>(context)) {
705 if (decl->isAnonymousNamespace())
707 if (options_.checked_namespaces.find(decl->getNameAsString()) !
    [all...]
  /external/selinux/checkpolicy/test/
dismod.c 590 int display_avdecl(avrule_decl_t * decl, int field,
593 fprintf(out_fp, "decl %u:%s\n", decl->decl_id,
594 (decl->enabled ? " [enabled]" : ""));
597 cond_list_t *cond = decl->cond_list;
623 avrule_t *avrule = decl->avrules;
638 display_role_trans(decl->role_tr_rules, policy, out_fp);
642 display_role_allow(decl->role_allow_rules, policy,
648 (&decl->required, policy, out_fp)) {
655 (&decl->declared, policy, out_fp))
677 avrule_decl_t *decl = block->branch_list; local
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
noder.go 58 func (p *noder) decls(decls []syntax.Decl) (l []*Node) {
63 for _, decl := range decls {
64 p.lineno(decl)
65 switch decl := decl.(type) {
67 p.importDecl(decl)
70 l = append(l, p.varDecl(decl)...)
77 if decl.Group == nil || decl.Group != lastConstGroup {
85 l = append(l, p.constDecl(decl)...
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
noder.go 58 func (p *noder) decls(decls []syntax.Decl) (l []*Node) {
63 for _, decl := range decls {
64 p.lineno(decl)
65 switch decl := decl.(type) {
67 p.importDecl(decl)
70 l = append(l, p.varDecl(decl)...)
77 if decl.Group == nil || decl.Group != lastConstGroup {
85 l = append(l, p.constDecl(decl)...
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
target.def 106 void, (FILE *stream, tree decl), default_globalize_decl_name)
109 target requires such labels. Second argument is the decl the
116 void, (FILE *stream, tree decl, int for_eh, int empty),
179 associated with the tree decl. */
183 void, (tree decl, int visibility),
222 If DECL is non-NULL, it is the VAR_DECL or FUNCTION_DECL with
227 void, (const char *name, unsigned int flags, tree decl),
230 /* Return preferred text (sub)section for function DECL.
240 section *, (tree decl, enum node_frequency freq, bool startup, bool exit),
249 decl is available as @var{decl} and the new section is `cold' if
    [all...]
  /external/v8/tools/gcmole/
gcmole.cc 52 const clang::NamedDecl* decl,
54 if (!llvm::isa<clang::CXXConstructorDecl>(decl) &&
55 !llvm::isa<clang::CXXDestructorDecl>(decl)) {
58 ctx->mangleName(decl, out);
67 static bool InV8Namespace(const clang::NamedDecl* decl) {
68 return decl->getQualifiedNameAsString().compare(0, 4, "v8::") == 0;
224 virtual bool VisitFunctionDecl(clang::FunctionDecl* decl) {
225 callees_printer_->AnalyzeFunction(decl);
255 const clang::FunctionDecl* decl) {
258 if (!InV8Namespace(decl)) return false
    [all...]
  /external/mesa3d/src/gallium/drivers/radeonsi/
radeonsi_shader.c 201 const struct tgsi_full_declaration *decl)
257 const struct tgsi_full_declaration *decl)
282 switch (decl->Interp.Interpolate) {
293 if (decl->Interp.Centroid)
306 if (decl->Interp.Centroid)
312 if (decl->Interp.Centroid)
340 const struct tgsi_full_declaration *decl)
345 declare_input_vs(si_shader_ctx, input_index, decl);
347 declare_input_fs(si_shader_ctx, input_index, decl);
  /external/v8/tools/clang/plugins/
FindBadConstructsConsumer.cpp 66 bool IsGtestTestFixture(const CXXRecordDecl* decl) {
67 return decl->getQualifiedNameAsString() == "testing::Test";
101 std::set<FunctionDecl*> GetLateParsedFunctionDecls(TranslationUnitDecl* decl) {
111 v.TraverseDecl(decl);
189 bool FindBadConstructsConsumer::TraverseDecl(Decl* decl) {
190 if (ipc_visitor_) ipc_visitor_->BeginDecl(decl);
191 bool result = RecursiveASTVisitor::TraverseDecl(decl);
424 bool FindBadConstructsConsumer::InTestingNamespace(const Decl* record) {
657 if (TemplateDecl* decl = name.getAsTemplateDecl())
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/syntax/
nodes.go 40 DeclList []Decl
49 Decl interface {
60 decl
71 decl
80 decl
91 decl
106 decl
110 type decl struct{ node } type
112 func (*decl) aDecl() {}
340 DeclList []Decl
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/syntax/
nodes.go 40 DeclList []Decl
49 Decl interface {
60 decl
71 decl
80 decl
91 decl
106 decl
110 type decl struct{ node } type
112 func (*decl) aDecl() {}
340 DeclList []Decl
    [all...]
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_sanity.c 393 struct tgsi_full_declaration *decl )
407 file = decl->Declaration.File;
410 for (i = decl->Range.First; i <= decl->Range.Last; i++) {
423 if (decl->Declaration.Dimension) {
424 fill_scan_register2d(reg, file, i, decl->Dim.Index2D);
tgsi_transform.c 56 const struct tgsi_full_declaration *decl)
60 ti += tgsi_build_full_declaration(decl,
  /external/swiftshader/src/OpenGL/compiler/
ValidateLimitations.cpp 242 TIntermAggregate* decl = init->getAsAggregate(); local
243 if (!decl || (decl->getOp() != EOpDeclaration)) {
248 TIntermSequence& declSeq = decl->getSequence();
250 error(decl->getLine(), "Invalid init declaration", "for");
255 error(decl->getLine(), "Invalid init declaration", "for");
  /external/deqp/modules/gles31/functional/
es31fFboTestUtil.cpp 118 sglr::pdec::ShaderProgramDeclaration decl; local
120 decl << sglr::pdec::VertexAttribute("a_position", rr::GENERICVECTYPE_FLOAT);
121 decl << sglr::pdec::VertexAttribute("a_coord", rr::GENERICVECTYPE_FLOAT);
122 decl << sglr::pdec::VertexToFragmentVarying(rr::GENERICVECTYPE_FLOAT);
123 decl << sglr::pdec::FragmentOutput(mapDataTypeToGenericVecType(outputType));
125 decl << sglr::pdec::VertexSource(
135 decl << sglr::pdec::FragmentSource(genTexFragmentShader(samplerTypes.vec, outputType));
137 decl << sglr::pdec::Uniform("u_outScale0", glu::TYPE_FLOAT_VEC4);
138 decl << sglr::pdec::Uniform("u_outBias0", glu::TYPE_FLOAT_VEC4);
142 decl << sglr::pdec::Uniform(std::string("u_sampler") + de::toString(ndx), samplerTypes.vec[ndx])
    [all...]
es31fProgramInterfaceDefinitionUtil.hpp 48 VariablePathComponent (const glu::VariableDeclaration* decl) :m_type(TYPE_DECLARATION) { m_data.declaration = decl; }
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/Ia32/
EfiZeroMem.S 78 decl %ecx
110 decl %ecx
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
AttributeScope.java 137 public void addAttribute(String name, String decl) {
138 attributes.put(name, new Attribute(name,decl));
  /external/javassist/src/main/javassist/
CtMember.java 49 Cache(CtClassType decl) {
50 super(decl);
  /external/mesa3d/src/mesa/drivers/dri/i915/
i915_program.c 130 *(p->decl++) = (D0_DCL | D0_DEST(reg) | d0_flags);
131 *(p->decl++) = D1_MBZ;
132 *(p->decl++) = D2_MBZ;
133 assert(p->decl <= p->declarations + ARRAY_SIZE(p->declarations));
480 p->decl = p->declarations;
489 *(p->decl++) = _3DSTATE_PIXEL_SHADER_PROGRAM;
497 GLuint decl_size = p->decl - p->declarations;
515 i915_program_error(p, "Exceeded max DECL instructions (%d out of %d)",
542 GLuint decl_size = p->decl - p->declarations;
  /system/tools/aidl/
aidl.cpp 452 bool ParsePreprocessedLine(const string& line, string* decl,
463 decl->clear();
470 if (decl->empty()) {
471 *decl = std::move(piece);
518 string decl; local
521 if (!ParsePreprocessedLine(line, &decl, &package, &class_name)) {
526 if (decl == "parcelable") {
530 } else if (decl == "interface") {
  /external/skia/src/sksl/
SkSLParser.cpp 128 std::unique_ptr<ASTDeclaration> decl = this->directive(); local
129 if (decl) {
130 result.push_back(std::move(decl));
135 std::unique_ptr<ASTDeclaration> decl = this->declaration(); local
136 if (!decl) {
139 result.push_back(std::move(decl));
371 std::unique_ptr<ASTVarDeclarations> decl = this->varDeclarations(); local
372 if (!decl) {
375 for (const auto& var : decl->fVars) {
376 auto type = (const Type*) fTypes[decl->fType->fName]
767 auto decl = this->varDeclarations(); local
775 auto decl = this->varDeclarations(); local
833 std::unique_ptr<ASTVarDeclarations> decl = this->varDeclarations(); local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_sgmllib.py 49 def handle_decl(self, decl):
50 self.append(("decl", decl))
58 def unknown_decl(self, decl):
59 self.append(("unknown decl", decl))
153 ("decl", inside),
159 ("decl", inside),
345 ("unknown decl", 'spacer type="block" height="25"'),
352 ('decl', 'DOCTYPE doc [<!ATTLIST doc attr (a | b) >]'),
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseMemoryLibSse2/Ia32/
SetMem64.S 44 decl %ecx
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treeparser/
LangParser.h 31 #define DECL 4
144 - (LangParser_decl_return *)decl;
  /external/mesa3d/src/gallium/drivers/i915/
i915_fpc_emit.c 99 if (p->decl< p->declarations + I915_PROGRAM_SIZE) {
100 *(p->decl++) = (D0_DCL | D0_DEST(reg) | d0_flags);
101 *(p->decl++) = D1_MBZ;
102 *(p->decl++) = D2_MBZ;

Completed in 868 milliseconds

1 2 3 4 56 7 8 91011>>