HomeSort by relevance Sort by last modified time
    Searched defs:Elements (Results 1 - 25 of 26) sorted by null

1 2

  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRRewriteRuleElementStream.h 33 } Elements;
38 BOOL dirty; ///< indicates whether the stream should return copies of its elements, set to true after a call to -reset
40 Elements elements; variable
49 @property (assign, getter=GetElement, setter=SetElement:) Elements elements; variable
60 elements:(NSArray *)theElements;
64 - (id) initWithTreeAdaptor:(id<ANTLRTreeAdaptor>)aTreeAdaptor description:(NSString *)anElementDescription elements:(NSArray *)theElements;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRRewriteRuleElementStream.h 33 } Elements;
38 BOOL dirty; ///< indicates whether the stream should return copies of its elements, set to true after a call to -reset
40 Elements elements; variable
49 @property (assign, getter=GetElement, setter=SetElement:) Elements elements; variable
60 elements:(NSArray *)theElements;
64 - (id) initWithTreeAdaptor:(id<ANTLRTreeAdaptor>)aTreeAdaptor description:(NSString *)anElementDescription elements:(NSArray *)theElements;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRRewriteRuleElementStream.h 33 } Elements;
38 BOOL dirty; ///< indicates whether the stream should return copies of its elements, set to true after a call to -reset
40 Elements elements; variable
49 @property (assign, getter=GetElement, setter=SetElement:) Elements elements; variable
60 elements:(NSArray *)theElements;
64 - (id) initWithTreeAdaptor:(id<ANTLRTreeAdaptor>)aTreeAdaptor description:(NSString *)anElementDescription elements:(NSArray *)theElements;
  /external/llvm/lib/Linker/
LinkModules.cpp 204 SmallVector<Type*, 16> Elements;
220 Elements.resize(SrcSTy->getNumElements());
221 for (unsigned i = 0, e = Elements.size(); i != e; ++i)
222 Elements[i] = getImpl(SrcSTy->getElementType(i));
224 DstSTy->setBody(Elements, SrcSTy->isPacked());
259 // If this is not a named struct type, then just map all of the elements and
267 // Remap all of the elements, keeping track of whether any of them change.
    [all...]
  /frameworks/compile/slang/
slang_rs_export_type.cpp 434 // Check all elements
    [all...]
  /external/clang/lib/CodeGen/
TargetInfo.cpp 883 SmallVector<llvm::Type*, 3> Elements;
885 Elements.push_back(Int32);
886 llvm::Type *Result = llvm::StructType::get(LLVMContext, Elements);
    [all...]
CGExprConstant.cpp 43 SmallVector<llvm::Constant *, 32> Elements;
150 Elements.push_back(InitCst);
195 assert(!Elements.empty() && "Elements can't be empty!");
231 llvm::Value *LastElt = Elements.back();
252 Elements.pop_back();
257 assert(isa<llvm::UndefValue>(Elements.back()) &&
258 Elements.back()->getType()->isIntegerTy(CharWidth) &&
263 Elements.back() = llvm::ConstantInt::get(CGM.getLLVMContext(), Tmp);
283 Elements.push_back(llvm::ConstantInt::get(CGM.getLLVMContext(), Tmp))
    [all...]
CGDebugInfo.cpp 406 llvm::DIArray Elements = DBuilder.getOrCreateArray(EltTys);
408 ObjNode->replaceOperandWith(10, Elements);
683 llvm::DIArray Elements;
691 Elements = DBuilder.getOrCreateArray(EltTys);
699 Flags, llvm::DIType(), Elements);
725 Elements = DBuilder.getOrCreateArray(EltTys);
729 Flags, llvm::DIType(), Elements);
811 SmallVectorImpl<llvm::Value *> &elements,
835 elements.push_back(fieldType);
849 elements.push_back(fieldType)
    [all...]
CodeGenModule.cpp     [all...]
CGObjCGNU.cpp 191 /// Generates a global structure, initialized by the elements in the vector.
192 /// The element types must match the types of the structure elements in the
204 /// elements that the array type declares, of the type specified as the array
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfCompileUnit.cpp 884 DIArray Elements = CTy.getTypeArray();
887 for (unsigned i = 0, N = Elements.getNumElements(); i < N; ++i) {
889 DIDescriptor Enum(Elements.getElement(i));
904 DIArray Elements = CTy.getTypeArray();
905 DIDescriptor RTy = Elements.getElement(0);
910 for (unsigned i = 1, N = Elements.getNumElements(); i < N; ++i) {
911 DIDescriptor Ty = Elements.getElement(i);
    [all...]
DwarfDebug.cpp 145 DIArray Elements = blockStruct.getTypeArray();
147 for (unsigned i = 0, N = Elements.getNumElements(); i < N; ++i) {
148 DIDescriptor Element = Elements.getElement(i);
    [all...]
  /external/llvm/lib/TableGen/
Record.cpp 275 std::vector<Init*> Elements;
277 // Verify that all of the elements of the list are subclasses of the
281 Elements.push_back(CI);
288 return ListInit::get(Elements, this);
637 ListInit::convertInitListSlice(const std::vector<unsigned> &Elements) const {
639 for (unsigned i = 0, e = Elements.size(); i != e; ++i) {
640 if (Elements[i] >= getSize())
642 Vals.push_back(getElement(Elements[i]));
    [all...]
  /external/clang/lib/Parse/
ParseObjc.cpp     [all...]
  /external/clang/lib/Serialization/
ASTReaderStmt.cpp 841 assert(NumElements == E->getNumElements() && "Wrong number of elements");
842 Expr **Elements = E->getElements();
844 Elements[I] = Reader.ReadSubExpr();
852 assert(NumElements == E->getNumElements() && "Wrong number of elements");
    [all...]
  /external/llvm/utils/TableGen/
CodeGenRegisters.cpp 722 const SetTheory::RecVec *Elements = RegBank.getSets().expand(R);
727 for (unsigned i = 0, e = Elements->size(); i != e; ++i) {
728 Orders[0].push_back((*Elements)[i]);
729 const CodeGenRegister *Reg = RegBank.getReg((*Elements)[i]);
    [all...]
  /external/chromium/testing/gmock/include/gmock/
gmock-matchers.h     [all...]
  /external/llvm/lib/Transforms/Instrumentation/
MemorySanitizer.cpp 587 SmallVector<Type*, 4> Elements;
589 Elements.push_back(getShadowTy(ST->getElementType(i)));
590 StructType *Res = StructType::get(*MS.C, Elements, ST->isPacked());
    [all...]
  /external/llvm/lib/IR/
Core.cpp 681 Constant **Elements = unwrap<Constant>(ConstantVals, Count);
682 return wrap(ConstantStruct::getAnon(*unwrap(C), makeArrayRef(Elements, Count),
705 Constant **Elements = unwrap<Constant>(ConstantVals, Count);
708 return wrap(ConstantStruct::get(Ty, makeArrayRef(Elements, Count)));
    [all...]
  /external/clang/lib/AST/
ExprConstant.cpp     [all...]
  /external/clang/lib/Sema/
TreeTransform.h 687 /// number of elements.
695 /// number of elements.
703 /// given the element type and number of elements.
    [all...]
  /external/ceres-solver/internal/ceres/gmock/
gmock.h     [all...]
  /hardware/ti/omap3/omx/video/src/openmax_il/video_decode/inc/
OMX_VideoDec_Utils.h 576 OMX_PTR Elements;
    [all...]
  /prebuilts/tools/common/m2/internal/xom/xom/1.0/
xom-1.0.jar 
  /prebuilts/tools/common/m2/internal/com/ibm/icu/icu4j/2.6.1/
icu4j-2.6.1.jar 

Completed in 453 milliseconds

1 2