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

1 2 3 4 5 6 7 891011>>

  /prebuilts/gdb/darwin-x86/lib/python2.7/
DocXMLRPCServer.py 101 decl = title + argspec + (note and self.grey(
107 return '<dl><dt>%s</dt>%s</dl>\n' % (decl, doc)
  /prebuilts/gdb/linux-x86/lib/python2.7/
DocXMLRPCServer.py 101 decl = title + argspec + (note and self.grey(
107 return '<dl><dt>%s</dt>%s</dl>\n' % (decl, doc)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
DocXMLRPCServer.py 101 decl = title + argspec + (note and self.grey(
107 return '<dl><dt>%s</dt>%s</dl>\n' % (decl, doc)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
DocXMLRPCServer.py 101 decl = title + argspec + (note and self.grey(
107 return '<dl><dt>%s</dt>%s</dl>\n' % (decl, doc)
  /system/tools/hidl/c2hal/
AST.cpp 52 for(auto* decl : *mDeclarations) {
53 delete decl;
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/i386/
hlebad.s 201 xacquire decl %ecx
202 xacquire lock decl %ecx
203 lock xacquire decl %ecx
204 xrelease decl %ecx
205 xrelease lock decl %ecx
206 lock xrelease decl %ecx
207 xacquire decl (%ecx)
208 xrelease decl (%ecx)
  /toolchain/binutils/binutils-2.25/intl/
localealias.c 131 # define libc_freeres_ptr(decl) decl
  /external/mesa3d/src/gallium/drivers/radeon/
radeon_setup_tgsi_llvm.c 207 const struct tgsi_full_declaration *decl)
210 switch(decl->Declaration.File) {
214 for (idx = decl->Range.First; idx <= decl->Range.Last; idx++) {
226 lp_emit_declaration_soa(bld_base, decl);
232 for (idx = decl->Range.First; idx <= decl->Range.Last; idx++) {
233 ctx->load_input(ctx, idx, decl);
241 for (idx = decl->Range.First; idx <= decl->Range.Last; idx++)
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/cgo/
ast.go 69 for _, decl := range ast1.Decls {
70 d, ok := decl.(*ast.GenDecl)
100 for _, decl := range ast2.Decls {
101 d, ok := decl.(*ast.GenDecl)
103 ast2.Decls[w] = decl
385 f.walk(n.Decl, "decl", visit)
473 f.walk(n.Decls, "decl", visit)
480 case []ast.Decl:
  /prebuilts/go/linux-x86/src/cmd/cgo/
ast.go 69 for _, decl := range ast1.Decls {
70 d, ok := decl.(*ast.GenDecl)
100 for _, decl := range ast2.Decls {
101 d, ok := decl.(*ast.GenDecl)
103 ast2.Decls[w] = decl
385 f.walk(n.Decl, "decl", visit)
473 f.walk(n.Decls, "decl", visit)
480 case []ast.Decl:
  /external/swiftshader/third_party/LLVM/tools/lto/
LTOModule.cpp 429 void LTOModule::addPotentialUndefinedSymbol(GlobalValue *decl,
432 if (decl->getName().startswith("llvm."))
436 if (isa<GlobalAlias>(decl))
440 mangler.getNameWithPrefix(name, decl, false);
452 if (decl->hasExternalWeakLinkage())
  /external/deqp/modules/gles2/functional/
es2fTextureUnitTests.cpp 175 sglr::pdec::ShaderProgramDeclaration decl; local
177 decl << sglr::pdec::VertexAttribute("a_position", rr::GENERICVECTYPE_FLOAT);
178 decl << sglr::pdec::VertexAttribute("a_coord", rr::GENERICVECTYPE_FLOAT);
179 decl << sglr::pdec::VertexToFragmentVarying(rr::GENERICVECTYPE_FLOAT);
180 decl << sglr::pdec::FragmentOutput(rr::GENERICVECTYPE_FLOAT);
187 decl << sglr::pdec::Uniform(samplerName, (unitTypes[ndx] == GL_TEXTURE_2D) ? (glu::TYPE_SAMPLER_2D) : (glu::TYPE_SAMPLER_CUBE));
188 decl << sglr::pdec::Uniform(transformationName, glu::TYPE_FLOAT_MAT3);
191 decl << sglr::pdec::VertexSource("attribute highp vec4 a_position;\n"
200 decl << sglr::pdec::FragmentSource(generateMultiTexFragmentShader(numUnits, unitTypes));
202 return decl;
    [all...]
  /prebuilts/go/darwin-x86/src/go/doc/
example.go 53 for _, decl := range file.Decls {
54 if g, ok := decl.(*ast.GenDecl); ok && g.Tok != token.IMPORT {
58 f, ok := decl.(*ast.FuncDecl)
155 for _, decl := range file.Decls {
156 switch d := decl.(type) {
292 Decls: []ast.Decl{importDecl, funcDecl},
307 var decls []ast.Decl
  /prebuilts/go/linux-x86/src/go/doc/
example.go 53 for _, decl := range file.Decls {
54 if g, ok := decl.(*ast.GenDecl); ok && g.Tok != token.IMPORT {
58 f, ok := decl.(*ast.FuncDecl)
155 for _, decl := range file.Decls {
156 switch d := decl.(type) {
292 Decls: []ast.Decl{importDecl, funcDecl},
307 var decls []ast.Decl
  /external/clang/unittests/ASTMatchers/
ASTMatchersNarrowingTest.cpp 253 decl(hasDescendant(typeLoc().bind("x")), has(decl()));
259 auto VD = internal::Matcher<VarDecl>(Name).dynCastTo<Decl>();
260 auto RD = internal::Matcher<RecordDecl>(Name).dynCastTo<Decl>();
263 decl(hasDescendant(VD), hasDescendant(RD))));
265 decl(hasDescendant(RD), hasDescendant(VD))));
268 decl(anyOf(hasDescendant(RD), hasDescendant(VD)))));
286 decl(hasAttr(clang::attr::WarnUnused))));
288 decl(hasAttr(clang::attr::WarnUnused))));
560 llvm::make_unique<VerifyIdIsBoundTo<Decl>>("b")))
    [all...]
  /external/selinux/libsepol/src/
policydb.c 1109 avrule_decl_t *decl; local
1115 for (decl = curblock->branch_list; decl != NULL;
1116 decl = decl->next) {
1128 for (decl = curblock->branch_list; decl != NULL;
1129 decl = decl->next) {
1130 if (decl->decl_id < 1 || decl->decl_id > num_decls)
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/fix/
fix.go 68 case *ast.Decl:
92 case *[]ast.Decl:
177 walkBeforeAfter(&n.Decl, before, after)
262 case []ast.Decl:
580 // Find an import decl to add to.
587 for i, decl := range f.Decls {
588 gen, ok := decl.(*ast.GenDecl)
610 // If no import decl found, add one after the last import.
620 // Ensure the import decl has parentheses, if needed.
649 for i, decl := range f.Decls
    [all...]
  /prebuilts/go/linux-x86/src/cmd/fix/
fix.go 68 case *ast.Decl:
92 case *[]ast.Decl:
177 walkBeforeAfter(&n.Decl, before, after)
262 case []ast.Decl:
580 // Find an import decl to add to.
587 for i, decl := range f.Decls {
588 gen, ok := decl.(*ast.GenDecl)
610 // If no import decl found, add one after the last import.
620 // Ensure the import decl has parentheses, if needed.
649 for i, decl := range f.Decls
    [all...]
  /external/mesa3d/src/gallium/drivers/i915/
i915_fpc_translate.c 132 fs->decl = (uint *) MALLOC(sizeof(passthrough_decl));
135 memcpy(fs->decl, passthrough_decl, sizeof(passthrough_decl));
    [all...]
  /external/deqp/modules/gles3/functional/
es3fTextureUnitTests.cpp 251 sglr::pdec::ShaderProgramDeclaration decl; local
253 decl << sglr::pdec::VertexAttribute("a_position", rr::GENERICVECTYPE_FLOAT);
254 decl << sglr::pdec::VertexAttribute("a_coord", rr::GENERICVECTYPE_FLOAT);
255 decl << sglr::pdec::VertexToFragmentVarying(rr::GENERICVECTYPE_FLOAT);
256 decl << sglr::pdec::FragmentOutput(rr::GENERICVECTYPE_FLOAT);
265 decl << sglr::pdec::Uniform(samplerName, samplerTypes[ndx]);
266 decl << sglr::pdec::Uniform(transformationName, glu::TYPE_FLOAT_MAT4);
267 decl << sglr::pdec::Uniform(scaleName, glu::TYPE_FLOAT_VEC4);
268 decl << sglr::pdec::Uniform(biasName, glu::TYPE_FLOAT_VEC4);
271 decl << sglr::pdec::VertexSource("#version 300 es\n
    [all...]
  /external/javassist/src/main/javassist/compiler/
Javac.java 95 CtClass decl = cb.getDeclaringClass(); local
97 .rebuildStackMapIf6(decl.getClassPool(),
98 decl.getClassFile2());
  /external/v8/tools/clang/value_cleanup/
ListValueRewriter.cpp 37 const clang::VarDecl* decl,
41 decl_(decl),
42 is_valid_(decl->hasInit()),
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ReplaceStringsVisitor.java 305 MethodDeclaration decl = findParentClass(node, MethodDeclaration.class); local
306 if (decl != null) {
307 for (Object obj : decl.parameters()) {
  /prebuilts/tools/common/m2/repository/org/glassfish/jaxb/jaxb-xjc/2.2.11/
jaxb-xjc-2.2.11.jar 
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/Ia32/
DivU64x64Remainder.S 75 decl %ebx

Completed in 490 milliseconds

1 2 3 4 5 6 7 891011>>