Home
last modified time | relevance | path

Searched refs:ToIndex (Results 1 – 14 of 14) sorted by relevance

/external/antlr/runtime/ObjC/Framework/
DTokenRewriteStream.h84 + (ANTLRReplaceOp *) newANTLRReplaceOp:(NSInteger)from ToIndex:(NSInteger)to Text:(NSString*)theTex…
85 - (id) initWithIndex:(NSInteger)from ToIndex:(NSInteger)to Text:(NSString *)theText;
94 + (ANTLRDeleteOp *) newANTLRDeleteOp:(NSInteger)from ToIndex:(NSInteger)to;
96 - (id) initWithIndex:(NSInteger)from ToIndex:(NSInteger)to;
141 - (void) replaceFromIndex:(NSInteger)from ToIndex:(NSInteger)to Text:(NSString *)theText;
145 - (void) replaceProgNam:(NSString *)programName FromIndex:(NSInteger)from ToIndex:(NSInteger)to Tex…
147 - (void) delete:(NSInteger)from ToIndex:(NSInteger)to;
151 - (void) delete:(NSString *)programName FromIndex:(NSInteger)from ToIndex:(NSInteger)to;
DTokenRewriteStream.m129 + (ANTLRReplaceOp *) newANTLRReplaceOp:(NSInteger)from ToIndex:(NSInteger)to Text:(NSString*)theText
131 return [[ANTLRReplaceOp alloc] initWithIndex:from ToIndex:to Text:theText];
134 - (id) initWithIndex:(NSInteger)from ToIndex:(NSInteger)to Text:(NSString *)theText
160 + (ANTLRDeleteOp *) newANTLRDeleteOp:(NSInteger)from ToIndex:(NSInteger)to
163 return [[ANTLRDeleteOp alloc] initWithIndex:from ToIndex:to];
166 - (id) initWithIndex:(NSInteger)from ToIndex:(NSInteger)to
168 if ((self = [super initWithIndex:from ToIndex:to Text:nil]) != nil) {
325 [self replaceProgNam:DEFAULT_PROGRAM_NAME FromIndex:anIndex ToIndex:anIndex Text:theText];
328 - (void) replaceFromIndex:(NSInteger)from ToIndex:(NSInteger)to Text:(NSString *)theText
330 [self replaceProgNam:DEFAULT_PROGRAM_NAME FromIndex:from ToIndex:to Text:theText];
[all …]
/external/v8/src/builtins/
Dbuiltins-dataview.cc48 Object::ToIndex(isolate, byte_offset, MessageTemplate::kInvalidOffset)); in BUILTIN()
76 Object::ToIndex(isolate, byte_length, in BUILTIN()
Dbuiltins-bigint.cc49 Object::ToIndex(isolate, bits_obj, MessageTemplate::kInvalidIndex)); in BUILTIN()
67 Object::ToIndex(isolate, bits_obj, MessageTemplate::kInvalidIndex)); in BUILTIN()
Dtyped-array-createtypedarray.tq121 const length: uintptr = ToIndex(lengthObj) otherwise RangeError;
210 // 6. Let offset be ? ToIndex(byteOffset).
211 const offset: uintptr = ToIndex(byteOffset) otherwise IfInvalidOffset;
219 // a. Let newLength be ? ToIndex(length).
220 let newLength: uintptr = ToIndex(length) otherwise IfInvalidLength;
Dbuiltins-sharedarraybuffer.cc97 Object::ToIndex(isolate, request_index, in ValidateAtomicAccess()
Ddata-view.tq366 // 3. Let getIndex be ? ToIndex(requestIndex).
367 const getIndex: uintptr = ToIndex(requestIndex) otherwise RangeError;
652 // 3. Let getIndex be ? ToIndex(requestIndex).
653 const getIndex: uintptr = ToIndex(requestIndex) otherwise RangeError;
Dbuiltins-sharedarraybuffer-gen.cc116 TNode<UintPtrT> index_uintptr = ToIndex(context, index, &range_error); in ValidateAtomicAccess()
Dbase.tq1345 // Unlike ToIndex from the spec this implementation triggers IfRangeError if
1350 transitioning macro ToIndex(implicit context: Context)(value: JSAny):
/external/antlr/tool/src/main/resources/org/antlr/codegen/templates/ObjC/
DST4ObjC.stg166 ToIndex:[[input getTreeAdaptor] getTokenStopIndex:retval.start]
171 ToIndex:[input LT:-1] getTokenIndex]
DST.stg289 ToIndex:[[input getTreeAdaptor] getTokenStopIndex:retval.start]
294 ToIndex:[[input LT:-1] getTokenIndex]
/external/v8/src/objects/
Dobjects.h424 V8_WARN_UNUSED_RESULT static inline MaybeHandle<Object> ToIndex(
Dobjects-inl.h614 MaybeHandle<Object> Object::ToIndex(Isolate* isolate, Handle<Object> input, in ToIndex() function
/external/clang/lib/Sema/
DSemaDeclCXX.cpp10039 SubscriptBuilder ToIndex(To, IterationVarRefRVal); in buildSingleCopyAssignRecursively() local
10044 ToIndex, *FromIndex, CopyingBaseSubobject, in buildSingleCopyAssignRecursively()