OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:startsWith
(Results
1 - 25
of
30
) sorted by relevancy
1
2
/src/external/bsd/wpa/dist/wpa_supplicant/wpa_gui-qt4/
scanresults.cpp
75
if (bss.isEmpty() || bss.
startsWith
("FAIL"))
87
if ((*it).
startsWith
("bssid="))
89
else if ((*it).
startsWith
("freq="))
91
else if ((*it).
startsWith
("level="))
93
else if ((*it).
startsWith
("flags="))
95
else if ((*it).
startsWith
("ssid="))
peers.cpp
415
if ((*it).
startsWith
("wpsDeviceName="))
417
else if ((*it).
startsWith
("p2p_device_name="))
530
if (str.
startsWith
("dev_name='"))
532
else if (str.
startsWith
("config_methods="))
535
else if (str.
startsWith
("dev="))
537
else if (str.
startsWith
("dev_type=") && dev_type.isEmpty())
588
if (bss.isEmpty() || bss.
startsWith
("FAIL"))
601
if ((*it).
startsWith
("bssid="))
603
else if ((*it).
startsWith
("id="))
605
else if ((*it).
startsWith
("flags=")
[
all
...]
wpagui.cpp
1100
else if (!cmd.
startsWith
("all")) {
1119
else if (!cmd.
startsWith
("all")) {
1209
else if (!cmd.
startsWith
("all")) {
1486
if ((*it).
startsWith
("bssid="))
1488
else if ((*it).
startsWith
("ssid="))
1490
else if ((*it).
startsWith
("pairwise_cipher="))
1492
else if ((*it).
startsWith
("group_cipher="))
1494
else if ((*it).
startsWith
("key_mgmt="))
1496
else if ((*it).
startsWith
("wpa_state="))
1498
else if ((*it).
startsWith
("ip_address=")
[
all
...]
networkconfig.cpp
315
if (inner.
startsWith
("EAP-"))
320
if (inner.
startsWith
("EAP-"))
329
if (inner.
startsWith
("EAP-")) {
/src/external/gpl3/gcc.old/dist/gcc/d/dmd/root/
string.d
263
bool
startsWith
(scope const(char)* p, scope const(char)[] needle)
283
assert(ptr.
startsWith
(""));
284
assert(ptr.
startsWith
("1"));
285
assert(ptr.
startsWith
("12"));
286
assert(ptr.
startsWith
("123"));
287
assert(!ptr.
startsWith
("1234"));
/src/external/apache2/llvm/dist/llvm/include/llvm/Demangle/
StringView.h
83
if (!
startsWith
(C))
90
if (!
startsWith
(S))
96
bool
startsWith
(char C) const { return !empty() && *begin() == C; }
98
bool
startsWith
(StringView Str) const {
ItaniumDemangle.h
2436
if (StringView(First, Last).
startsWith
(S)) {
2776
if (Name.
startsWith
("_GLOBAL__N"))
3687
if (Qual.
startsWith
("objcproto")) {
/src/external/apache2/llvm/dist/clang/lib/Format/
TokenAnnotator.h
86
template <typename... Ts> bool
startsWith
(Ts... Tokens) const {
117
return
startsWith
(tok::kw_namespace) ||
startsWith
(TT_NamespaceMacro) ||
118
startsWith
(tok::kw_inline, tok::kw_namespace) ||
119
startsWith
(tok::kw_export, tok::kw_namespace);
TokenAnnotator.cpp
166
!Line.
startsWith
(tok::kw_template))
234
(Line.
startsWith
(Keywords.kw_type, tok::identifier) ||
235
Line.
startsWith
(tok::kw_export, Keywords.kw_type,
540
bool InsideInlineASM = Line.
startsWith
(tok::kw_asm);
874
Line.
startsWith
(TT_ObjCMethodSpecifier)) {
880
Line.
startsWith
(TT_ObjCMethodSpecifier) &&
979
!Contexts.back().IsExpression && !Line.
startsWith
(TT_ObjCProperty) &&
1096
(Contexts.size() == 1 || Line.
startsWith
(tok::kw_for))) {
1156
!CurrentToken->TokenText.
startswith
("//"))
1335
if (Line.
startsWith
(TT_ObjCMethodSpecifier))
[
all
...]
UsingDeclarationsSorter.cpp
194
!AnnotatedLines[I]->
startsWith
(tok::kw_using) || FirstTok->Finalized) {
UnwrappedLineFormatter.cpp
25
return Line.
startsWith
(tok::kw_extern) && Next && Next->isStringLiteral() &&
147
if (!Line->
startsWith
(tok::r_brace))
498
if (I + 2 != E && Line.
startsWith
(tok::kw_if) &&
587
Line.
startsWith
(tok::kw_if) &&
592
Line.
startsWith
(tok::kw_if) &&
1141
PreviousLine && PreviousLine->
startsWith
(tok::r_brace);
1145
!TheLine.
startsWith
(tok::r_brace));
NamespaceEndCommentsFixer.cpp
173
if (!Line->Affected || Line->InPPDirective || !Line->
startsWith
(tok::r_brace))
/src/external/gpl3/gcc.old/dist/libphobos/src/std/algorithm/
searching.d
86
$(T2
startsWith
,
87
`
startsWith
("hello, world", "hello")` returns `true`.)
771
`
startsWith
!pred(haystack, needles)` is `true`. If
772
`
startsWith
!pred(haystack, needles)` is not `true` for any element in
804
//Default case, slower route doing
startsWith
iteration
808
//forwarding to
startsWith
. This avoids making useless saves to
816
if (
startsWith
!pred(haystack.save, needles[0].save.dropOne()))
851
if (
startsWith
!pred(haystack.save, t.expand))
1012
The reciprocal of `
startsWith
`.
1125
return
startsWith
!pred(retro(doesThisEnd), retro(withThis))
[
all
...]
/src/external/gpl3/gcc.old/dist/libphobos/src/std/
xml.d
438
import std.algorithm.searching :
startsWith
;
456
if (
startsWith
(s[i..$],"&#"))
475
else if (
startsWith
(s[i..$],"&" )) { buffer ~= '&'; i += 4; }
476
else if (
startsWith
(s[i..$],""")) { buffer ~= '"'; i += 5; }
477
else if (
startsWith
(s[i..$],"'")) { buffer ~= '\''; i += 5; }
478
else if (
startsWith
(s[i..$],"<" )) { buffer ~= '<'; i += 3; }
479
else if (
startsWith
(s[i..$],">" )) { buffer ~= '>'; i += 3; }
2015
import std.algorithm.searching :
startsWith
;
2025
if (
startsWith
(*s,"<!--"))
2032
else if (
startsWith
(*s,"<![CDATA[")
[
all
...]
getopt.d
982
import std.algorithm.searching :
startsWith
;
996
assert(goe.msg.
startsWith
("Could not find"));
bigint.d
73
import std.algorithm.searching :
startsWith
;
96
if (s.save.
startsWith
("0x".byChar) ||
97
s.save.
startsWith
("0X".byChar))
string.d
88
$(REF_SHORT
startsWith
, std,algorithm,searching)
188
public import std.algorithm.searching :
startsWith
, endsWith, count;
3928
import std.algorithm.searching :
startsWith
;
3929
if (str.
startsWith
(delimiter))
6996
import std.algorithm.searching :
startsWith
;
7040
else if (line.
startsWith
(shortestIndent))
file.d
504
import std.algorithm.searching :
startsWith
;
4398
import std.algorithm.searching :
startsWith
;
4404
assert(ex.msg.
startsWith
(format!"Copy from %s to %s"(f, t)));
4967
import std.algorithm.searching :
startsWith
;
5006
assert(name.
startsWith
(testdir));
/src/external/gpl3/gcc.old/dist/libphobos/src/std/windows/
syserror.d
98
assert(msg.
startsWith
(`Could not fetch error string for WinAPI code 4294967295: `));
215
import std.algorithm.searching :
startsWith
, endsWith;
222
assert(e.msg.
startsWith
("DeleteFile: "));
registry.d
84
version (StdUnittest) import std.string :
startsWith
, endsWith;
93
assert(e.msg.
startsWith
(message));
105
assert(e.msg.
startsWith
(message));
150
assert(e.msg.
startsWith
(message));
160
assert(e.msg.
startsWith
(message));
/src/external/apache2/llvm/dist/llvm/lib/Demangle/
MicrosoftDemangle.cpp
195
if (S.
startsWith
("$$Q")) // foo &&
212
return S.
startsWith
("$$A8@@") || S.
startsWith
("$$A6");
485
assert(MangledName.
startsWith
('?'));
755
assert(MangledName.
startsWith
("??@"));
787
assert(MangledName.
startsWith
('.'));
803
if (MangledName.
startsWith
('.'))
806
if (MangledName.
startsWith
("??@"))
810
if (!MangledName.
startsWith
('?')) {
984
assert(MangledName.
startsWith
("?$"))
[
all
...]
RustDemangle.cpp
35
if (!Mangled.
startsWith
("_R")) {
/src/external/gpl3/gcc.old/dist/libphobos/src/std/format/
spec.d
44
import std.algorithm.searching :
startsWith
;
396
if (tmp.
startsWith
('$'))
402
else if (tmp.
startsWith
(':'))
407
if (tmp.
startsWith
('$'))
/src/external/gpl3/gcc.old/dist/libphobos/src/std/net/
curl.d
401
import std.algorithm.searching :
startsWith
;
404
return
startsWith
(url.toLower(), "ftp://", "ftps://", "ftp.") != 0;
2423
import std.algorithm.searching :
startsWith
;
2440
if (header.
startsWith
("HTTP/"))
2633
import std.algorithm.searching :
startsWith
;
2635
if (!
startsWith
(url.toLower(), "http://", "https://"))
3418
import std.algorithm.searching :
startsWith
;
3421
if (!
startsWith
(url.toLower(), "ftp://", "ftps://"))
3825
import std.algorithm.searching :
startsWith
;
3831
if (lowered.
startsWith
("smtps://")
[
all
...]
/src/external/gpl3/gcc.old/dist/libphobos/src/std/datetime/
timezone.d
1555
import std.algorithm.searching :
startsWith
;
1560
auto whichSign = isoString.
startsWith
('-', '+');
1709
import std.algorithm.searching :
startsWith
;
1716
auto whichSign = isoExtString.
startsWith
('-', '+');
1893
import std.algorithm.searching : countUntil, canFind,
startsWith
;
2449
index.byKey.filter!(a => a.
startsWith
(subName)).copy(timezones);
2465
!tzName.
startsWith
(subName) ||
Completed in 117 milliseconds
1
2
Indexes created Wed Aug 19 00:25:20 UTC 2026