HomeSort by relevance Sort by last modified time
    Searched defs:Elem (Results 1 - 5 of 5) sorted by null

  /external/skia/include/xml/
SkXMLWriter.h 38 void startElement(const char elem[]);
39 void startElementLen(const char elem[], size_t length);
45 virtual void onStartElementLen(const char elem[], size_t length) = 0;
49 struct Elem {
53 void doEnd(Elem* elem);
55 Elem* getEnd();
57 SkTDArray<Elem*> fElems;
72 virtual void onStartElementLen(const char elem[], size_t length);
84 virtual void onStartElementLen(const char elem[], size_t length)
    [all...]
  /frameworks/base/media/libstagefright/codecs/mp3dec/src/
pvmp3_getbits.cpp 116 uint8 Elem; /* Needs to be same type as pInput->pBuffer */
129 Elem = *(ptBitStream->pBuffer + module(offset , BUFSIZE));
135 returnValue = (((uint32)(Elem)) << 24) |
164 uint8 Elem; /* Needs to be same type as pInput->pBuffer */
170 Elem = *(ptBitStream->pBuffer + module(offset , BUFSIZE));
174 returnValue = (((uint16)(Elem)) << 8) |
200 uint8 Elem; /* Needs to be same type as pInput->pBuffer */
207 Elem = *(ptBitStream->pBuffer + module(offset , BUFSIZE));
212 returnValue = (((uint32)(Elem)) << 16) |
  /external/llvm/lib/Transforms/Instrumentation/
ProfilingUtils.cpp 143 Constant *Elem[2] = {
166 dtors.push_back(ConstantStruct::get(GlobalDtorElemTy, Elem));
  /external/clang/lib/CodeGen/
CGExprComplex.cpp 192 QualType Elem = E->getType()->getAs<ComplexType>()->getElementType();
193 llvm::Constant *Null = llvm::Constant::getNullValue(CGF.ConvertType(Elem));
198 QualType Elem = E->getType()->getAs<ComplexType>()->getElementType();
200 llvm::Constant::getNullValue(CGF.ConvertType(Elem));
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCasts.cpp     [all...]

Completed in 833 milliseconds