OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Suffix
(Results
1 - 12
of
12
) sorted by null
/external/llvm/lib/TableGen/
TableGenBackend.cpp
24
StringRef
Suffix
) {
26
assert((MAX_LINE_LEN - Prefix.str().size() -
Suffix
.size() > 0) &&
29
const size_t e = MAX_LINE_LEN -
Suffix
.size();
32
OS <<
Suffix
<< '\n';
41
StringRef
Suffix
(" *|");
43
size_t PSLen =
Suffix
.size() + Prefix.size();
47
printLine(OS, Prefix + Desc.slice(Pos, PosE), ' ',
Suffix
);
50
printLine(OS, Prefix, ' ',
Suffix
);
52
Suffix
);
53
printLine(OS, Prefix, ' ',
Suffix
);
[
all
...]
/external/chromium_org/net/http/
http_byte_range.cc
44
HttpByteRange HttpByteRange::
Suffix
(int64 suffix_length) {
/external/clang/lib/Lex/
HeaderMap.cpp
41
uint32_t
Suffix
; // Offset (into strings) of value
suffix
.
149
Result.
Suffix
= 0;
156
Result.
Suffix
= getEndianAdjustedWord(BucketPtr->
Suffix
);
195
const char *
Suffix
= getString(B.
Suffix
);
196
fprintf(stderr, " %d. %s -> '%s' '%s'\n", i, Key, Prefix,
Suffix
);
225
DestPath += getString(B.
Suffix
);
/external/giflib/
gif_lib_private.h
51
GifByteType
Suffix
[LZ_MAX_CODE + 1]; /* So we can trace the codes. */
dgif_lib.c
784
GifByteType *Stack, *
Suffix
;
790
Suffix
= Private->
Suffix
;
833
* until the prefix is a pixel, while pushing the
suffix
839
* prefix code is last code and the
suffix
char is
843
Suffix
[Private->RunningCode - 2] =
860
Stack[StackPtr++] =
Suffix
[CrntPrefix];
880
* prefix code is last code and the
suffix
char is
882
Suffix
[Private->RunningCode - 2] =
885
Suffix
[Private->RunningCode - 2]
[
all
...]
/external/clang/lib/Driver/
ToolChain.cpp
254
StringRef
Suffix
=
256
bool ThumbDefault =
Suffix
.startswith("v6m") ||
257
(
Suffix
.startswith("v7") && getTriple().isOSDarwin());
264
Triple.setArchName(ArchName +
Suffix
.str());
Driver.cpp
536
// Append the new filename with correct preprocessed
suffix
.
[
all
...]
/external/clang/lib/Frontend/
InitHeaderSearch.cpp
655
const char *
Suffix
;
657
Suffix
= "";
659
Suffix
= " (framework directory)";
662
Suffix
= " (headermap)";
664
llvm::errs() << " " << Name <<
Suffix
<< "\n";
/external/clang/tools/driver/
driver.cpp
208
// "x86_64-linux-clang" as interpreted as
suffix
"clang" with
212
const char *
Suffix
;
237
if (ProgNameRef.endswith(suffixes[i].
Suffix
)) {
250
ProgNameRef.size() - strlen(suffixes[i].
Suffix
));
/external/lzma/C/
Ppmd7.h
37
CPpmd7_Context_Ref
Suffix
;
90
p->NS2BSIndx[Ppmd7_GetContext(p, p->MinContext->
Suffix
)->NumStats - 1] + \
/external/llvm/tools/bugpoint/
ToolRunner.cpp
477
const char *
Suffix
= (UseIntegratedAssembler ? ".llc.o" : ".llc.s");
481
sys::fs::createUniqueFile(Bitcode + "-%%%%%%%" +
Suffix
, UniqueFile);
[
all
...]
/external/clang/utils/TableGen/
ClangAttrEmitter.cpp
773
llvm::SmallString<8>
Suffix
;
775
// of an attribute without considering prefix and
suffix
.
782
Suffix
= "))";
785
Suffix
= "]]";
793
Suffix
= ")";
796
Suffix
= "";
819
OS <<
Suffix
.str() + "\";\n";
[
all
...]
Completed in 1183 milliseconds