/external/chromium_org/third_party/angle/src/compiler/translator/ |
UtilsHLSL.h | 21 TString TextureString(const TType &type); 22 TString SamplerString(const TType &type); 24 TString Decorate(const TString &string); 25 TString DecorateUniform(const TString &string, const TType &type); 26 TString DecorateField(const TString &string, const TStructure &structure); 27 TString DecoratePrivate(const TString &privateText) [all...] |
StructureHLSL.h | 29 explicit Std140PaddingHelper(const std::map<TString, int> &structElementIndexes, 34 TString prePaddingString(const TType &type); 35 TString postPaddingString(const TType &type, bool useHLSLRowMajorPacking); 38 TString next(); 42 const std::map<TString, int> &mStructElementIndexes; 50 void addConstructor(const TType &type, const TString &name, const TIntermSequence *parameters); 53 TString defineQualified(const TStructure &structure, bool useHLSLRowMajorPacking, bool useStd140Packing); 54 static TString defineNameless(const TStructure &structure); 61 std::map<TString, int> mStd140StructElementIndexes; 63 typedef std::set<TString> StructNames [all...] |
UniformHLSL.h | 26 TString uniformsHeader(ShShaderOutput outputType, const ReferencedSymbols &referencedUniforms); 27 TString interfaceBlocksHeader(const ReferencedSymbols &referencedInterfaceBlocks); 30 static TString interfaceBlockInstanceString(const TInterfaceBlock& interfaceBlock, unsigned int arrayIndex); 42 TString interfaceBlockString(const TInterfaceBlock &interfaceBlock, unsigned int registerIndex, unsigned int arrayIndex); 43 TString interfaceBlockMembersString(const TInterfaceBlock &interfaceBlock, TLayoutBlockStorage blockStorage); 44 TString interfaceBlockStructString(const TInterfaceBlock &interfaceBlock); 45 const Uniform *findUniformByName(const TString &name) const; 48 unsigned int declareUniformAndAssignRegister(const TType &type, const TString &name);
|
OutputHLSL.h | 25 typedef std::map<TString, TIntermSymbol*> ReferencedSymbols; 40 static TString initializer(const TType &type); 59 void outputTriplet(Visit visit, const TString &preString, const TString &inString, const TString &postString); 61 TString argumentString(const TIntermSymbol *symbol); 64 void outputConstructor(Visit visit, const TType &type, const TString &name, const TIntermSequence *parameters); 106 TString name() const; 153 TString structInitializerString(int indent, const TStructure &structure, const TString &rhsStructName) [all...] |
ParseContext.h | 64 TString HashErrMsg; 81 const TVariable *getNamedVariable(const TSourceLoc &location, const TString *name, const TSymbol *symbol); 83 bool parseVectorFields(const TString&, int vecSize, TVectorFields&, const TSourceLoc& line); 84 bool parseMatrixFields(const TString&, int matCols, int matRows, TMatrixFields&, const TSourceLoc& line); 86 bool reservedErrorCheck(const TSourceLoc& line, const TString& identifier); 87 void assignError(const TSourceLoc& line, const char* op, TString left, TString right); 88 void unaryOpError(const TSourceLoc& line, const char* op, TString operand); 89 void binaryOpError(const TSourceLoc& line, const char* op, TString left, TString right) [all...] |
RenameFunction.h | 18 RenameFunction(const TString& oldFunctionName, const TString& newFunctionName) 32 const TString mOldFunctionName; 33 const TString mNewFunctionName;
|
OutputGLSLBase.h | 33 TString getTypeName(const TType &type); 48 TString hashName(const TString &name); 50 TString hashVariableName(const TString &name); 52 TString hashFunctionName(const TString &mangled_name); 54 virtual TString translateTextureFunction(TString &name) { return name; }
|
SymbolTable.h | 44 TSymbol(const TString *n) 54 const TString &getName() const 58 virtual const TString &getMangledName() const 78 void relateToExtension(const TString &ext) 82 const TString &getExtension() const 91 const TString *name; 92 TString extension; 106 TVariable(const TString *name, const TType &t, bool uT = false) 173 TString *name; 188 TFunction(const TString *name, const TType &retType, TOperator tOp = EOpNull [all...] |
OutputGLSL.h | 25 virtual TString translateTextureFunction(TString& name);
|
SearchSymbol.h | 20 SearchSymbol(const TString &symbol); 28 const TString &mSymbol;
|
UtilsHLSL.cpp | 17 TString SamplerString(const TType &type) 29 TString TextureString(const TType &type) 55 TString DecorateUniform(const TString &string, const TType &type) 65 TString DecorateField(const TString &string, const TStructure &structure) 75 TString DecoratePrivate(const TString &privateText) 80 TString Decorate(const TString &string [all...] |
UniformHLSL.cpp | 34 static TString InterfaceBlockFieldTypeString(const TField &field, TLayoutBlockStorage blockStorage) 44 const TString &matrixPackString = (matrixPacking == EmpRowMajor ? "column_major" : "row_major"); 59 static TString InterfaceBlockStructName(const TInterfaceBlock &interfaceBlock) 83 const Uniform *UniformHLSL::findUniformByName(const TString &name) const 97 unsigned int UniformHLSL::declareUniformAndAssignRegister(const TType &type, const TString &name) 120 TString UniformHLSL::uniformsHeader(ShShaderOutput outputType, const ReferencedSymbols &referencedUniforms) 122 TString uniforms; 129 const TString &name = uniform.getSymbol(); 148 const TString &typeName = ((structure && !structure->name().empty()) ? 151 const TString ®isterString = TString("register(") + UniformRegisterPrefix(type) + str(registerIndex) + ")" [all...] |
DetectCallDepth.h | 40 FunctionNode(const TString& fname); 42 const TString& getName() const; 55 TString name; 64 FunctionNode* findFunctionByName(const TString& name);
|
Common.h | 45 typedef std::basic_string <char, std::char_traits<char>, TStringAllocator> TString; 47 inline TString* NewPoolTString(const char* s) 49 void* memory = GetGlobalPoolAllocator()->allocate(sizeof(TString)); 50 return new(memory) TString(s); 81 // Integer to TString conversion 83 inline TString str(T i)
|
StructureHLSL.cpp | 20 Std140PaddingHelper::Std140PaddingHelper(const std::map<TString, int> &structElementIndexes, 27 TString Std140PaddingHelper::next() 70 TString Std140PaddingHelper::prePaddingString(const TType &type) 74 TString padding; 84 TString Std140PaddingHelper::postPaddingString(const TType &type, bool useHLSLRowMajorPacking) 108 const TString &structName = QualifiedStructNameString(*structure, 123 TString padding; 140 TString StructureHLSL::defineQualified(const TStructure &structure, bool useHLSLRowMajorPacking, bool useStd140Packing) 153 TString StructureHLSL::defineNameless(const TStructure &structure) 158 TString StructureHLSL::define(const TStructure &structure, bool useHLSLRowMajorPacking [all...] |
Types.h | 24 TField(TType *type, TString *name, const TSourceLoc &line) 42 const TString &name() const 54 TString *mName; 68 const TString &name() const 77 const TString &mangledName() const 91 TFieldListCollection(const TString *name, TFieldList *fields) 97 TString buildMangledName() const; 99 virtual TString mangledNamePrefix() const = 0; 101 const TString *mName; 104 mutable TString mMangledName [all...] |
InitializeVariables.h | 17 TString name; 20 InitVariableInfo(const TString &_name, const TType &_type)
|
OutputGLSL.cpp | 38 TString TOutputGLSL::translateTextureFunction(TString& name)
|
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/ |
TString.java | 8 public final class TString extends Token 10 public TString(String text) 15 public TString(String text, int line, int pos) 25 return new TString(getText(), getLine(), getPos());
|
AStringExpression.java | 10 private TString _value_; 18 @SuppressWarnings("hiding") TString _value_) 37 public TString getValue() 42 public void setValue(TString node) 88 setValue((TString) newChild);
|
AContentTypeCommand.java | 11 private TString _string_; 20 @SuppressWarnings("hiding") TString _string_) 67 public TString getString() 72 public void setString(TString node) 131 setString((TString) newChild);
|
/external/chromium_org/third_party/skia/third_party/lua/src/ |
lstring.h | 15 #define sizestring(s) (sizeof(union TString)+((s)->len+1)*sizeof(char)) 38 LUAI_FUNC int luaS_eqlngstr (TString *a, TString *b); 39 LUAI_FUNC int luaS_eqstr (TString *a, TString *b); 42 LUAI_FUNC TString *luaS_newlstr (lua_State *L, const char *str, size_t l); 43 LUAI_FUNC TString *luaS_new (lua_State *L, const char *str);
|
llex.h | 39 TString *ts; 62 TString *source; /* current source name */ 63 TString *envn; /* environment variable name */ 70 TString *source, int firstchar); 71 LUAI_FUNC TString *luaX_newstring (LexState *ls, const char *str, size_t l);
|
lstring.c | 33 int luaS_eqlngstr (TString *a, TString *b) { 45 int luaS_eqstr (TString *a, TString *b) { 98 static TString *createstrobj (lua_State *L, const char *str, size_t l, 100 TString *ts; 101 size_t totalsize; /* total size of TString object */ 102 totalsize = sizeof(TString) + ((l + 1) * sizeof(char)); 116 static TString *newshrstr (lua_State *L, const char *str, size_t l, 120 TString *s [all...] |
/external/chromium_org/tools/win/link_limiter/ |
limiter.cc | 17 typedef std::basic_string<TCHAR> tstring; typedef 26 tstring new_msg = tstring(L"limiter fatal error: ") + msg + L"\n"; 36 tstring new_msg = tstring(L"limiter warning: ") + msg + L"\n"; 43 static tstring ErrorMessageToString(DWORD err) { 55 tstring ret(msg_buf); 60 static DWORD RunExe(const tstring& exe_name) { 66 tstring cmdline = tstring(GetCommandLine()) [all...] |