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

1 2

  /external/clang/lib/ARCMigrate/
Internals.h 32 bool clearDiagnostic(ArrayRef<unsigned> IDs, SourceRange range);
33 bool hasDiagnostic(ArrayRef<unsigned> IDs, SourceRange range) const;
75 bool clearDiagnostic(ArrayRef<unsigned> IDs, SourceRange range);
80 unsigned IDs[] = { ID1, ID2 };
81 return clearDiagnostic(IDs, range);
85 unsigned IDs[] = { ID1, ID2, ID3 };
86 return clearDiagnostic(IDs, range);
94 unsigned IDs[] = { ID1, ID2 };
95 return CapturedDiags.hasDiagnostic(IDs, range);
ARCMT.cpp 27 bool CapturedDiagList::clearDiagnostic(ArrayRef<unsigned> IDs,
36 if ((IDs.empty() || // empty means clear all diagnostics in the range.
37 std::find(IDs.begin(), IDs.end(), I->getID()) != IDs.end()) &&
57 bool CapturedDiagList::hasDiagnostic(ArrayRef<unsigned> IDs,
65 if ((IDs.empty() || // empty means any diagnostic in the range.
66 std::find(IDs.begin(), IDs.end(), I->getID()) != IDs.end()) &
    [all...]
TransformActions.cpp 146 bool clearDiagnostic(ArrayRef<unsigned> IDs, SourceRange range);
165 void commitClearDiagnostic(ArrayRef<unsigned> IDs, SourceRange range);
368 bool TransformActionsImpl::clearDiagnostic(ArrayRef<unsigned> IDs,
371 if (!CapturedDiags.hasDiagnostic(IDs, range))
377 data.DiagIDs.append(IDs.begin(), IDs.end());
500 void TransformActionsImpl::commitClearDiagnostic(ArrayRef<unsigned> IDs,
502 CapturedDiags.clearDiagnostic(IDs, range);
667 bool TransformActions::clearDiagnostic(ArrayRef<unsigned> IDs,
669 return static_cast<TransformActionsImpl*>(Impl)->clearDiagnostic(IDs, range)
    [all...]
  /external/markdown/markdown/extensions/
headerid.py 7 Adds ability to set HTML IDs for headers.
17 All header IDs are unique:
36 Turn off auto generated IDs:
78 """ Replacement BlockProcessor for Header IDs. """
90 IDs = []
146 while id in self.IDs:
152 self.IDs.append(id)
186 self.processor.IDs = []
  /external/v8/test/mjsunit/regress/
regress-1104.js 29 // an arguments object access should not record duplicate AST IDs for
regress-1149.js 28 // We should not try to record duplicate bailout IDs for the 'left-hand
  /frameworks/base/graphics/java/android/renderscript/
RenderScript.java 269 int[] IDs, String[] names, int[] arraySizes);
270 synchronized void nElementGetSubElements(int id, int[] IDs, String[] names, int[] arraySizes) {
272 rsnElementGetSubElements(mContext, id, IDs, names, arraySizes);
531 native void rsnFileA3DGetIndexEntries(int con, int fileA3D, int numEntries, int[] IDs, String[] names);
532 synchronized void nFileA3DGetIndexEntries(int fileA3D, int numEntries, int[] IDs, String[] names) {
534 rsnFileA3DGetIndexEntries(mContext, fileA3D, numEntries, IDs, names);
    [all...]
  /external/icu4c/test/intltest/
cpdtrtst.cpp 65 const UnicodeString IDs[]={
75 CompoundTransliterator *cpdtrans=new CompoundTransliterator(IDs[i],parseError, status);
  /external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_tools_windows/tools/
picoloaddbg.lua 132 -- get IDs of unique specids
picoloadphones.lua 130 -- get IDs of unique specids
  /external/llvm/lib/IR/
PassManager.cpp 518 const AnalysisUsage::VectorType &IDs = AnUsage->getRequiredTransitiveSet();
521 for (AnalysisUsage::VectorType::const_iterator I = IDs.begin(),
522 E = IDs.end(); I != E; ++I) {
    [all...]
  /external/chromium/chrome/browser/resources/net_internals/
eventsview.js 36 // Used for sorting entries with automatically assigned IDs.
156 // source IDs to get a more intuitive ordering.
179 * For the purposes of sorting by source IDs, entries without a source
468 * the source IDs of all deleted log entries.
socketpoolwrapper.js 162 * Takes in a list of source IDs and returns a link that will select the
dataview.js 76 * the source IDs of all deleted log entries.
main.js 41 // IDs for the details view.
48 // IDs for the layout boxes.
818 * Also assigns unique ids to log entries without a source.
836 * Deletes captured events with source IDs in |sourceIds|.
    [all...]
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
RenderScript.java 202 int[] IDs, String[] names, int[] arraySizes);
203 synchronized void nElementGetSubElements(int id, int[] IDs, String[] names, int[] arraySizes) {
205 rsnElementGetSubElements(mContext, id, IDs, names, arraySizes);
    [all...]
  /external/llvm/utils/TableGen/
FixedLenDecoderEmitter.cpp 346 const std::vector<unsigned> &IDs,
350 : AllInstructions(Insts), Opcodes(IDs), Operands(Ops), Filters(),
359 const std::vector<unsigned> &IDs,
363 : AllInstructions(Insts), Opcodes(IDs), Operands(Ops),
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/ast-output/
rewrites.rb 848 a : ID+ -> ID ID ID ; // works if 3 input IDs
1286 a : ID+ -> ID ID ID ; // only 2 input IDs
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.registry_3.5.0.v20100503.jar 
  /external/clang/include/clang/Serialization/
ASTReader.h 322 /// \brief Mapping from global type IDs to the module in which the
336 /// \brief Mapping from global declaration IDs to the module in which the
419 /// \brief Mapping from global identifier IDs to the module in which the
435 /// \brief Mapping from global macro IDs to the module in which the
445 /// \brief Mapping from (global) macro IDs to the set of updates to be
458 /// \brief Mapping from global submodule IDs to the module file in which the
552 /// \brief Mapping from global selector IDs to the module in which the
566 /// IDs have not yet been deserialized to the global IDs of those macros.
572 /// \brief Mapping from global preprocessing entity IDs to the module i
    [all...]
  /external/chromium/chrome/browser/resources/touch_ntp/standalone/
standalone_hack.js 278 * @param {Array.<string>} appIds All app IDs in their desired order.
  /external/elfutils/
elfutils.spec 243 buginfo now uses build IDs when available
  /external/blktrace/btreplay/doc/
btreplay.tex 175 on the recording system, we wrap CPU IDs. This \emph{may} result in an
  /external/clang/lib/Serialization/
ASTReader.cpp 541 // Token IDs are read-only.
    [all...]
  /external/mksh/src/
Build.sh     [all...]

Completed in 1408 milliseconds

1 2