/external/llvm/utils/TableGen/ |
SubtargetEmitter.cpp | 46 // Reserve an invalid entry at index 0 357 // by CodeGenSchedClass::Index. 486 // Emit as cycle, // index 496 // Emit as bypass, // index 534 // CodeGenSchedClass::Index. 571 // For each itinerary class in CodeGenSchedClass::Index order. 576 // { firstStage, lastStage, firstCycle, lastCycle } // index 844 TI->ProcIndices.end(), ProcModel.Index); 861 SCI->ProcIndices.end(), ProcModel.Index); [all...] |
/packages/apps/Settings/src/com/android/settings/search/ |
Index.java | 90 public class Index { 92 private static final String LOG_TAG = "Index"; 167 private static Index sInstance; 173 * A private class to describe the update data for the Index database 218 public static Index getInstance(Context context) { 220 sInstance = new Index(context.getApplicationContext(), BASE_AUTHORITY); 225 public Index(Context context, String baseAuthority) { 383 Log.w(LOG_TAG, "Cannot add index data for Uri: " + uri.toString()); 476 * Update the Index for a specific class name resources 479 * @param rebuild true means that you want to delete the data from the Index first [all...] |
/external/clang/lib/AST/ |
MicrosoftMangle.cpp | 607 uint64_t OffsetInVFTable = ML.Index * PointerWidth.getQuantity(); [all...] |
ExprCXX.cpp | [all...] |
/external/fonttools/Lib/fontTools/ |
cffLib.py | 31 self.fontNames = list(Index(file)) 49 index = self.fontNames.index(name) 52 return self.topDictIndex[index] 58 fontNames = Index() 300 class Index(object): 302 """This class represents what the CFF spec calls an INDEX.""" 322 print(" index count: %s offSize: %s" % (count, offSize)) 326 for index in range(count+1): 339 def __getitem__(self, index) [all...] |
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/ |
CSharp2.stg | 135 state.ruleMemo = new System.Collections.Generic.Dictionary\<int, int>[<numRules>+1];<\n><! index from 1..n !> 212 IToken eof = new CommonToken((ICharStream)input, CharStreamConstants.EndOfFile, TokenChannels.Default, input.Index, input.Index); 219 state.tokenStartCharIndex = input.Index; 396 this.state.ruleMemo = new System.Collections.Generic.Dictionary\<int, int>[<length(grammar.allImportedRules)>+1];<\n><! index from 1..n !> 438 EnterRule("<ruleName>_fragment", <ruleDescriptor.index>); 439 TraceIn("<ruleName>_fragment", <ruleDescriptor.index>); 446 TraceOut("<ruleName>_fragment", <ruleDescriptor.index>); 447 LeaveRule("<ruleName>_fragment", <ruleDescriptor.index>); 490 if (state.backtracking > 0 && AlreadyParsedRule(input, <ruleDescriptor.index>)) { <returnFromRule()> [all...] |
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/ |
CSharp3.stg | 134 state.ruleMemo = new System.Collections.Generic.Dictionary\<int, int>[<numRules>+1];<\n><! index from 1..n !> 207 IToken eof = new CommonToken((ICharStream)input, CharStreamConstants.EndOfFile, TokenChannels.Default, input.Index, input.Index); 214 state.tokenStartCharIndex = input.Index; 378 this.state.ruleMemo = new System.Collections.Generic.Dictionary\<int, int>[<length(grammar.allImportedRules)>+1];<\n><! index from 1..n !> 419 EnterRule("<ruleName>_fragment", <ruleDescriptor.index>); 420 TraceIn("<ruleName>_fragment", <ruleDescriptor.index>); 427 TraceOut("<ruleName>_fragment", <ruleDescriptor.index>); 428 LeaveRule("<ruleName>_fragment", <ruleDescriptor.index>); 471 if (state.backtracking > 0 && AlreadyParsedRule(input, <ruleDescriptor.index>)) { <returnFromRule()> [all...] |
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/ |
BitcodeReader.cpp | 204 /// MAttributes - The set of attributes by index. Index zero in the [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
comsvcs.h | [all...] |
/external/llvm/lib/CodeGen/MIRParser/ |
MIParser.cpp | 78 /// Maps from target index names to target indices. 211 /// Check if the given identifier is a name of a subregister index. 213 /// Return 0 if the name isn't a subregister index class. 223 /// Try to convert a name of target index to the corresponding target index. 225 /// Return true if the name isn't a name of a target index. 226 bool getTargetIndex(StringRef Name, int &Index); 857 return error("expected a subregister index after ':'"); 861 return error(Twine("use of unknown subregister index '") + Name + "'"); 890 Twine("use of invalid tied-def operand index '" [all...] |
/external/llvm/tools/llvm-objdump/ |
MachODump.cpp | 316 outs() << "address index"; 318 outs() << "address index"; 523 unsigned Index = 0; 564 outs() << "command " << Index++ << "\n"; [all...] |
/external/clang/lib/CodeGen/ |
CGCleanup.cpp | 718 // destination index. For fall-throughs this is always zero. [all...] |
/external/llvm/include/llvm/IR/ |
InstrTypes.h | 214 assert(index_is_valid(new_idx) && "Iterator index out of bound"); [all...] |
/external/llvm/lib/MC/ |
MCAsmStreamer.cpp | [all...] |
WinCOFFObjectWriter.cpp | 71 int Index; 82 int64_t getIndex() const { return Index; } 84 Index = Value; [all...] |
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/ |
DebugEventSocketProxy.cs | 226 buf.Append(e.Index);
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
TreeWizard.cs | 54 * This class can build a token type -> node index for repeated use or for 129 * During fillBuffer(), we can make a reverse index from a set 132 * stream index semi-efficiently for a list of interesting 148 * A set of token types user would like to index for faster lookup. 175 * Compute a Map<String, Integer> that is an inverted index of 212 * TODO: save this index so that find and visit are faster 215 public IDictionary<int, IList> Index(object t) { 221 /** <summary>Do the work for index</summary> */ 533 * Given a node, add this to the reverse index tokenTypeToStreamIndexesMap. 537 * Map<Integer token type,ArrayList<Integer stream index>> [all...] |
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/ |
TreeWizard.cs | 55 * This class can build a token type -> node index for repeated use or for 147 * During fillBuffer(), we can make a reverse index from a set 150 * stream index semi-efficiently for a list of interesting 166 * A set of token types user would like to index for faster lookup. 197 * Compute a Map<String, Integer> that is an inverted index of 239 * TODO: save this index so that find and visit are faster 242 public IDictionary<int, IList> Index( object t ) 249 /** <summary>Do the work for index</summary> */ 610 * Given a node, add this to the reverse index tokenTypeToStreamIndexesMap. 614 * Map<Integer token type,ArrayList<Integer stream index>> [all...] |
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/ |
DebugEventSocketProxy.cs | 260 buf.Append( e.Index );
|
/external/clang/include/clang/Basic/ |
TargetInfo.h | 689 unsigned &Index) const; [all...] |
/external/clang/lib/Sema/ |
SemaDeclAttr.cpp | 258 /// \brief Check if IdxExpr is a valid parameter index for a function or 261 /// \returns true if IdxExpr is a valid index. 495 /// \param Sidx The attribute argument index to start checking with. 542 // Now check if we index into a record type function param. [all...] |
SemaPseudoObject.cpp | 391 // set ResultIndex to its index. 392 unsigned index = 0; local 393 for (;; ++index) { 394 assert(index < Semantics.size() && 396 if (e == Semantics[index]) break; 398 ResultIndex = index; [all...] |
/external/eigen/Eigen/src/Core/util/ |
ForwardDeclarations.h | 99 template<typename MatrixType, int Index = 0> class Diagonal;
|
/external/eigen/test/ |
sparse_solver.h | 235 PermutationMatrix<Dynamic, Dynamic, Index> pnull;
|
/external/llvm/include/llvm/MC/ |
MCStreamer.h | 105 virtual void emitPersonalityIndex(unsigned Index); 174 /// \brief Tracks an index to represent the order a symbol was emitted in. 288 /// \brief Returns an index to represent the order a symbol was emitted in. 447 /// \brief Emits a COFF section index.
|