OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Names
(Results
1 - 9
of
9
) sorted by null
/external/clang/lib/Basic/
TargetInfo.cpp
199
const char * const *
Names
;
205
getGCCRegNames(
Names
, NumNames);
214
// Check register
names
.
216
if (Name ==
Names
[i])
220
// Check any additional
names
that we have.
225
for (unsigned j = 0; j < llvm::array_lengthof(AddlNames[i].
Names
); j++) {
226
if (!AddlNames[i].
Names
[j])
229
// the bounds of the register
names
from above.
230
if (AddlNames[i].
Names
[j] == Name && AddlNames[i].RegNum < NumNames)
258
const char * const *
Names
;
[
all
...]
/external/clang/lib/Sema/
SemaTemplateVariadic.cpp
163
llvm::SmallVector<IdentifierInfo *, 4>
Names
;
175
Names
.push_back(Name);
182
=
Names
.size() == 0? S.Diag(Loc, diag::err_unexpanded_parameter_pack_0)
184
:
Names
.size() == 1? S.Diag(Loc, diag::err_unexpanded_parameter_pack_1)
185
<< (int)UPPC <<
Names
[0]
186
:
Names
.size() == 2? S.Diag(Loc, diag::err_unexpanded_parameter_pack_2)
187
<< (int)UPPC <<
Names
[0] <<
Names
[1]
189
<< (int)UPPC <<
Names
[0] <<
Names
[1]
[
all
...]
TreeTransform.h
90
/// default locations and entity
names
used for type-checking
393
/// and destructor
names
and then (if needed) rebuilds the declaration name.
[
all
...]
/external/chromium/third_party/libjingle/source/talk/base/
httpcommon.cc
72
static const char**
Names
;
75
static inline const char* Name(E val) { return
Names
[val]; }
78
if (!find_string(index, name,
Names
, Size))
95
template<> const char** Enum<e>::
Names
= n; \
/external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp
377
// Give section
names
unique ID's.
387
// Give section
names
unique ID's.
396
// Same for GC
names
.
657
SmallVector<StringRef, 4>
Names
;
658
M->getMDKindNames(
Names
);
660
if (
Names
.empty()) return;
664
for (unsigned MDKindID = 0, e =
Names
.size(); MDKindID != e; ++MDKindID) {
666
StringRef KName =
Names
[MDKindID];
[
all
...]
/frameworks/compile/slang/BitWriter_2_9/
BitcodeWriter.cpp
454
// Give section
names
unique ID's.
464
// Give section
names
unique ID's.
473
// Same for GC
names
.
734
SmallVector<StringRef, 4>
Names
;
735
M->getMDKindNames(
Names
);
737
if (
Names
.empty()) return;
741
for (unsigned MDKindID = 0, e =
Names
.size(); MDKindID != e; ++MDKindID) {
743
StringRef KName =
Names
[MDKindID];
[
all
...]
/external/clang/include/clang/Basic/
TargetInfo.h
413
const char * const
Names
[5];
584
virtual void getGCCRegNames(const char * const *&
Names
,
/external/clang/lib/Serialization/
ASTReaderStmt.cpp
268
llvm::SmallVector<IdentifierInfo *, 16>
Names
;
272
Names
.push_back(Reader.GetIdentifierInfo(Record, Idx));
283
Names
.data(), Constraints.data(),
[
all
...]
/external/clang/include/clang/AST/
Stmt.h
[
all
...]
Completed in 122 milliseconds