Searched defs:super (Results 1 - 25 of 57) sorted by path

123

/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3baserecognizer.h69 /// Whatever super structure is providing this interface needs a pointer to itself
73 void * super; member in struct:ANTLR3_BASE_RECOGNIZER_struct
H A Dantlr3basetree.h56 void * super; member in struct:ANTLR3_BASE_TREE_struct
H A Dantlr3basetreeadaptor.h53 void * super; member in struct:ANTLR3_BASE_TREE_ADAPTOR_struct
H A Dantlr3commontree.h48 /// Not used by ANTLR, but if a super structure is created above
49 /// this structure, it can be used to point to the start of the super
52 void * super; member in struct:ANTLR3_COMMON_TREE_struct
H A Dantlr3commontreeadaptor.h52 void * super; member in struct:ANTLR3_COMMON_TREE_ADAPTOR_struct
H A Dantlr3commontreenodestream.h56 /// super structure containing this structure), may store the pointer
57 /// to itself here in the super pointer, which is not used by
147 /// super structure containing this structure), may store the pointer
148 /// to itself here in the super pointer, which is not used by
151 void * super; member in struct:ANTLR3_COMMON_TREE_NODE_STREAM_struct
H A Dantlr3input.h63 /** Whatever super structure is providing the INPUT stream needs a pointer to itself
67 void * super; member in struct:ANTLR3_INPUT_STREAM_struct
H A Dantlr3intstream.h106 /** Pointer to the super structure that contains this interface. This
109 void * super; member in struct:ANTLR3_INT_STREAM_struct
H A Dantlr3lexer.h78 /** If there is a super structure that is implementing the
80 * implementing functions are overridden by this super structure.
82 void * super; member in struct:ANTLR3_LEXER_struct
H A Dantlr3parser.h50 * which they can reference using the super pointer here.
52 void * super; member in struct:ANTLR3_PARSER_struct
H A Dantlr3parsetree.h49 * super structure.
51 void * super; member in struct:ANTLR3_PARSE_TREE_struct
H A Dantlr3tokenstream.h85 void * super; member in struct:ANTLR3_TOKEN_SOURCE_struct
110 void * super; member in struct:ANTLR3_TOKEN_STREAM_struct
203 void * super; member in struct:ANTLR3_COMMON_TOKEN_STREAM_struct
H A Dantlr3treeparser.h48 /** Pointer to any super class
50 void * super; member in struct:ANTLR3_TREE_PARSER_struct
/external/chromium_org/third_party/jinja2/
H A Druntime.py125 def super(self, name, current): member in class:Context
134 name='super')
263 def super(self): member in class:BlockReference
268 self.name, name='super')
/external/chromium_org/third_party/libxml/src/
H A Dcatalog.c2315 * @super: should this be handled as a Super Catalog in which case
2325 const char *file, int super) {
2493 if (super) {
2634 * Load an SGML super catalog. It won't expand CATALOG or DELEGATE
2324 xmlParseSGMLCatalog(xmlCatalogPtr catal, const xmlChar *value, const char *file, int super) argument
H A Dxmlcatalog.c323 \t and with --sgml it automatically updates the super catalog\n\
324 \t--no-super-update: do not update the SGML super catalog\n\
366 } else if ((!strcmp(argv[i], "-no-super-update")) ||
367 (!strcmp(argv[i], "--no-super-update"))) {
436 xmlCatalogPtr super = NULL; local
448 super = xmlLoadSGMLSuperCatalog(XML_SGML_DEFAULT_CATALOG);
449 if (super == NULL)
450 super = xmlNewCatalog(1);
452 xmlACatalogAdd(super, BAD_CAS
[all...]
H A Dxmlschemas.c13927 * @super: the second wildcard
13932 * subset of @super, 1 otherwise.
13936 xmlSchemaWildcardPtr super)
13939 * 1 super must be any.
13941 if (super->any)
13945 * 2.2 super must be a pair of not and the same value.
13948 (super->negNsSet != NULL) &&
13949 (sub->negNsSet->value == super->negNsSet->value))
13956 * 3.2.1 super must be the same set or a superset thereof.
13958 if (super
13935 xmlSchemaCheckCOSNSSubset(xmlSchemaWildcardPtr sub, xmlSchemaWildcardPtr super) argument
[all...]
/external/chromium_org/v8/src/
H A Dast.h3526 SuperReference* super = local
3528 VISIT_AND_RETURN(SuperReference, super);
H A Dfull-codegen.cc835 void FullCodeGenerator::VisitSuperReference(SuperReference* super) { argument
/external/chromium_org/v8/test/cctest/
H A Dtest-api.cc1849 v8::Handle<v8::FunctionTemplate> super = v8::FunctionTemplate::New(isolate); local
1850 super->PrototypeTemplate()->Set(isolate, "flabby",
1853 super->PrototypeTemplate()->Set(isolate, "PI", v8_num(3.14));
1855 super->InstanceTemplate()->SetAccessor(v8_str("knurd"), GetKnurd);
1858 base1->Inherit(super);
1862 base2->Inherit(super);
1867 env->Global()->Set(v8_str("s"), super->GetFunction());
9614 "function f() { return super.hasOwnProperty; };"
/external/clang/lib/CodeGen/
H A DCGClass.cpp362 typedef EvaluatedExprVisitor<DynamicThisUseChecker> super; typedef in struct:__anon17814::DynamicThisUseChecker
366 DynamicThisUseChecker(ASTContext &C) : super(C), UsesThis(false) {}
/external/clang/lib/Sema/
H A DSemaExprObjC.cpp1153 // - if the receiver is super, T is a pointer to the class of the
1718 // If the "receiver" is 'super' in a method, handle it as an expression-like
1720 if (receiverNamePtr->isStr("super")) {
1811 // Determine whether "super" is acceptable in the current context.
1818 candidate.isKeyword("super");
1832 // If the identifier is "super" and there is no trailing dot, we're
1833 // messaging super. If the identifier is "super" and there is a
1901 // If we've found the keyword "super" (the only keyword that would be
1902 // returned by CorrectTypo), this is a send to super
2830 typedef StmtVisitor<ARCCastChecker, ACCResult> super; typedef in class:__anon18056::ARCCastChecker
[all...]
H A DSemaTemplate.cpp1483 typedef RecursiveASTVisitor<DependencyChecker> super; typedef in struct:__anon18099::DependencyChecker
1525 return super::TraverseTemplateName(N);
1533 return super::VisitDeclRefExpr(E);
/external/clang/test/Modules/Inputs/
H A Dweird_objc.h1 typedef struct objc_object { void *super; int wibble; } *id; member in struct:objc_object
/external/e2fsprogs/debugfs/
H A Dlogdump.c140 es = current_fs->super;
206 "no journal backup in super block\n");
619 struct ext2_super_block *super; local
622 super = current_fs->super;
623 offset = ((block_to_dump - super->s_first_data_block) %
624 super->s_blocks_per_group);

Completed in 758 milliseconds

123