HomeSort by: relevance | last modified time | path
    Searched refs:Id (Results 1 - 25 of 345) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/
id.h 8 * https://github.com/dlang/dmd/blob/master/src/dmd/id.h
13 struct Id
mustuse.d 42 import dmd.id : Id;
52 Id.udaMustUse.toChars(), e.type.toPrettyChars(true));
71 import dmd.id : Id;
81 Id.udaMustUse.toChars());
87 Id.udaMustUse.toChars(), sym.kind());
107 auto id = fd.ident;
108 if (id && isAssignmentOpId(id))
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Tooling/ASTDiff/
ASTDiffInternal.h 30 int Id;
32 NodeId() : Id(InvalidNodeId) {}
33 NodeId(int Id) : Id(Id) {}
35 operator int() const { return Id; }
36 NodeId &operator++() { return ++Id, *this; }
37 NodeId &operator--() { return --Id, *this; }
41 bool isValid() const { return Id != InvalidNodeId; }
42 bool isInvalid() const { return Id == InvalidNodeId;
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Driver/
Types.h 23 enum ID {
25 #define TYPE(NAME, ID, PP_TYPE, TEMP_SUFFIX, ...) TY_##ID,
31 /// getTypeName - Return the name of the type for \p Id.
32 const char *getTypeName(ID Id);
34 /// getPreprocessedType - Get the ID of the type for this input when
37 ID getPreprocessedType(ID Id);
    [all...]
OptionUtils.h 34 llvm::opt::OptSpecifier Id, int Default,
38 llvm::opt::OptSpecifier Id, int Default,
40 return getLastArgIntValue(Args, Id, Default, &Diags, Base);
44 llvm::opt::OptSpecifier Id, uint64_t Default,
49 llvm::opt::OptSpecifier Id,
53 return getLastArgUInt64Value(Args, Id, Default, &Diags, Base);
Phases.h 15 /// ID - Ordered values for successive stages in the
17 enum ID {
32 const char *getPhaseName(ID Id);
  /src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SValVisitor.h 37 #define BASIC_SVAL(Id, Parent) case SVal::Id ## Kind: DISPATCH(Id, Id);
41 #define LOC_SVAL(Id, Parent) \
42 case loc::Id ## Kind: DISPATCH(Loc ## Id, loc :: Id);
48 #define NONLOC_SVAL(Id, Parent) \
49 case nonloc::Id ## Kind: DISPATCH(NonLoc ## Id, nonloc :: Id)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Driver/
Phases.cpp 15 const char *phases::getPhaseName(ID Id) {
16 switch (Id) {
26 llvm_unreachable("Invalid phase id.");
Types.cpp 26 ID PreprocessedType;
31 constexpr PhasesBitSet(std::initializer_list<phases::ID> Phases) {
32 for (auto Id : Phases)
33 Bits |= 1 << Id;
35 bool contains(phases::ID Id) const { return Bits & (1 << Id); }
40 #define TYPE(NAME, ID, PP_TYPE, TEMP_SUFFIX, ...) \
47 static const TypeInfo &getInfo(unsigned id) {
48 assert(id > 0 && id - 1 < numTypes && "Invalid Type ID.")
    [all...]
OptionUtils.cpp 19 IntTy getLastArgIntValueImpl(const ArgList &Args, OptSpecifier Id,
23 if (Arg *A = Args.getLastArg(Id)) {
36 int getLastArgIntValue(const ArgList &Args, OptSpecifier Id, int Default,
38 return getLastArgIntValueImpl<int>(Args, Id, Default, Diags, Base);
41 uint64_t getLastArgUInt64Value(const ArgList &Args, OptSpecifier Id,
44 return getLastArgIntValueImpl<uint64_t>(Args, Id, Default, Diags, Base);
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
OptimizedStructLayout.h 50 OptimizedStructLayoutField(const void *Id, uint64_t Size, Align Alignment,
52 : Offset(FixedOffset), Size(Size), Id(Id), Alignment(Alignment) {
66 const void *Id;
  /src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/
Clustering.h 41 static ClusterId makeValid(size_t Id, bool IsUnstable = false) {
42 return ClusterId(Id, IsUnstable);
44 static ClusterId makeValidUnstable(size_t Id) {
45 return makeValid(Id, /*IsUnstable=*/true);
50 // Compare id's, ignoring the 'unstability' bit.
67 ClusterId(size_t Id, bool IsUnstable = false)
68 : Id_(Id), IsUnstable_(IsUnstable) {}
83 explicit Cluster(const ClusterId &Id) : Id(Id) {}
    [all...]
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
CodeGenHwModes.h 48 const HwMode &getMode(unsigned Id) const {
49 assert(Id != 0 && "Mode id of 0 is reserved for the default mode");
50 return Modes[Id-1];
CTagsEmitter.cpp 30 const std::string *Id;
34 : Id(&Name), Loc(Location) {}
35 int operator<(const Tag &B) const { return *Id < *B.Id; }
41 OS << *Id << "\t" << BufferName << "\t" << LineAndColumn.first << "\n";
  /src/external/apache2/llvm/dist/clang/include/clang/Tooling/Transformer/
Stencil.h 72 /// Generates the source of the expression bound to \p Id, wrapping it in
76 Stencil expression(llvm::StringRef Id);
108 /// Chooses between the two stencil parts, based on whether \p ID is bound in
110 Stencil ifBound(llvm::StringRef Id, Stencil TrueStencil, Stencil FalseStencil);
112 /// Chooses between the two strings, based on whether \p ID is bound in the
114 inline Stencil ifBound(llvm::StringRef Id, llvm::StringRef TrueText,
116 return ifBound(Id, detail::makeStencil(TrueText),
124 /// Produces a human-readable rendering of the node bound to `Id`, suitable for
131 Stencil describe(llvm::StringRef Id);
136 Stencil dPrint(llvm::StringRef Id);
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/DIA/
DIALineNumber.cpp 63 DWORD Id = 0;
64 return (S_OK == LineNumber->get_sourceFileId(&Id)) ? Id : 0;
68 DWORD Id = 0;
69 return (S_OK == LineNumber->get_compilandId(&Id)) ? Id : 0;
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/
MPITypes.h 33 void Profile(llvm::FoldingSetNodeID &Id) const {
34 Id.AddInteger(CurrentState);
  /src/external/gpl2/gettext/dist/gettext-tools/examples/hello-csharp/
hello.cs 19 Process.GetCurrentProcess().Id));
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86MachineFunctionInfo.h 224 void setPreallocatedStackSize(size_t Id, size_t StackSize) {
225 PreallocatedStackSizes[Id] = StackSize;
228 size_t getPreallocatedStackSize(const size_t Id) {
229 assert(PreallocatedStackSizes[Id] != 0 && "stack size not set");
230 return PreallocatedStackSizes[Id];
233 void setPreallocatedArgOffsets(size_t Id, ArrayRef<size_t> AO) {
234 PreallocatedArgOffsets[Id].assign(AO.begin(), AO.end());
237 ArrayRef<size_t> getPreallocatedArgOffsets(const size_t Id) {
238 assert(!PreallocatedArgOffsets[Id].empty() && "arg offsets not set");
239 return PreallocatedArgOffsets[Id];
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/
OrcRemoteTargetClient.h 65 Client.destroyRemoteAllocator(Id);
66 LLVM_DEBUG(dbgs() << "Destroyed remote allocator " << Id << "\n");
81 LLVM_DEBUG(dbgs() << "Allocator " << Id << " allocated code for "
94 LLVM_DEBUG(dbgs() << "Allocator " << Id << " allocated ro-data for "
103 LLVM_DEBUG(dbgs() << "Allocator " << Id << " allocated rw-data for "
115 LLVM_DEBUG(dbgs() << "Allocator " << Id << " reserved:\n");
119 Client.reserveMem(Id, CodeSize, CodeAlign);
130 Client.reserveMem(Id, RODataSize, RODataAlign);
141 Client.reserveMem(Id, RWDataSize, RWDataAlign);
167 LLVM_DEBUG(dbgs() << "Allocator " << Id << " applied mappings:\n")
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Tooling/ASTDiff/
ASTDiff.cpp 72 NodeId Id) const {
74 return TheMapping.getDst(Id);
76 return TheMapping.getSrc(Id);
144 const Node &getNode(NodeId Id) const { return Nodes[Id]; }
145 Node &getMutableNode(NodeId Id) { return Nodes[Id]; }
146 bool isValidNodeId(NodeId Id) const { return Id >= 0 && Id < getSize();
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
RDFDeadCode.cpp 89 if (!LiveNodes.count(RA.Id))
90 WorkQ.push_back(RA.Id);
98 if (!LiveNodes.count(UA.Id))
99 WorkQ.push_back(UA.Id);
102 LiveNodes.insert(TA.Id);
108 if (!LiveNodes.count(DA.Id))
109 WorkQ.push_back(DA.Id);
152 if (LiveNodes.count(DA.Id))
160 if (!LiveNodes.count(RA.Id))
161 DeadNodes.insert(RA.Id);
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Tooling/Transformer/
Stencil.cpp 37 getNode(const ast_matchers::BoundNodes &Nodes, StringRef Id) {
39 auto It = NodesMap.find(Id);
42 "Id not bound: " + Id);
55 explicit DebugPrintNodeData(std::string S) : Id(std::move(S)) {}
56 std::string Id;
59 // Operators that take a single node Id as an argument.
69 // Generic container for stencil operations with a (single) node-id argument.
71 UnaryOperationData(UnaryNodeOperator Op, std::string Id)
72 : Op(Op), Id(std::move(Id)) {
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/Native/
NativeTypePointer.h 24 NativeTypePointer(NativeSession &Session, SymIndexId Id,
28 NativeTypePointer(NativeSession &Session, SymIndexId Id,
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/
NativeTypeBuiltin.cpp 16 NativeTypeBuiltin::NativeTypeBuiltin(NativeSession &PDBSession, SymIndexId Id,
19 : NativeRawSymbol(PDBSession, PDB_SymType::BuiltinType, Id),

Completed in 49 milliseconds

1 2 3 4 5 6 7 8 91011>>