HomeSort by relevance Sort by last modified time
    Searched refs:Decls (Results 101 - 125 of 253) sorted by null

1 2 3 45 6 7 8 91011

  /prebuilts/go/darwin-x86/src/sort/
genzfunc.go 40 for _, d := range af.Decls {
62 af.Decls = newDecl
  /prebuilts/go/linux-x86/src/sort/
genzfunc.go 40 for _, d := range af.Decls {
62 af.Decls = newDecl
  /external/clang/include/clang/Serialization/
ASTReader.h 490 ArrayRef<serialization::LocalDeclID> Decls;
493 FileDeclsInfo(ModuleFile *Mod, ArrayRef<serialization::LocalDeclID> Decls)
494 : Mod(Mod), Decls(Decls) {}
515 // Updates for visible decls can occur for other contexts than just the
694 /// "interesting" decls.
763 /// Sema tracks a few important decls, such as namespace std, directly.
773 /// The AST context tracks a few important decls, currently cudaConfigureCall,
796 /// \brief A list of undefined decls with internal linkage followed by the
    [all...]
  /prebuilts/go/darwin-x86/src/go/doc/
exports.go 245 for _, d := range src.Decls {
247 src.Decls[j] = d
251 src.Decls = src.Decls[0:j]
example.go 53 for _, decl := range file.Decls {
155 for _, decl := range file.Decls {
292 Decls: []ast.Decl{importDecl, funcDecl},
307 var decls []ast.Decl
308 for _, d := range file.Decls {
316 decls = append(decls, d)
322 f.Decls = decls
  /prebuilts/go/darwin-x86/src/go/printer/
example_test.go 24 for _, d := range file.Decls {
  /prebuilts/go/linux-x86/src/go/doc/
exports.go 245 for _, d := range src.Decls {
247 src.Decls[j] = d
251 src.Decls = src.Decls[0:j]
example.go 53 for _, decl := range file.Decls {
155 for _, decl := range file.Decls {
292 Decls: []ast.Decl{importDecl, funcDecl},
307 var decls []ast.Decl
308 for _, d := range file.Decls {
316 decls = append(decls, d)
322 f.Decls = decls
  /prebuilts/go/linux-x86/src/go/printer/
example_test.go 24 for _, d := range file.Decls {
  /prebuilts/go/darwin-x86/src/cmd/cgo/
ast.go 69 for _, decl := range ast1.Decls {
100 for _, decl := range ast2.Decls {
103 ast2.Decls[w] = decl
119 ast2.Decls[w] = d
122 ast2.Decls = ast2.Decls[0:w]
473 f.walk(n.Decls, "decl", visit)
  /prebuilts/go/linux-x86/src/cmd/cgo/
ast.go 69 for _, decl := range ast1.Decls {
100 for _, decl := range ast2.Decls {
103 ast2.Decls[w] = decl
119 ast2.Decls[w] = d
122 ast2.Decls = ast2.Decls[0:w]
473 f.walk(n.Decls, "decl", visit)
  /prebuilts/go/darwin-x86/src/go/ast/
filter.go 235 for _, d := range src.Decls {
237 src.Decls[j] = d
241 src.Decls = src.Decls[0:j]
331 ndecls += len(f.Decls)
368 var decls []Decl
370 decls = make([]Decl, ndecls)
371 funcs := make(map[string]int) // map of func name -> decls index
376 for _, d := range f.Decls {
391 if decls[j] != nil && decls[j].(*FuncDecl).Doc == nil
    [all...]
  /prebuilts/go/linux-x86/src/go/ast/
filter.go 235 for _, d := range src.Decls {
237 src.Decls[j] = d
241 src.Decls = src.Decls[0:j]
331 ndecls += len(f.Decls)
368 var decls []Decl
370 decls = make([]Decl, ndecls)
371 funcs := make(map[string]int) // map of func name -> decls index
376 for _, d := range f.Decls {
391 if decls[j] != nil && decls[j].(*FuncDecl).Doc == nil
    [all...]
  /external/clang/include/clang/AST/
CXXInheritance.h 80 DeclContext::lookup_result Decls;
UnresolvedSet.h 76 iterator begin() { return iterator(decls().begin()); }
77 iterator end() { return iterator(decls().end()); }
79 const_iterator begin() const { return const_iterator(decls().begin()); }
80 const_iterator end() const { return const_iterator(decls().end()); }
87 decls().push_back(DeclAccessPair::make(D, AS));
94 for (DeclsTy::iterator I = decls().begin(), E = decls().end(); I != E; ++I)
108 void erase(unsigned I) { decls()[I] = decls().pop_back_val(); }
110 void erase(iterator I) { *I.I = decls().pop_back_val();
128 DeclsTy &decls() { function in class:clang::UnresolvedSetImpl
131 const DeclsTy &decls() const { function in class:clang::UnresolvedSetImpl
    [all...]
  /external/clang/lib/CodeGen/
CGDeclCXX.cpp 524 ArrayRef<llvm::Function *> Decls,
559 for (unsigned i = 0, e = Decls.size(); i != e; ++i)
560 if (Decls[i])
561 EmitRuntimeCall(Decls[i]);
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/AST/
CXXInheritance.h 78 DeclContext::lookup_result Decls;
UnresolvedSet.h 77 iterator begin() { return iterator(decls().begin()); }
78 iterator end() { return iterator(decls().end()); }
80 const_iterator begin() const { return const_iterator(decls().begin()); }
81 const_iterator end() const { return const_iterator(decls().end()); }
88 decls().push_back(DeclAccessPair::make(D, AS));
95 for (DeclsTy::iterator I = decls().begin(), E = decls().end(); I != E; ++I)
109 void erase(unsigned I) { decls()[I] = decls().pop_back_val(); }
111 void erase(iterator I) { *I.I = decls().pop_back_val();
129 DeclsTy &decls() { function in class:clang::UnresolvedSetImpl
132 const DeclsTy &decls() const { function in class:clang::UnresolvedSetImpl
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/AST/
CXXInheritance.h 78 DeclContext::lookup_result Decls;
UnresolvedSet.h 77 iterator begin() { return iterator(decls().begin()); }
78 iterator end() { return iterator(decls().end()); }
80 const_iterator begin() const { return const_iterator(decls().begin()); }
81 const_iterator end() const { return const_iterator(decls().end()); }
88 decls().push_back(DeclAccessPair::make(D, AS));
95 for (DeclsTy::iterator I = decls().begin(), E = decls().end(); I != E; ++I)
109 void erase(unsigned I) { decls()[I] = decls().pop_back_val(); }
111 void erase(iterator I) { *I.I = decls().pop_back_val();
129 DeclsTy &decls() { function in class:clang::UnresolvedSetImpl
132 const DeclsTy &decls() const { function in class:clang::UnresolvedSetImpl
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/AST/
CXXInheritance.h 78 DeclContext::lookup_result Decls;
UnresolvedSet.h 77 iterator begin() { return iterator(decls().begin()); }
78 iterator end() { return iterator(decls().end()); }
80 const_iterator begin() const { return const_iterator(decls().begin()); }
81 const_iterator end() const { return const_iterator(decls().end()); }
88 decls().push_back(DeclAccessPair::make(D, AS));
95 for (DeclsTy::iterator I = decls().begin(), E = decls().end(); I != E; ++I)
109 void erase(unsigned I) { decls()[I] = decls().pop_back_val(); }
111 void erase(iterator I) { *I.I = decls().pop_back_val();
129 DeclsTy &decls() { function in class:clang::UnresolvedSetImpl
132 const DeclsTy &decls() const { function in class:clang::UnresolvedSetImpl
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/
CXXInheritance.h 78 DeclContext::lookup_result Decls;
UnresolvedSet.h 77 iterator begin() { return iterator(decls().begin()); }
78 iterator end() { return iterator(decls().end()); }
80 const_iterator begin() const { return const_iterator(decls().begin()); }
81 const_iterator end() const { return const_iterator(decls().end()); }
88 decls().push_back(DeclAccessPair::make(D, AS));
95 for (DeclsTy::iterator I = decls().begin(), E = decls().end(); I != E; ++I)
109 void erase(unsigned I) { decls()[I] = decls().pop_back_val(); }
111 void erase(iterator I) { *I.I = decls().pop_back_val();
129 DeclsTy &decls() { function in class:clang::UnresolvedSetImpl
132 const DeclsTy &decls() const { function in class:clang::UnresolvedSetImpl
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/clang/include/clang/AST/
CXXInheritance.h 78 DeclContext::lookup_result Decls;

Completed in 491 milliseconds

1 2 3 45 6 7 8 91011