HomeSort by relevance Sort by last modified time
    Searched refs:AddInteger (Results 1 - 25 of 56) sorted by null

1 2 3

  /external/llvm/lib/Support/
APSInt.cpp 21 ID.AddInteger((unsigned) (IsUnsigned ? 1 : 0));
FoldingSet.cpp 60 void FoldingSetNodeID::AddInteger(signed I) {
63 void FoldingSetNodeID::AddInteger(unsigned I) {
66 void FoldingSetNodeID::AddInteger(long I) {
67 AddInteger((unsigned long)I);
69 void FoldingSetNodeID::AddInteger(unsigned long I) {
71 AddInteger(unsigned(I));
73 AddInteger((unsigned long long)I);
78 void FoldingSetNodeID::AddInteger(long long I) {
79 AddInteger((unsigned long long)I);
81 void FoldingSetNodeID::AddInteger(unsigned long long I)
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DynamicTypeInfo.h 42 ID.AddInteger((unsigned)CanBeASubClass);
SymbolManager.h 134 profile.AddInteger((unsigned) RegionValueKind);
180 profile.AddInteger((unsigned) ConjuredKind);
184 profile.AddInteger(Count);
217 profile.AddInteger((unsigned) DerivedKind);
249 profile.AddInteger((unsigned) ExtentKind);
290 profile.AddInteger((unsigned) MetadataKind);
294 profile.AddInteger(Count);
328 ID.AddInteger((unsigned) CastSymbolKind);
385 ID.AddInteger((unsigned) SymIntKind);
387 ID.AddInteger(op)
    [all...]
  /external/clang/lib/AST/
StmtProfile.cpp 71 ID.AddInteger(S->getStmtClass());
76 ID.AddInteger(0);
165 ID.AddInteger(S->getNumOutputs());
170 ID.AddInteger(S->getNumInputs());
175 ID.AddInteger(S->getNumClobbers());
408 ID.AddInteger(S->getIdentType());
418 ID.AddInteger(S->getKind());
419 ID.AddInteger(S->getValue());
435 ID.AddInteger(S->getKind());
448 ID.AddInteger(S->getOpcode())
    [all...]
DeclarationName.cpp 42 ID.AddInteger(ExtraKindOrNumArgs);
407 ID.AddInteger(EKind);
  /external/pdfium/core/src/fpdfapi/fpdf_edit/
fpdf_edit_doc.cpp 207 pWidthArray->AddInteger(first + size - 1);
208 pWidthArray->AddInteger(*widths);
213 pWidthArray1->AddInteger(widths[i]);
314 pArray->AddInteger(128);
344 pWidths->AddInteger(char_widths[i]);
359 pWidthArray->AddInteger(1);
365 pWidthArray->AddInteger(7716);
367 pWidthArray->AddInteger(814);
374 pWidthArray->AddInteger(1);
381 pWidthArray->AddInteger(231);
    [all...]
fpdf_edit_image.cpp 34 pDecode->AddInteger(1);
35 pDecode->AddInteger(0);
129 pArray->AddInteger(1);
130 pArray->AddInteger(0);
137 pCS->AddInteger(1);
164 pCS->AddInteger(iPalette - 1);
239 pMatte->AddInteger(r);
240 pMatte->AddInteger(g);
241 pMatte->AddInteger(b);
  /external/clang/include/clang/CodeGen/
CGFunctionInfo.h 447 ID.AddInteger(getASTCallingConvention());
452 ID.AddInteger(RegParm);
453 ID.AddInteger(Required.getOpaqueData());
464 ID.AddInteger(info.getCC());
469 ID.AddInteger(info.getRegParm());
470 ID.AddInteger(required.getOpaqueData());
  /external/llvm/lib/Target/SystemZ/
SystemZConstantPoolValue.cpp 57 ID.AddInteger(Modifier);
  /external/clang/lib/StaticAnalyzer/Core/
BlockCounter.cpp 42 ID.AddInteger(BlockID);
MemRegion.cpp 249 ID.AddInteger((unsigned)getKind());
253 ID.AddInteger((unsigned)getKind());
258 ID.AddInteger((unsigned)getKind());
265 ID.AddInteger((unsigned) StringRegionKind);
273 ID.AddInteger((unsigned) ObjCStringRegionKind);
281 ID.AddInteger((unsigned) AllocaRegionKind);
283 ID.AddInteger(cnt);
298 ID.AddInteger((unsigned) CompoundLiteralRegionKind);
306 ID.AddInteger((unsigned) CXXThisRegionKind);
323 ID.AddInteger((unsigned) k)
    [all...]
PathDiagnostic.cpp     [all...]
  /external/llvm/lib/IR/
AttributeImpl.h 77 ID.AddInteger(Kind);
78 if (Val) ID.AddInteger(Val);
257 ID.AddInteger(Nodes[i].first);
  /external/chromium_org/content/browser/geolocation/
network_location_request.cc 212 int age = kint32min; // Invalid so AddInteger() will ignore.
234 void AddInteger(const std::string& property_name, int value,
266 AddInteger("signalStrength", (*iter)->radio_signal_strength, wifi_dict);
267 AddInteger("age", age_milliseconds, wifi_dict);
268 AddInteger("channel", (*iter)->channel, wifi_dict);
269 AddInteger("signalToNoiseRatio", (*iter)->signal_to_noise, wifi_dict);
  /external/llvm/include/llvm/ADT/
FoldingSet.h 56 /// ID.AddInteger(Value);
83 /// ID.AddInteger(Value);
310 void AddInteger(signed I);
311 void AddInteger(unsigned I);
312 void AddInteger(long I);
313 void AddInteger(unsigned long I);
314 void AddInteger(long long I);
315 void AddInteger(unsigned long long I);
316 void AddBoolean(bool B) { AddInteger(B ? 1U : 0U); }
  /external/llvm/lib/Target/ARM/
ARMConstantPoolValue.cpp 70 ID.AddInteger(LabelId);
71 ID.AddInteger(PCAdjust);
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp 357 ID.AddInteger(OpC);
372 ID.AddInteger(Op.getResNo());
382 ID.AddInteger(Op.getResNo());
433 ID.AddInteger(GA->getOffset());
434 ID.AddInteger(GA->getTargetFlags());
435 ID.AddInteger(GA->getAddressSpace());
442 ID.AddInteger(cast<RegisterSDNode>(N)->getReg());
452 ID.AddInteger(cast<FrameIndexSDNode>(N)->getIndex());
456 ID.AddInteger(cast<JumpTableSDNode>(N)->getIndex());
457 ID.AddInteger(cast<JumpTableSDNode>(N)->getTargetFlags())
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DIE.cpp 40 ID.AddInteger(unsigned(Attribute));
41 ID.AddInteger(unsigned(Form));
51 ID.AddInteger(unsigned(Tag));
52 ID.AddInteger(unsigned(Children));
  /external/clang/include/clang/AST/
Type.h 476 ID.AddInteger(Mask);
    [all...]
TemplateName.h 536 ID.AddInteger(Operator);
  /external/clang/lib/StaticAnalyzer/Checkers/
SimpleStreamChecker.cpp 46 ID.AddInteger(K);
RetainCountChecker.cpp 55 ID.AddInteger((unsigned) X);
60 ID.AddInteger((unsigned) X.getKind());
61 ID.AddInteger((unsigned) X.getObjKind());
238 ID.AddInteger(RawKind);
239 ID.AddInteger(Cnt);
240 ID.AddInteger(ACnt);
241 ID.AddInteger(RawObjectKind);
    [all...]
  /external/clang/tools/libclang/
Indexing.cpp 133 ID.AddInteger(UniqueID.getFile());
134 ID.AddInteger(UniqueID.getDevice());
135 ID.AddInteger(S.getOffset());
136 ID.AddInteger(S.getModTime());
    [all...]
  /external/clang/include/clang/Analysis/
AnalysisContext.h 301 ID.AddInteger(idx);

Completed in 610 milliseconds

1 2 3