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

1 23 4 5 6 7 8 910

  /external/clang/lib/Sema/
SemaInit.cpp 148 /// the initializer list one element at a time. The IList and Index
150 /// (syntactic) initializer list and the index into that initializer
152 /// responsible for moving that Index forward as it consumes elements.
156 /// initializer list and the index into that initializer list where we
179 unsigned &Index, InitListExpr *StructuredList,
183 unsigned &Index, InitListExpr *StructuredList,
189 unsigned &Index,
195 unsigned &Index,
200 unsigned &Index,
205 unsigned &Index,
    [all...]
SemaTemplateVariadic.cpp 450 /// \brief Retrieve the depth and index of a parameter pack.
478 // Compute the depth and index for this parameter pack.
479 unsigned Depth = 0, Index = 0;
486 Index = TTP->getIndex();
493 llvm::tie(Depth, Index) = getDepthAndIndex(ND);
517 // If we don't have a template argument at this depth/index, then we
521 !TemplateArgs.hasTemplateArgument(Depth, Index)) {
527 NewPackSize = TemplateArgs(Depth, Index).pack_size();
539 if (PartialDepth == Depth && PartialIndex == Index)
580 // Compute the depth and index for this parameter pack
    [all...]
  /external/clang/lib/Driver/
Arg.cpp 20 : Opt(_Opt), BaseArg(_BaseArg), Index(_Index),
26 : Opt(_Opt), BaseArg(_BaseArg), Index(_Index),
33 : Opt(_Opt), BaseArg(_BaseArg), Index(_Index),
52 llvm::errs() << " Index:" << Index;
  /external/llvm/include/llvm/Support/
OutputBuffer.h 156 unsigned char &operator[](unsigned Index) {
157 return Output[Index];
159 const unsigned char &operator[](unsigned Index) const {
160 return Output[Index];
  /external/llvm/lib/Linker/
Linker.cpp 175 for (unsigned Index = 0; Index != LibPaths.size(); ++Index) {
176 sys::Path Directory(LibPaths[Index]);
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86MachObjectWriter.cpp 116 unsigned Index = 0;
134 Index = 0;
182 Index = A_Base->getIndex();
186 Index = A_SD.getFragment()->getParent()->getOrdinal() + 1;
193 MRE.Word1 = ((Index << 0) |
201 Index = B_Base->getIndex();
205 Index = B_SD.getFragment()->getParent()->getOrdinal() + 1;
229 Index = Base->getIndex();
236 // The index is the section ordinal (1-based).
237 Index = SD.getFragment()->getParent()->getOrdinal() + 1
    [all...]
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/src/
armCOMM_Bitstream.c 171 * Returns : Code Book Index if successfull.
185 OMX_INT Index;
194 for (Index=0; pCodeBook->codeLen != 0; Index++)
202 return Index;
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/src/
armCOMM_Bitstream.c 171 * Returns : Code Book Index if successfull.
185 OMX_INT Index;
194 for (Index=0; pCodeBook->codeLen != 0; Index++)
202 return Index;
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/reference/src/
armCOMM_Bitstream.c 171 * Returns : Code Book Index if successfull.
185 OMX_INT Index;
194 for (Index=0; pCodeBook->codeLen != 0; Index++)
202 return Index;
  /frameworks/compile/slang/
slang_rs_export_func.cpp 146 unsigned Index = 0;
148 FE = ERT->fields_end(); FI != FE; FI++, Index++) {
152 llvm::Type *T2 = ParamTy->getTypeAtIndex(Index);
160 size_t T2Offset = ParamTySL->getElementOffset(Index);
  /external/clang/bindings/python/examples/cindex/
cindex-dump.py 13 A simple command line tool for dumping a source file using the Clang Index
31 # FIXME: This is really slow. It would be nice if the index API exposed
57 from clang.cindex import Index
77 index = Index.create()
78 tu = index.parse(None, args)
  /external/llvm/bindings/ocaml/target/
target_ocaml.c 100 value Index) {
101 return caml_copy_int64(LLVMOffsetOfElement(TD, Ty, Int_val(Index)));
  /external/clang/include/clang/Driver/
ArgList.h 189 /// getArgString - Return the input argument string at \arg Index.
190 virtual const char *getArgString(unsigned Index) const = 0;
272 /// string at \arg Index if possible.
273 const char *GetOrMakeJoinedArgString(unsigned Index, StringRef LHS,
302 virtual const char *getArgString(unsigned Index) const {
303 return ArgStrings[Index];
314 /// MakeIndex - Get an index for the given string(s).
336 virtual const char *getArgString(unsigned Index) const {
337 return BaseArgs.getArgString(Index);
  /external/llvm/include/llvm/CodeGen/
MachineFrameInfo.h 121 /// the stack. Because fixed objects are stored at a negative index in the
122 /// Objects list, this is also the index to the 0th object in the list.
174 /// StackProtectorIdx - The frame index for the stack protector.
177 /// FunctionContextIdx - The frame index for the function context. Used for
246 /// getStackProtectorIndex/setStackProtectorIndex - Return the index for the
252 /// getFunctionContextIndex/setFunctionContextIndex - Return the index for the
269 /// getObjectIndexBegin - Return the minimum frame object index.
273 /// getObjectIndexEnd - Return one past the maximum frame object index.
284 /// mapLocalFrameObject - Map a frame index into the local object block
444 /// index with a negative value
    [all...]
MachineRelocation.h 36 /// 6. An index into the GOT, if the target uses a GOT
62 unsigned Index; // Constant pool / jump table index
63 unsigned GOTIndex; // Index in the GOT of this symbol/global
171 Result.Target.Index = CPI;
190 Result.Target.Index = JTI;
256 /// isGOTRelative - Return true the target wants the index into the GOT of
299 /// the index into the constant pool.
302 return Target.Index;
306 /// the index into the jump table
    [all...]
  /external/clang/bindings/python/tests/cindex/
test_type.py 1 from clang.cindex import Index, CursorKind, TypeKind
21 index = Index.create()
22 tu = index.parse('t.c', unsaved_files = [('t.c',kInput)])
85 index = Index.create()
86 tu = index.parse('t.c', unsaved_files = [('t.c',constarrayInput)])
  /external/clang/lib/CodeGen/
CGRecordLayout.h 141 const AccessInfo &getComponent(unsigned Index) const {
142 assert(Index < getNumComponents() && "Invalid access!");
143 return Components[Index];
198 /// Map from virtual bases to their field index in the complete object.
258 /// \brief Return the LLVM field index corresponding to the given
  /external/llvm/include/llvm/ADT/
ArrayRef.h 129 const T &operator[](size_t Index) const {
130 assert(Index < Length && "Invalid index!");
131 return Data[Index];
  /frameworks/base/media/libeffects/lvm/lib/Reverb/src/
LVREV_ApplyNewSettings.c 378 LVM_INT32 Index=0;
408 Index=i;
414 if(RoomSize==LVREV_GainPolyTable[Index][0])
419 Coefs[i-1]=LVREV_GainPolyTable[Index][i];
431 Tot_Dist=LVREV_GainPolyTable[Index][0]-LVREV_GainPolyTable[Index-1][0];
432 Dist=RoomSize-LVREV_GainPolyTable[Index-1][0];
438 Coefs[i-1]=LVREV_GainPolyTable[Index-1][i];
447 Coefs[i-1]=LVREV_GainPolyTable[Index][i];
472 Index=((32767*100)/(100+pPrivate->NewParams.Level))
    [all...]
  /external/chromium/base/win/
registry.h 49 LONG ReadName(int index, std::wstring* name) const;
121 int Index() const { return index_; }
130 // Current index of the iteration.
158 int Index() const { return index_; }
167 // Current index of the iteration.
  /external/llvm/lib/Target/MBlaze/
MBlazeMachineFunction.h 50 /// call. A reference to its stack location and frame index must be kept
165 void setVarArgsFrameIndex(int Index) { VarArgsFrameIndex = Index; }
  /external/llvm/tools/macho-dump/
macho-dump.cpp 69 static int DumpSectionData(MachOObject &Obj, unsigned Index, StringRef Name,
76 outs() << " # Section " << Index << "\n";
201 unsigned Index, uint32_t StringIndex,
204 outs() << " # Symbol " << Index << "\n";
306 << format("0x%x", ISTE->Index) << "),),\n";
336 static int DumpLoadCommand(MachOObject &Obj, unsigned Index) {
337 const MachOObject::LoadCommandInfo &LCI = Obj.getLoadCommandInfo(Index);
340 outs() << " # Load Command " << Index << "\n"
  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentSkipListMap.java 55 * <a href="{@docRoot}/../technotes/guides/collections/index.html">
69 * list in which the index levels are represented in separate
74 * for the heavily-traversed index lists than can be used for the
76 * possible list with 2 levels of index:
78 * Head nodes Index nodes
195 * Index levels are maintained as lists with volatile next fields,
196 * using CAS to link and unlink. Races are allowed in index-list
197 * operations that can (rarely) fail to link in a new index node
199 * However, even when this happens, the index lists remain sorted,
207 * The fact that retries (for both base and index lists) ar
    [all...]
  /external/libnfc-nxp/src/
phLibNfc_ndef_raw.c     [all...]
  /build/tools/droiddoc/templates-sdk/
customizations.cs 47 <div id="index-links"><nobr>
48 <a href="<?cs var:toroot ?>reference/packages.html" <?cs if:(page.title == "Package Index") ?>class="selected"<?cs /if ?> >Package Index</a> |
49 <a href="<?cs var:toroot ?>reference/classes.html" <?cs if:(page.title == "Class Index") ?>class="selected"<?cs /if ?>>Class Index</a></nobr>
82 <div id="index-links"><nobr>
83 <a href="<?cs var:toroot ?>reference/packages.html" <?cs if:(page.title == "Package Index") ?>class="selected"<?cs /if ?> >Package Index</a> |
84 <a href="<?cs var:toroot ?>reference/classes.html" <?cs if:(page.title == "Class Index") ?>class="selected"<?cs /if ?>>Class Index</a></nobr
    [all...]

Completed in 1579 milliseconds

1 23 4 5 6 7 8 910