HomeSort by relevance Sort by last modified time
    Searched full:literalexpression (Results 1 - 8 of 8) sorted by null

  /system/tools/aidl/
ast_cpp_unittest.cpp 160 args.emplace_back(new LiteralExpression("foo()"));
166 Statement s(new LiteralExpression("foo"));
172 new LiteralExpression("lhs"), "&&", new LiteralExpression("rhs"));
211 IfStatement s(new LiteralExpression("foo"));
216 IfStatement s2(new LiteralExpression("bar"));
type_java.cpp 65 addTo->Add(new LiteralExpression("/* WriteToParcel error " + m_javaType +
73 addTo->Add(new LiteralExpression("/* CreateFromParcel error " +
81 addTo->Add(new LiteralExpression("/* ReadFromParcel error " +
87 return new LiteralExpression("0");
93 return new LiteralExpression("0");
195 new Ternary(v, new LiteralExpression("1"), new LiteralExpression("0"))));
201 new Assignment(v, new Comparison(new LiteralExpression("0"), "!=",
326 new MethodCall(parcel, "writeInt", 1, new LiteralExpression("0")));
331 new MethodCall(parcel, "writeInt", 1, new LiteralExpression("1")))
    [all...]
ast_cpp.h 334 class LiteralExpression : public AstNode {
336 explicit LiteralExpression(const std::string& expression);
337 ~LiteralExpression() = default;
343 DISALLOW_COPY_AND_ASSIGN(LiteralExpression);
344 }; // class LiteralExpression
generate_java_binder.cpp 81 new LiteralExpression("DESCRIPTOR"));
145 queryLocalInterface->arguments.push_back(new LiteralExpression("DESCRIPTOR"));
161 new LiteralExpression(interfaceType->JavaType()));
229 lencheck->expression = new Comparison(len, "<", new LiteralExpression("0"));
310 new LiteralExpression("DESCRIPTOR")));
427 _data, "writeInterfaceToken", 1, new LiteralExpression("DESCRIPTOR")));
439 new MethodCall(_data, "writeInt", 1, new LiteralExpression("-1")));
452 new LiteralExpression("Stub." + transactCodeName), _data,
454 new LiteralExpression(oneway ? "android.os.IBinder.FLAG_ONEWAY" : "0"));
494 new LiteralExpression("DESCRIPTOR")))
    [all...]
ast_cpp.cpp 109 arguments_.emplace_back(new LiteralExpression(s));
211 new LiteralExpression(expression_str)));
306 : Assignment(left, new LiteralExpression{right}) {}
354 : expression_(new LiteralExpression(expression)) {}
374 LiteralExpression::LiteralExpression(const std::string& expression)
377 void LiteralExpression::Write(CodeWriter* to) const {
ast_java.h 69 struct LiteralExpression : public Expression {
72 LiteralExpression(const std::string& value);
73 virtual ~LiteralExpression() = default;
generate_cpp.cpp 67 new LiteralExpression(kAndroidStatusVarName), "!=",
68 new LiteralExpression(kAndroidStatusOk)));
75 new LiteralExpression(kAndroidStatusVarName), "!=",
76 new LiteralExpression(kAndroidStatusOk)));
84 new LiteralExpression(kAndroidStatusVarName), "!=",
85 new LiteralExpression(kAndroidStatusOk)));
324 new LiteralExpression(StringPrintf("!%s.isOk()", kStatusVarName)));
465 new LiteralExpression(StringPrintf("!%s.isOk()", kStatusVarName)));
544 new LiteralExpression(string(kAndroidStatusVarName) +
ast_java.cpp 82 LiteralExpression::LiteralExpression(const string& v) : value(v) {}
84 void LiteralExpression::Write(CodeWriter* to) const {

Completed in 107 milliseconds