HomeSort by relevance Sort by last modified time
    Searched refs:TString (Results 1 - 25 of 129) sorted by null

1 2 3 4 5 6

  /external/clang/test/Modules/Inputs/PR27739/
DataInputHandler.h 6 struct TString {
7 TString (char *);
17 map <TString, vector <TreeInfo> >fInputTrees;
  /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);
  /device/linaro/bootloader/edk2/AppPkg/Applications/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/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/syslinux/com32/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...]
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/glslang/MachineIndependent/
Initialize.h 66 virtual const TString& getCommonString() const { return commonBuiltins; }
67 virtual const TString& getStageString(EShLanguage language) const { return stageBuiltins[language]; }
74 TString commonBuiltins;
75 TString stageBuiltins[EShLangCount];
97 void addSubpassSampling(TSampler, TString& typeName, int version, EProfile profile);
98 void addQueryFunctions(TSampler, TString& typeName, int version, EProfile profile);
99 void addImageFunctions(TSampler, TString& typeName, int version, EProfile profile);
100 void addSamplingFunctions(TSampler, TString& typeName, int version, EProfile profile);
101 void addGatherFunctions(TSampler, TString& typeName, int version, EProfile profile);
ParseHelper.h 96 virtual void setPragmaCallback(const std::function<void(int, const TVector<TString>&)>& func) { pragmaCallback = func; }
102 virtual void handlePragma(const TSourceLoc&, const TVector<TString>&) = 0;
141 std::function<void(int, const TVector<TString>&)> pragmaCallback;
171 void reservedErrorCheck(const TSourceLoc&, const TString&);
175 bool builtInName(const TString&);
177 void handlePragma(const TSourceLoc&, const TVector<TString>&);
178 TIntermTyped* handleVariable(const TSourceLoc&, TSymbol* symbol, const TString* string);
187 void ioArrayCheck(const TSourceLoc&, const TType&, const TString& identifier);
191 void checkIoArrayConsistency(const TSourceLoc&, int requiredSize, const char* feature, TType&, const TString&);
195 TIntermTyped* handleDotDereference(const TSourceLoc&, TIntermTyped* base, const TString& field)
    [all...]
reflection.h 57 TObjectReflection(const TString& pName, int pOffset, int pGLDefineType, int pSize, int pIndex) :
60 TString name;
121 // Need a TString hash: typedef std::unordered_map<TString, int> TNameToIndex;
122 typedef std::map<TString, int> TNameToIndex;
SymbolTable.h 84 explicit TSymbol(const TString *n) : name(n), numExtensions(0), extensions(0), writable(true) { }
88 virtual const TString& getName() const { return *name; }
89 virtual void changeName(const TString* newName) { name = newName; }
90 virtual const TString& getMangledName() const { return getName(); }
120 const TString *name;
147 TVariable(const TString *name, const TType& t, bool uT = false )
188 TString *name;
209 TFunction(const TString *name, const TType& retType, TOperator tOp = EOpNull) :
227 virtual const TString& getMangledName() const { return mangledName; }
250 TString mangledName
    [all...]
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/hlsl/
hlslParseHelper.h 66 bool builtInName(const TString&);
68 void handlePragma(const TSourceLoc&, const TVector<TString>&);
69 TIntermTyped* handleVariable(const TSourceLoc&, TSymbol* symbol, const TString* string);
80 void checkIoArrayConsistency(const TSourceLoc&, int requiredSize, const char* feature, TType&, const TString&);
84 TIntermTyped* handleDotDereference(const TSourceLoc&, TIntermTyped* base, const TString& field);
96 void handleSemantic(TType& type, const TString& semantic);
100 bool parseVectorFields(const TSourceLoc&, const TString&, int vecSize, TVectorFields&);
101 void assignError(const TSourceLoc&, const char* op, TString left, TString right);
102 void unaryOpError(const TSourceLoc&, const char* op, TString operand)
    [all...]
  /external/swiftshader/src/OpenGL/compiler/
ParseHelper.h 112 const TVariable *getNamedVariable(const TSourceLoc &location, const TString *name, const TSymbol *symbol);
114 bool parseVectorFields(const TString&, int vecSize, TVectorFields&, const TSourceLoc &line);
115 bool parseMatrixFields(const TString&, int matCols, int matRows, TMatrixFields&, const TSourceLoc &line);
117 bool reservedErrorCheck(const TSourceLoc &line, const TString& identifier);
118 void assignError(const TSourceLoc &line, const char* op, TString left, TString right);
119 void unaryOpError(const TSourceLoc &line, const char* op, TString operand);
120 void binaryOpError(const TSourceLoc &line, const char* op, TString left, TString right);
130 bool voidErrorCheck(const TSourceLoc&, const TString&, const TBasicType&)
    [all...]
AnalyzeCallDepth.h 41 const TString &getName() const;
56 FunctionNode *findFunctionByName(const TString &name);
Types.h 31 TField(TType *type, TString *name, const TSourceLoc &line)
49 const TString &name() const
60 TString *mName;
75 const TString &name() const
84 const TString &mangledName() const
98 TFieldListCollection(const TString *name, TFieldList *fields)
104 TString buildMangledName() const;
106 virtual TString mangledNamePrefix() const = 0;
108 const TString *mName;
111 mutable TString mMangledName
    [all...]
Common.h 49 typedef std::basic_string <char, std::char_traits<char>, TStringAllocator> TString;
51 inline TString* NewPoolTString(const char* s)
53 void* memory = GetGlobalPoolAllocator()->allocate(sizeof(TString));
54 return new(memory) TString(s);
SymbolTable.h 58 TSymbol(const TString *n) : name(n) { }
61 const TString& getName() const { return *name; }
62 virtual const TString& getMangledName() const { return getName(); }
70 const TString *name;
87 TVariable(const TString *name, const TType& t, bool uT = false ) : TSymbol(name), type(t), userType(uT), unionArray(0), arrayInformationType(0) { }
132 TString *name;
148 TFunction(const TString *name, const TType& retType, TOperator tOp = EOpNull, const char *ext = "") :
159 static TString mangleName(const TString& name) { return name + '('; }
160 static TString unmangleName(const TString& mangledName
    [all...]
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/glslang/Include/
Common.h 116 typedef std::basic_string <char, std::char_traits<char>, TStringAllocator> TString;
120 // Repackage the std::hash for use by unordered map/set with a TString key.
123 template<> struct hash<glslang::TString> {
124 std::size_t operator()(const glslang::TString& s) const
144 inline TString* NewPoolTString(const char* s)
146 void* memory = GetThreadPoolAllocator().allocate(sizeof(TString));
147 return new(memory) TString(s);
198 // Create a TString object from an integer.
200 inline const TString String(const int i, const int base = 10)
229 typedef TMap<TString, TString> TPragmaTable
    [all...]
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/glslang/MachineIndependent/preprocessor/
PpAtom.cpp 153 const TString* atomString = stringMap[atom];
163 auto it = atomMap.insert(std::pair<TString, int>(s, atom)).first;

Completed in 2008 milliseconds

1 2 3 4 5 6