OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:astream
(Results
1 - 25
of
41
) sorted by null
1
2
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRTreeException.m
38
+ (id) newException:(id<ANTLRBaseTree>)theOldRoot newRoot:(id<ANTLRBaseTree>)theNewRoot stream:(id<ANTLRIntStream>)
aStream
;
40
return [[ANTLRTreeException alloc] initWithOldRoot:theOldRoot newRoot:theNewRoot stream:
aStream
];
43
- (id) initWithOldRoot:(id<ANTLRBaseTree>)theOldRoot newRoot:(id<ANTLRBaseTree>)theNewRoot stream:(id<ANTLRIntStream>)
aStream
;
45
if ((self = [super initWithStream:
aStream
reason:@"The new root has more than one child. Cannot make it the root node."]) != nil ) {
ANTLRTreeException.h
36
+ (id) newException:(id<ANTLRBaseTree>)theOldRoot newRoot:(id<ANTLRBaseTree>)theNewRoot stream:(id<ANTLRIntStream>)
aStream
;
37
- (id) initWithOldRoot:(id<ANTLRBaseTree>)theOldRoot newRoot:(id<ANTLRBaseTree>)theNewRoot stream:(id<ANTLRIntStream>)
aStream
;
ANTLRTreeParser.m
77
- (void) mismatch:(id<ANTLRIntStream>)
aStream
tokenType:(ANTLRTokenType)aTType follow:(ANTLRBitSet *)aBitset
79
ANTLRMismatchedTreeNodeException *mte = [ANTLRMismatchedTreeNodeException newException:aTType Stream:
aStream
];
80
[mte setNode:[((id<ANTLRTreeNodeStream>)
aStream
) LT:1]];
81
[self recoverFromMismatchedToken:
aStream
Type:aTType Follow:aBitset];
ANTLRRecognitionException.m
155
- (void) setStream: (id<ANTLRIntStream>)
aStream
157
if ( input !=
aStream
) {
159
if (
aStream
) [
aStream
retain];
160
input =
aStream
;
ANTLRRecognitionException.h
63
- (void) setStream: (id<ANTLRIntStream>)
aStream
;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRTreeException.h
36
+ (id) exceptionWithOldRoot:(id<ANTLRTree>)theOldRoot newRoot:(id<ANTLRTree>)theNewRoot stream:(id<ANTLRIntStream>)
aStream
;
37
- (id) initWithOldRoot:(id<ANTLRTree>)theOldRoot newRoot:(id<ANTLRTree>)theNewRoot stream:(id<ANTLRIntStream>)
aStream
;
ANTLRRecognitionException.h
59
- (void) setStream: (id<ANTLRIntStream>)
aStream
;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRTreeException.h
36
+ (id) exceptionWithOldRoot:(id<ANTLRTree>)theOldRoot newRoot:(id<ANTLRTree>)theNewRoot stream:(id<ANTLRIntStream>)
aStream
;
37
- (id) initWithOldRoot:(id<ANTLRTree>)theOldRoot newRoot:(id<ANTLRTree>)theNewRoot stream:(id<ANTLRIntStream>)
aStream
;
ANTLRRecognitionException.h
59
- (void) setStream: (id<ANTLRIntStream>)
aStream
;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRTreeException.h
36
+ (id) exceptionWithOldRoot:(id<ANTLRTree>)theOldRoot newRoot:(id<ANTLRTree>)theNewRoot stream:(id<ANTLRIntStream>)
aStream
;
37
- (id) initWithOldRoot:(id<ANTLRTree>)theOldRoot newRoot:(id<ANTLRTree>)theNewRoot stream:(id<ANTLRIntStream>)
aStream
;
ANTLRRecognitionException.h
59
- (void) setStream: (id<ANTLRIntStream>)
aStream
;
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/combined/
CombinedParser.m
87
+ (CombinedParser *)newCombinedParser:(id<ANTLRTokenStream>)
aStream
89
return [[CombinedParser alloc] initWithTokenStream:
aStream
];
93
- (id) initWithTokenStream:(id<ANTLRTokenStream>)
aStream
95
if ((self = [super initWithTokenStream:
aStream
State:[[ANTLRRecognizerSharedState newANTLRRecognizerSharedStateWithRuleLen:2+1] retain]]) != nil) {
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treeparser/
LangDumpDecl.m
97
+ (LangDumpDecl *)newLangDumpDecl:(id<ANTLRTreeNodeStream>)
aStream
99
return [[LangDumpDecl alloc] initWithStream:
aStream
];
104
- (id) initWithStream:(id<ANTLRTreeNodeStream>)
aStream
106
self = [super initWithStream:
aStream
State:[[ANTLRRecognizerSharedState newANTLRRecognizerSharedStateWithRuleLen:3+1] retain]];
LangDumpDecl.h
76
+ (id) newLangDumpDecl:(id<ANTLRTreeNodeStream>)
aStream
;
LangParser.m
199
+ (LangParser *)newLangParser:(id<ANTLRTokenStream>)
aStream
201
return [[LangParser alloc] initWithTokenStream:
aStream
];
206
- (id) initWithTokenStream:(id<ANTLRTokenStream>)
aStream
208
self = [super initWithTokenStream:
aStream
State:[[ANTLRRecognizerSharedState newANTLRRecognizerSharedStateWithRuleLen:3+1] retain]];
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/hoistedPredicates/
TParser.m
90
+ (TParser *)newTParser:(id<ANTLRTokenStream>)
aStream
92
return [[TParser alloc] initWithTokenStream:
aStream
];
97
- (id) initWithTokenStream:(id<ANTLRTokenStream>)
aStream
99
self = [super initWithTokenStream:
aStream
State:[[ANTLRRecognizerSharedState newANTLRRecognizerSharedStateWithRuleLen:4+1] retain]];
TParser.h
65
+ (id) newTParser:(id<ANTLRTokenStream>)
aStream
;
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treerewrite/
TreeRewriteParser.m
156
+ (TreeRewriteParser *)newTreeRewriteParser:(id<ANTLRTokenStream>)
aStream
158
return [[TreeRewriteParser alloc] initWithTokenStream:
aStream
];
163
- (id) initWithTokenStream:(id<ANTLRTokenStream>)
aStream
165
self = [super initWithTokenStream:
aStream
State:[[ANTLRRecognizerSharedState newANTLRRecognizerSharedStateWithRuleLen:2+1] retain]];
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treerewrite/output1/
TreeRewriteParser.m
157
+ (TreeRewriteParser *)newTreeRewriteParser:(id<ANTLRTokenStream>)
aStream
159
return [[TreeRewriteParser alloc] initWithTokenStream:
aStream
];
163
- (id) initWithTokenStream:(id<ANTLRTokenStream>)
aStream
165
if ((self = [super initWithTokenStream:
aStream
State:[[ANTLRRecognizerSharedState newANTLRRecognizerSharedStateWithRuleLen:2+1] retain]]) != nil) {
/hardware/libhardware/modules/camera/
Camera.cpp
300
camera3_stream_t *
astream
;
local
327
astream
= stream_config->streams[i];
328
if (
astream
->max_buffers > 0) {
330
newStreams[i] = reuseStream(
astream
);
333
newStreams[i] = new Stream(mId,
astream
);
340
astream
->priv = newStreams[i];
382
Stream *Camera::reuseStream(camera3_stream_t *
astream
)
384
Stream *priv = reinterpret_cast<Stream*>(
astream
->priv);
386
if (!priv->isValidReuseStream(mId,
astream
)) {
Stream.h
31
// validate that
astream
's parameters match this stream's parameters
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/LL-star/
SimpleCParser.h
84
+ (id) newSimpleCParser:(id<ANTLRTokenStream>)
aStream
;
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/
SymbolTableParser.h
97
+ (id) newSymbolTableParser:(id<ANTLRTokenStream>)
aStream
;
SymbolTableParser.m
153
+ (SymbolTableParser *)newSymbolTableParser:(id<ANTLRTokenStream>)
aStream
155
return [[SymbolTableParser alloc] initWithTokenStream:
aStream
];
160
- (id) initWithTokenStream:(id<ANTLRTokenStream>)
aStream
162
self = [super initWithTokenStream:
aStream
State:[[ANTLRRecognizerSharedState newANTLRRecognizerSharedStateWithRuleLen:6+1] retain]];
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
SimpleCTP.h
118
+ (id) newSimpleCTP:(id<ANTLRTreeNodeStream>)
aStream
;
Completed in 349 milliseconds
1
2