Home
last modified time | relevance | path

Searched refs:LookAhead (Results 1 – 25 of 308) sorted by relevance

12345678910>>...13

/dports/math/hs-Agda/Agda-2.6.2/src/full/Agda/Syntax/Parser/
H A DLookAhead.hs10 LookAhead
34 newtype LookAhead a = type
55 getInput = LookAhead get
60 setInput = LookAhead . put
69 nextChar :: LookAhead Char
80 sync :: LookAhead ()
87 rollback :: LookAhead ()
94 eatNextChar :: LookAhead Char
106 match :: [(String, LookAhead a)] -> LookAhead a -> LookAhead a
115 match' :: Char -> [(String, LookAhead a)] -> LookAhead a -> LookAhead a
[all …]
H A DStringLiterals.hs16 import Agda.Syntax.Parser.LookAhead
46 litError :: String -> LookAhead a
73 lexString :: Char -> String -> LookAhead String
98 lexStringGap :: Char -> String -> LookAhead String
107 lexChar :: LookAhead Char
115 lexEscape :: LookAhead Char
138 readNum :: (Char -> Bool) -> Int -> (Char -> Int) -> LookAhead Char
146 readNumAcc :: (Char -> Bool) -> Int -> (Char -> Int) -> Int -> LookAhead Char
H A DComments.hs18 import Agda.Syntax.Parser.LookAhead
37 let err :: forall a. String -> LookAhead a
58 let err :: forall a. String -> LookAhead a
68 skipBlock :: String -> String -> LookAhead ()
/dports/editors/libreoffice/libreoffice-7.2.6.2/lotuswordpro/source/filter/
H A Dtocread.cxx205 BenByte LookAhead = GetCode(); in ReadTOC() local
209 while (LookAhead == BEN_NEW_OBJECT) in ReadTOC()
233 LookAhead = GetCode(); in ReadTOC()
239 LookAhead = GetCode(); in ReadTOC()
246 LookAhead = GetCode(); in ReadTOC()
265 LookAhead = GetCode(); in ReadTOC()
334 LookAhead = GetCode(); in ReadTOC()
358 &LookAhead)) != BenErr_OK) in ReadTOC()
361 } while (LookAhead == BEN_NEW_TYPE); in ReadTOC()
362 } while (LookAhead == BEN_NEW_PROPERTY); in ReadTOC()
[all …]
/dports/editors/libreoffice6/libreoffice-6.4.7.2/lotuswordpro/source/filter/
H A Dtocread.cxx202 BenByte LookAhead = GetCode(); in ReadTOC() local
206 while (LookAhead == BEN_NEW_OBJECT) in ReadTOC()
230 LookAhead = GetCode(); in ReadTOC()
236 LookAhead = GetCode(); in ReadTOC()
243 LookAhead = GetCode(); in ReadTOC()
262 LookAhead = GetCode(); in ReadTOC()
331 LookAhead = GetCode(); in ReadTOC()
355 &LookAhead)) != BenErr_OK) in ReadTOC()
358 } while (LookAhead == BEN_NEW_TYPE); in ReadTOC()
359 } while (LookAhead == BEN_NEW_PROPERTY); in ReadTOC()
[all …]
/dports/misc/lv/lv-f7ba677/src/
H A Dre.c155 LookAhead( ic ); in ReChar()
165 LookAhead( ic ); in ReChar()
196 LookAhead( ic ); in ReCharset1()
200 LookAhead( ic ); in ReCharset1()
256 LookAhead( ic ); in ReCharset()
274 LookAhead( ic ); in ReTerm()
358 LookAhead( ic ); in ReExp2()
407 LookAhead( ic ); in ReExp1()
418 LookAhead( ic ); in ReExp1()
463 LookAhead( ic ); in ReRegexp()
[all …]
/dports/editors/cudatext/CudaText-1.151.0/atsynedit/atsynedit/
H A Datstringproc_utf8decode.pas34 LookAhead: SizeUInt;
69 for LookAhead := 1 to CharLen-1 do
71 if ((byte(Source[InputUTF8+LookAhead]) and $80)<>$80) or
72 ((byte(Source[InputUTF8+LookAhead]) and $40)<>$00) then
75 CharLen:= LookAhead;
/dports/devel/py-keystone-engine/keystone-engine-0.9.1-3/src/llvm/lib/MC/MCParser/
H A DAsmLexer.cpp224 const char *LookAhead = CurPtr; in doLookAhead() local
226 if (isdigit(*LookAhead)) { in doLookAhead()
227 ++LookAhead; in doLookAhead()
228 } else if (isxdigit(*LookAhead)) { in doLookAhead()
230 FirstHex = LookAhead; in doLookAhead()
231 ++LookAhead; in doLookAhead()
236 bool isHex = *LookAhead == 'h' || *LookAhead == 'H'; in doLookAhead()
237 CurPtr = isHex || !FirstHex ? LookAhead : FirstHex; in doLookAhead()
/dports/cad/abc/abc-a4518e6f833885c905964f1233d11e5b941ec24c/src/proof/cec/
H A DcecSplit.c226 int Gia_SplitCofVar( Gia_Man_t * p, int LookAhead, int * pnFanouts, int * pnCost )
231 if ( LookAhead == 1 )
234 LookAhead = Abc_MinInt( LookAhead, Gia_ManPiNum(p) );
235 for ( i = 0; i < LookAhead; i++ )
406 int Cec_GiaSplitTest2( Gia_Man_t * p, int nProcs, int nTimeOut, int nIterMax, int LookAhead, int fV…
443 int nFanouts, Cost, iVar = Gia_SplitCofVar( pLast, LookAhead, &nFanouts, &Cost );
572 int Cec_GiaSplitTestInt( Gia_Man_t * p, int nProcs, int nTimeOut, int nIterMax, int LookAhead, int …
589 …return Cec_GiaSplitTest2( p, nProcs, nTimeOut, nIterMax, LookAhead, fVerbose, fVeryVerbose, fSilen…
658 … int nFanouts, Cost, iVar = Gia_SplitCofVar( pLast, LookAhead, &nFanouts, &Cost );
740 int Cec_GiaSplitTest( Gia_Man_t * p, int nProcs, int nTimeOut, int nIterMax, int LookAhead, int fVe…
[all …]
/dports/lang/ghc/ghc-8.10.7/libraries/binary/tests/
H A DAction.hs31 | LookAhead [Action] constructor
56 LookAhead a -> Actions a : [ LookAhead a' | a' <- shrink a ]
90 LookAhead xs'
95 | otherwise -> max_len (LookAhead xs' : xs)
98 | otherwise -> max_len (LookAhead xs' : xs)
257 LookAhead xs'
262 | otherwise -> go inp lbls (LookAhead xs' : xs)
265 | otherwise -> go inp lbls (LookAhead xs' : xs)
321 LookAhead a -> do
365 (:) (LookAhead t) <$> go inTry (s-1)
/dports/lang/elm/compiler-0.19.1/_cabal_deps/binary-0.8.8.0/tests/
H A DAction.hs31 | LookAhead [Action] constructor
56 LookAhead a -> Actions a : [ LookAhead a' | a' <- shrink a ]
90 LookAhead xs'
95 | otherwise -> max_len (LookAhead xs' : xs)
98 | otherwise -> max_len (LookAhead xs' : xs)
257 LookAhead xs'
262 | otherwise -> go inp lbls (LookAhead xs' : xs)
265 | otherwise -> go inp lbls (LookAhead xs' : xs)
321 LookAhead a -> do
365 (:) (LookAhead t) <$> go inTry (s-1)
/dports/devel/llvm10/llvm-10.0.1.src/lib/MC/MCParser/
H A DAsmLexer.cpp250 const char *LookAhead = CurPtr; in doHexLookAhead() local
252 if (isDigit(*LookAhead)) { in doHexLookAhead()
253 ++LookAhead; in doHexLookAhead()
256 FirstNonDec = LookAhead; in doHexLookAhead()
259 if (LexHex && isHexDigit(*LookAhead)) in doHexLookAhead()
260 ++LookAhead; in doHexLookAhead()
265 bool isHex = LexHex && (*LookAhead == 'h' || *LookAhead == 'H'); in doHexLookAhead()
266 CurPtr = isHex || !FirstNonDec ? LookAhead : FirstNonDec; in doHexLookAhead()
/dports/devel/llvm11/llvm-11.0.1.src/lib/MC/MCParser/
H A DAsmLexer.cpp252 const char *LookAhead = CurPtr; in doHexLookAhead() local
254 if (isDigit(*LookAhead)) { in doHexLookAhead()
255 ++LookAhead; in doHexLookAhead()
258 FirstNonDec = LookAhead; in doHexLookAhead()
261 if (LexHex && isHexDigit(*LookAhead)) in doHexLookAhead()
262 ++LookAhead; in doHexLookAhead()
267 bool isHex = LexHex && (*LookAhead == 'h' || *LookAhead == 'H'); in doHexLookAhead()
268 CurPtr = isHex || !FirstNonDec ? LookAhead : FirstNonDec; in doHexLookAhead()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/swiftshader/third_party/llvm-10.0/llvm/lib/MC/MCParser/
H A DAsmLexer.cpp250 const char *LookAhead = CurPtr; in doHexLookAhead() local
252 if (isDigit(*LookAhead)) { in doHexLookAhead()
253 ++LookAhead; in doHexLookAhead()
256 FirstNonDec = LookAhead; in doHexLookAhead()
259 if (LexHex && isHexDigit(*LookAhead)) in doHexLookAhead()
260 ++LookAhead; in doHexLookAhead()
265 bool isHex = LexHex && (*LookAhead == 'h' || *LookAhead == 'H'); in doHexLookAhead()
266 CurPtr = isHex || !FirstNonDec ? LookAhead : FirstNonDec; in doHexLookAhead()
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/llvm/lib/MC/MCParser/
H A DAsmLexer.cpp250 const char *LookAhead = CurPtr; in doHexLookAhead() local
252 if (isDigit(*LookAhead)) { in doHexLookAhead()
253 ++LookAhead; in doHexLookAhead()
256 FirstNonDec = LookAhead; in doHexLookAhead()
259 if (LexHex && isHexDigit(*LookAhead)) in doHexLookAhead()
260 ++LookAhead; in doHexLookAhead()
265 bool isHex = LexHex && (*LookAhead == 'h' || *LookAhead == 'H'); in doHexLookAhead()
266 CurPtr = isHex || !FirstNonDec ? LookAhead : FirstNonDec; in doHexLookAhead()
/dports/devel/llvm90/llvm-9.0.1.src/lib/MC/MCParser/
H A DAsmLexer.cpp250 const char *LookAhead = CurPtr; in doHexLookAhead() local
252 if (isDigit(*LookAhead)) { in doHexLookAhead()
253 ++LookAhead; in doHexLookAhead()
256 FirstNonDec = LookAhead; in doHexLookAhead()
259 if (LexHex && isHexDigit(*LookAhead)) in doHexLookAhead()
260 ++LookAhead; in doHexLookAhead()
265 bool isHex = LexHex && (*LookAhead == 'h' || *LookAhead == 'H'); in doHexLookAhead()
266 CurPtr = isHex || !FirstNonDec ? LookAhead : FirstNonDec; in doHexLookAhead()
/dports/devel/llvm80/llvm-8.0.1.src/lib/MC/MCParser/
H A DAsmLexer.cpp249 const char *LookAhead = CurPtr; in doHexLookAhead() local
251 if (isDigit(*LookAhead)) { in doHexLookAhead()
252 ++LookAhead; in doHexLookAhead()
255 FirstNonDec = LookAhead; in doHexLookAhead()
258 if (LexHex && isHexDigit(*LookAhead)) in doHexLookAhead()
259 ++LookAhead; in doHexLookAhead()
264 bool isHex = LexHex && (*LookAhead == 'h' || *LookAhead == 'H'); in doHexLookAhead()
265 CurPtr = isHex || !FirstNonDec ? LookAhead : FirstNonDec; in doHexLookAhead()
/dports/devel/llvm70/llvm-7.0.1.src/lib/MC/MCParser/
H A DAsmLexer.cpp248 const char *LookAhead = CurPtr; in doLookAhead() local
250 if (isDigit(*LookAhead)) { in doLookAhead()
251 ++LookAhead; in doLookAhead()
252 } else if (isHexDigit(*LookAhead)) { in doLookAhead()
254 FirstHex = LookAhead; in doLookAhead()
255 ++LookAhead; in doLookAhead()
260 bool isHex = *LookAhead == 'h' || *LookAhead == 'H'; in doLookAhead()
261 CurPtr = isHex || !FirstHex ? LookAhead : FirstHex; in doLookAhead()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/llvm/lib/MC/MCParser/
H A DAsmLexer.cpp259 const char *LookAhead = CurPtr; in doHexLookAhead() local
261 if (isDigit(*LookAhead)) { in doHexLookAhead()
262 ++LookAhead; in doHexLookAhead()
265 FirstNonDec = LookAhead; in doHexLookAhead()
268 if (LexHex && isHexDigit(*LookAhead)) in doHexLookAhead()
269 ++LookAhead; in doHexLookAhead()
274 bool isHex = LexHex && (*LookAhead == 'h' || *LookAhead == 'H'); in doHexLookAhead()
275 CurPtr = isHex || !FirstNonDec ? LookAhead : FirstNonDec; in doHexLookAhead()
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/llvm/lib/MC/MCParser/
H A DAsmLexer.cpp252 const char *LookAhead = CurPtr; in doHexLookAhead() local
254 if (isDigit(*LookAhead)) { in doHexLookAhead()
255 ++LookAhead; in doHexLookAhead()
258 FirstNonDec = LookAhead; in doHexLookAhead()
261 if (LexHex && isHexDigit(*LookAhead)) in doHexLookAhead()
262 ++LookAhead; in doHexLookAhead()
267 bool isHex = LexHex && (*LookAhead == 'h' || *LookAhead == 'H'); in doHexLookAhead()
268 CurPtr = isHex || !FirstNonDec ? LookAhead : FirstNonDec; in doHexLookAhead()
/dports/devel/llvm12/llvm-project-12.0.1.src/llvm/lib/MC/MCParser/
H A DAsmLexer.cpp259 const char *LookAhead = CurPtr; in doHexLookAhead() local
261 if (isDigit(*LookAhead)) { in doHexLookAhead()
262 ++LookAhead; in doHexLookAhead()
265 FirstNonDec = LookAhead; in doHexLookAhead()
268 if (LexHex && isHexDigit(*LookAhead)) in doHexLookAhead()
269 ++LookAhead; in doHexLookAhead()
274 bool isHex = LexHex && (*LookAhead == 'h' || *LookAhead == 'H'); in doHexLookAhead()
275 CurPtr = isHex || !FirstNonDec ? LookAhead : FirstNonDec; in doHexLookAhead()
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/llvm/lib/MC/MCParser/
H A DAsmLexer.cpp259 const char *LookAhead = CurPtr; in doHexLookAhead() local
261 if (isDigit(*LookAhead)) { in doHexLookAhead()
262 ++LookAhead; in doHexLookAhead()
265 FirstNonDec = LookAhead; in doHexLookAhead()
268 if (LexHex && isHexDigit(*LookAhead)) in doHexLookAhead()
269 ++LookAhead; in doHexLookAhead()
274 bool isHex = LexHex && (*LookAhead == 'h' || *LookAhead == 'H'); in doHexLookAhead()
275 CurPtr = isHex || !FirstNonDec ? LookAhead : FirstNonDec; in doHexLookAhead()
/dports/multimedia/obs-studio/obs-studio-27.1.3/plugins/obs-ffmpeg/data/locale/
H A Dsr-SP.ini20 NVENC.LookAhead="Гледање унапред" key
21 NVENC.LookAhead.ToolTip="Укључује динамичке Б-фрејмове..\n\n Ако је искључено, енкодер ће увек кори…
/dports/graphics/llvm-mesa/llvm-13.0.1.src/lib/MC/MCParser/
H A DAsmLexer.cpp267 const char *LookAhead = CurPtr; in doHexLookAhead() local
269 if (isDigit(*LookAhead)) { in doHexLookAhead()
270 ++LookAhead; in doHexLookAhead()
273 FirstNonDec = LookAhead; in doHexLookAhead()
276 if (LexHex && isHexDigit(*LookAhead)) in doHexLookAhead()
277 ++LookAhead; in doHexLookAhead()
282 bool isHex = LexHex && (*LookAhead == 'h' || *LookAhead == 'H'); in doHexLookAhead()
283 CurPtr = isHex || !FirstNonDec ? LookAhead : FirstNonDec; in doHexLookAhead()
/dports/lang/rust/rustc-1.58.1-src/src/llvm-project/llvm/lib/MC/MCParser/
H A DAsmLexer.cpp267 const char *LookAhead = CurPtr; in doHexLookAhead() local
269 if (isDigit(*LookAhead)) { in doHexLookAhead()
270 ++LookAhead; in doHexLookAhead()
273 FirstNonDec = LookAhead; in doHexLookAhead()
276 if (LexHex && isHexDigit(*LookAhead)) in doHexLookAhead()
277 ++LookAhead; in doHexLookAhead()
282 bool isHex = LexHex && (*LookAhead == 'h' || *LookAhead == 'H'); in doHexLookAhead()
283 CurPtr = isHex || !FirstNonDec ? LookAhead : FirstNonDec; in doHexLookAhead()

12345678910>>...13