HomeSort by relevance Sort by last modified time
    Searched refs:Val (Results 51 - 75 of 295) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/clang/lib/Rewrite/
TokenRewriter.cpp 82 TokenRewriter::AddTokenBefore(token_iterator I, const char *Val) {
83 unsigned Len = strlen(Val);
90 Tok.setLocation(ScratchBuf->getToken(Val, Len, Spelling));
  /external/llvm/include/llvm/ADT/
ValueMap.h 115 bool count(const KeyT &Val) const {
116 return Map.count(Wrap(Val));
119 iterator find(const KeyT &Val) {
120 return iterator(Map.find(Wrap(Val)));
122 const_iterator find(const KeyT &Val) const {
123 return const_iterator(Map.find(Wrap(Val)));
128 ValueT lookup(const KeyT &Val) const {
129 return Map.lookup(Wrap(Val));
149 bool erase(const KeyT &Val) {
150 return Map.erase(Wrap(Val));
    [all...]
IntrusiveRefCntPtr.h 218 static SimpleType getSimplifiedValue(const IntrusiveRefCntPtr<T>& Val) {
219 return Val.getPtr();
225 static SimpleType getSimplifiedValue(const IntrusiveRefCntPtr<T>& Val) {
226 return Val.getPtr();
Statistic.h 53 const Statistic &operator=(unsigned Val) {
54 Value = Val;
DenseMap.h 132 bool count(const KeyT &Val) const {
134 return LookupBucketFor(Val, TheBucket);
137 iterator find(const KeyT &Val) {
139 if (LookupBucketFor(Val, TheBucket))
143 const_iterator find(const KeyT &Val) const {
145 if (LookupBucketFor(Val, TheBucket))
152 ValueT lookup(const KeyT &Val) const {
154 if (LookupBucketFor(Val, TheBucket))
182 bool erase(const KeyT &Val) {
184 if (!LookupBucketFor(Val, TheBucket)
    [all...]
Optional.h 55 static SimpleType getSimplifiedValue(const Optional<T> &Val) {
56 return Val.getPointer();
  /external/clang/include/clang/AST/
ASTDiagnostic.h 38 intptr_t Val,
DeclBase.h     [all...]
  /frameworks/compile/slang/
slang_rs_export_var.h 55 inline const clang::APValue &getInit() const { return mInit.Val; }
  /external/llvm/lib/Target/ARM/Disassembler/
ARMDisassembler.cpp 130 static DecodeStatus DecodePredicateOperand(llvm::MCInst &Inst, unsigned Val,
132 static DecodeStatus DecodeCCOutOperand(llvm::MCInst &Inst, unsigned Val,
134 static DecodeStatus DecodeSOImmOperand(llvm::MCInst &Inst, unsigned Val,
136 static DecodeStatus DecodeRegListOperand(llvm::MCInst &Inst, unsigned Val,
138 static DecodeStatus DecodeSPRRegListOperand(llvm::MCInst &Inst, unsigned Val,
140 static DecodeStatus DecodeDPRRegListOperand(llvm::MCInst &Inst, unsigned Val,
174 static DecodeStatus DecodeAddrModeImm12Operand(llvm::MCInst &Inst, unsigned Val,
176 static DecodeStatus DecodeAddrMode5Operand(llvm::MCInst &Inst, unsigned Val,
178 static DecodeStatus DecodeAddrMode7Operand(llvm::MCInst &Inst, unsigned Val,
182 static DecodeStatus DecodeVCVTImmOperand(llvm::MCInst &Inst, unsigned Val,
    [all...]
  /external/llvm/include/llvm-c/
Core.h 522 LLVMTypeRef LLVMTypeOf(LLVMValueRef Val);
523 const char *LLVMGetValueName(LLVMValueRef Val);
524 void LLVMSetValueName(LLVMValueRef Val, const char *Name);
525 void LLVMDumpValue(LLVMValueRef Val);
527 int LLVMHasMetadata(LLVMValueRef Val);
528 LLVMValueRef LLVMGetMetadata(LLVMValueRef Val, unsigned KindID);
529 void LLVMSetMetadata(LLVMValueRef Val, unsigned KindID, LLVMValueRef Node);
534 LLVMValueRef LLVMIsA##name(LLVMValueRef Val);
538 LLVMUseRef LLVMGetFirstUse(LLVMValueRef Val);
544 LLVMValueRef LLVMGetOperand(LLVMValueRef Val, unsigned Index)
    [all...]
  /external/clang/lib/Index/
GlobalSelector.cpp 26 Selector GlobSel = Selector(reinterpret_cast<uintptr_t>(Val));
44 Selector GlobSel = Selector(reinterpret_cast<uintptr_t>(Val));
  /external/clang/lib/Basic/
Diagnostic.cpp 494 unsigned Val = 0;
496 Val *= 10;
497 Val += *Start - '0';
500 return Val;
503 /// TestPluralRange - Test if Val is in the parsed range. Modifies Start.
504 static bool TestPluralRange(unsigned Val, const char *&Start, const char *End) {
507 return Ref == Val;
517 return Low <= Val && Val <= High;
715 int Val = getArgSInt(ArgNo)
    [all...]
  /external/clang/include/clang/Sema/
Ownership.h 221 /// stored in the low bit of the Val pointer.
225 PtrTy Val;
230 : Val(PtrTy()), Invalid(Invalid) {}
231 ActionResult(PtrTy val) : Val(val), Invalid(false) {}
232 ActionResult(const DiagnosticBuilder &) : Val(PtrTy()), Invalid(true) {}
239 bool isUsable() const { return !Invalid && Val; }
241 PtrTy get() const { return Val; }
242 PtrTy release() const { return Val; }
    [all...]
  /external/clang/include/clang/Basic/
IdentifierTable.h 127 void setHasMacroDefinition(bool Val) {
128 if (HasMacro == Val) return;
130 HasMacro = Val;
131 if (Val)
195 void setIsExtensionToken(bool Val) {
196 IsExtension = Val;
197 if (Val)
208 void setIsCXX11CompatKeyword(bool Val) {
209 IsCXX11CompatKeyword = Val;
210 if (Val)
    [all...]
Diagnostic.h 283 ArgumentKind Kind, intptr_t Val,
375 void setIgnoreAllWarnings(bool Val) { IgnoreAllWarnings = Val; }
381 void setEnableAllWarnings(bool Val) { EnableAllWarnings = Val; }
386 void setWarningsAsErrors(bool Val) { WarningsAsErrors = Val; }
391 void setErrorsAsFatal(bool Val) { ErrorsAsFatal = Val; }
396 void setSuppressSystemWarnings(bool Val) { SuppressSystemWarnings = Val;
    [all...]
  /external/llvm/lib/Target/ARM/
ARMMCInstLower.cpp 104 APFloat Val = MO.getFPImm()->getValueAPF();
106 Val.convert(APFloat::IEEEdouble, APFloat::rmTowardZero, &ignored);
107 MCOp = MCOperand::CreateFPImm(Val.convertToDouble());
  /external/llvm/bindings/ocaml/llvm/
llvm_ocaml.c 405 CAMLprim LLVMTypeRef llvm_type_of(LLVMValueRef Val) {
406 return LLVMTypeOf(Val);
434 #define DEFINE_CASE(Val, Kind) \
435 do {if (LLVMIsA##Kind(Val)) CAMLreturn(Val_int(Kind));} while(0)
437 CAMLprim value llvm_classify_value(LLVMValueRef Val) {
439 if (!Val)
441 if (LLVMIsAConstant(Val)) {
442 DEFINE_CASE(Val, BlockAddress);
443 DEFINE_CASE(Val, ConstantAggregateZero);
444 DEFINE_CASE(Val, ConstantArray)
    [all...]
  /external/llvm/include/llvm/Analysis/
ConstantFolding.h 67 Constant *ConstantFoldInsertValueInstruction(Constant *Agg, Constant *Val,
  /external/llvm/include/llvm/Support/
Registry.h 86 const entry& Val;
89 node(const entry& V) : Next(0), Val(V) {
112 const entry &operator*() const { return Cur->Val; }
113 const entry *operator->() const { return &Cur->Val; }
CommandLine.h 215 void setNumOccurrencesFlag(enum NumOccurrencesFlag Val) {
216 setFlag(Val, OccurrencesMask);
218 void setValueExpectedFlag(enum ValueExpected Val) { setFlag(Val, ValueMask); }
219 void setHiddenFlag(enum OptionHidden Val) { setFlag(Val, HiddenMask); }
293 initializer(const Ty &Val) : Init(Val) {}
300 initializer<Ty> init(const Ty &Val) {
301 return initializer<Ty>(Val);
    [all...]
  /external/clang/lib/Parse/
RAIIObjectsForParser.h 73 GreaterThanIsOperatorScope(bool &GTIO, bool Val)
75 GreaterThanIsOperator = Val;
  /external/stlport/test/eh/
test_construct.h 81 Value_type Val = 0;
82 T t( n, Val );
  /external/clang/lib/AST/
ASTDiagnostic.cpp 222 intptr_t Val,
243 QualType Ty(QualType::getFromOpaquePtr(reinterpret_cast<void*>(Val)));
250 DeclarationName N = DeclarationName::getFromOpaqueInteger(Val);
272 const NamedDecl *ND = reinterpret_cast<const NamedDecl*>(Val);
278 reinterpret_cast<NestedNameSpecifier*>(Val)->print(OS,
284 DeclContext *DC = reinterpret_cast<DeclContext *> (Val);
  /external/llvm/include/llvm/CodeGen/
MachineInstrBuilder.h 75 const MachineInstrBuilder &addImm(int64_t Val) const {
76 MI->addOperand(MachineOperand::CreateImm(Val));
80 const MachineInstrBuilder &addCImm(const ConstantInt *Val) const {
81 MI->addOperand(MachineOperand::CreateCImm(Val));
85 const MachineInstrBuilder &addFPImm(const ConstantFP *Val) const {
86 MI->addOperand(MachineOperand::CreateFPImm(Val));

Completed in 2354 milliseconds

1 23 4 5 6 7 8 91011>>