HomeSort by relevance Sort by last modified time
    Searched refs:Index (Results 151 - 175 of 382) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRHashMap.h 81 - (void)setptrBuffer:(ANTLRMapElement *)np Index:(int)idx;
ANTLRTreeAdaptor.h 133 - (void) setChild:(id)aTree At:(NSInteger)index Child:(id)child;
135 - (id) deleteChild:(id)t Index:(NSInteger)index;
147 /** What index is this node in the child list? Range: 0..n-1
152 - (void) setChildIndex:(id)t With:(NSInteger)index;
  /external/chromium/net/disk_cache/
disk_format.h 5 // The cache is stored on disk as a collection of block-files, plus an index
13 // The index file is just a simple hash table that maps a particular entry to
41 // The files that store internal information for the cache (blocks and index)
81 // Header for the master index file.
100 // The structure of the whole index file.
101 struct Index {
181 int16 this_file; // Index of this file.
225 // one of the data streams of the child entry (at index 1), while the control
226 // information is stored in another stream (at index 2), both by parents and
230 // It is stored at offset 0 of the data stream with index 2
    [all...]
  /external/clang/lib/Basic/
SourceManager.cpp 474 const SrcMgr::SLocEntry &SourceManager::loadSLocEntry(unsigned Index,
476 assert(!SLocEntryLoaded[Index]);
477 if (ExternalSLocEntries->ReadSLocEntry(-(static_cast<int>(Index) + 2))) {
481 if (!SLocEntryLoaded[Index]) {
483 LoadedSLocEntryTable[Index] = SLocEntry::get(0,
490 return LoadedSLocEntryTable[Index];
540 unsigned Index = unsigned(-LoadedID) - 2;
541 assert(Index < LoadedSLocEntryTable.size() && "FileID out of range");
542 assert(!SLocEntryLoaded[Index] && "FileID already loaded");
543 LoadedSLocEntryTable[Index] = SLocEntry::get(LoadedOffset
    [all...]
  /external/clang/lib/CodeGen/
CGObjCRuntime.cpp 49 // Compute field index.
51 // FIXME: The index here is closely tied to how ASTContext::getObjCLayout is
54 unsigned Index = 0;
60 ++Index;
62 assert(Index < RL->getFieldCount() && "Ivar is not inside record layout!");
64 return RL->getFieldOffset(Index);
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/debug/
Arrow.java 96 setBuffer(Type.Index, 2,
SkeletonWire.java 82 VertexBuffer ib = new VertexBuffer(Type.Index);
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/
Line.java 77 setBuffer(Type.Index, 3, new short[]{0, 1});
  /external/jmonkeyengine/engine/src/test/jme3test/model/shape/
TestCustomMesh.java 83 m.setBuffer(Type.Index, 1, BufferUtils.createIntBuffer(indexes));
  /external/jmonkeyengine/engine/src/test/jme3test/texture/
TestTextureArray.java 69 m.setBuffer(Type.Index, 1, BufferUtils.createIntBuffer(indexes));
  /external/jmonkeyengine/engine/src/tools/jme3tools/converters/model/
FloatToFixed.java 65 VertexBuffer indices = mesh.getBuffer(Type.Index);
117 VertexBuffer vb = mesh.getBuffer(Type.Index);
133 VertexBuffer newVb = new VertexBuffer(Type.Index);
135 mesh.clearBuffer(Type.Index);
  /external/llvm/lib/Analysis/IPA/
CallGraphSCCPass.cpp 74 for (unsigned Index = 0; Index < getNumContainedPasses(); ++Index) {
75 Pass *P = getContainedPass(Index);
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMMachObjectWriter.cpp 356 unsigned Index = 0;
378 Index = SD->getIndex();
386 // The index is the section ordinal (1-based).
389 Index = SymSD.getOrdinal() + 1;
402 MRE.Word1 = ((Index << 0) |
  /external/clang/include/clang/Basic/
SourceManager.h 395 /// \brief Read the source location entry with index ID, which will always be
520 /// Negative FileIDs are indexes into this table. To get from ID to an index,
    [all...]
  /external/llvm/include/llvm/
Instructions.h 795 return 0U; // get index for modifying correct operand.
    [all...]
Attributes.h 234 /// with an index.
237 unsigned Index; ///< Index of the parameter for which the attributes apply.
238 ///< Index 0 is used for return value attributes.
239 ///< Index ~0U is used for function attributes.
243 P.Index = Idx;
282 /// addAttr - Add the specified attribute at the specified index to this
287 /// removeAttr - Remove the specified attribute at the specified index from
295 /// getParamAttributes - The attributes for the specified index are
298 assert (Idx && Idx != ~0U && "Invalid parameter index!");
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
BufferedTokenStream.cs 68 /** The index into the tokens list of the current token (next token
94 public virtual int Index {
148 _lastMarker = Index;
169 public virtual void Seek(int index) {
170 _p = index;
187 /** Make sure index i in tokens has a token. */
207 throw new IndexOutOfRangeException("token index " + i + " out of range 0.." + (_tokens.Count - 1));
287 /** Given a start and stop index, return a List of all tokens in
LegacyCommonTokenStream.cs 79 * The index into the tokens list of the current token (next token
99 public virtual int Index {
132 int index = 0;
156 t.TokenIndex = index;
158 index++;
185 /** <summary>Given a starting index, return the index of the first on-channel token.</summary> */
239 * Given a start and stop index, return a List of all tokens in
378 lastMarker = Index;
405 public virtual void Seek(int index) {
    [all...]
RecognitionException.cs 67 * state can change before the exception is reported so current token index
79 /** <summary>What is index of token/char were we looking at when the error occurred?</summary> */
109 /// The 0-based index into the line where the error occurred.
147 this._index = input.Index;
170 _index = info.GetInt32("Index");
239 public int Index {
271 info.AddValue("Index", _index);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
BufferedTokenStream.cs 70 /** The index into the tokens list of the current token (next token
101 public virtual int Index
170 _lastMarker = Index;
195 public virtual void Seek(int index)
197 _p = index;
215 /** Make sure index i in tokens has a token. */
240 throw new IndexOutOfRangeException("token index " + i + " out of range 0.." + (_tokens.Count - 1));
327 /** Given a start and stop index, return a List of all tokens in
LegacyCommonTokenStream.cs 78 * The index into the tokens list of the current token (next token
101 public virtual int Index
139 int index = 0;
168 t.TokenIndex = index;
170 index++;
199 /** <summary>Given a starting index, return the index of the first on-channel token.</summary> */
265 * Given a start and stop index, return a List of all tokens in
431 lastMarker = Index;
464 public virtual void Seek( int index )
    [all...]
RecognitionException.cs 68 * state can change before the exception is reported so current token index
81 /** <summary>What is index of token/char were we looking at when the error occurred?</summary> */
111 /// The 0-based index into the line where the error occurred.
156 this._index = input.Index;
192 _index = info.GetInt32("Index");
280 public int Index
322 info.AddValue("Index", _index);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
SlimLexer.cs 138 state.tokenStartCharIndex = input.Index;
328 /** <summary>What is the index of the current character of lookahead?</summary> */
333 return input.Index;
SlimTokenStream.cs 66 * The index into the tokens list of the current token (next token
89 public int Index
118 int index = 0;
122 //t.TokenIndex = index;
124 index++;
153 /** <summary>Given a starting index, return the index of the first on-channel token.</summary> */
188 * Given a start and stop index, return a List of all tokens in
334 lastMarker = Index;
367 public void Seek( int index )
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/font/
BitmapTextPage.java 82 m.setBuffer(Type.Index, 3, new short[0]);
139 VertexBuffer ib = m.getBuffer(Type.Index);

Completed in 631 milliseconds

1 2 3 4 5 67 8 91011>>