HomeSort by relevance Sort by last modified time
    Searched full:parsetype (Results 1 - 25 of 122) sorted by null

1 2 3 4 5

  /prebuilts/go/darwin-x86/src/go/internal/gccgoimporter/
parser.go 206 typ := p.parseType(pkg)
235 typ := p.parseType(pkg)
246 return types.NewVar(token.NoPos, pkg, name, p.parseType(pkg))
253 typ = p.parseType(pkg)
363 typ = p.parseType(pkg)
400 pt := p.parseType(pkg)
407 underlying := p.parseType(pkg)
444 return types.NewSlice(p.parseType(pkg))
449 return types.NewArray(p.parseType(pkg), n)
456 key := p.parseType(pkg
    [all...]
parser_test.go 42 typ := p.parseType(p.pkg)
  /prebuilts/go/linux-x86/src/go/internal/gccgoimporter/
parser.go 206 typ := p.parseType(pkg)
235 typ := p.parseType(pkg)
246 return types.NewVar(token.NoPos, pkg, name, p.parseType(pkg))
253 typ = p.parseType(pkg)
363 typ = p.parseType(pkg)
400 pt := p.parseType(pkg)
407 underlying := p.parseType(pkg)
444 return types.NewSlice(p.parseType(pkg))
449 return types.NewArray(p.parseType(pkg), n)
456 key := p.parseType(pkg
    [all...]
parser_test.go 42 typ := p.parseType(p.pkg)
  /external/llvm/unittests/AsmParser/
AsmParserTest.cpp 179 Ty = parseType("i32", Error, M, &Mapping);
185 Ty = parseType("i13", Error, M, &Mapping);
191 Ty = parseType("float", Error, M, &Mapping);
195 Ty = parseType("double", Error, M, &Mapping);
201 Ty = parseType("%st", Error, M, &Mapping);
215 Ty = parseType("%0", Error, M, &Mapping);
229 Ty = parseType("<5 x i32>", Error, M, &Mapping);
242 Ty = parseType("%opaque", Error, M, &Mapping);
251 Ty = parseType("i32*", Error, M, &Mapping);
261 Ty = parseType("i32**", Error, M, &Mapping)
    [all...]
  /external/r8/src/main/java/com/android/tools/r8/naming/
ProguardMapReader.java 160 String before = parseType(false);
172 String after = parseType(false);
312 private String parseType(boolean allowArray) {
329 String type = parseType(true);
340 items.add(parseType(true));
343 items.add(parseType(true));
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
XMPSerializerRDF.java 453 * &lt;ns:UnqualifiedStructProperty-2 rdf:parseType=&quot;Resource&quot;&gt;
471 * &lt;ns:QualifiedProperty rdf:parseType=&quot;Resource&quot;&gt;
694 write(" rdf:parseType=\"Resource\"/>");
713 write(" rdf:parseType=\"Resource\">");
752 write(" rdf:parseType=\"Resource\">");
920 * &lt;ns:UnqualifiedStructProperty rdf:parseType=&quot;Resource&quot;&gt;
935 * &lt;ns:QualifiedProperty rdf:parseType=&quot;Resource&quot;&gt;
1012 write(" rdf:parseType=\"Resource\">");
1076 // This is a "normal" struct, use the rdf:parseType="Resource" form.
1079 write(" rdf:parseType=\"Resource\"/>")
    [all...]
  /frameworks/opt/bluetooth/src/android/bluetooth/client/map/
BluetoothMapEventReport.java 71 mType = parseType(attrs.get("type"));
107 private Type parseType(String type) throws IllegalArgumentException {
  /packages/apps/Bluetooth/src/com/android/bluetooth/mapclient/obex/
EventReport.java 47 mType = parseType(attrs.get("type"));
123 private Type parseType(String type) throws IllegalArgumentException {
  /external/llvm/lib/AsmParser/
LLParser.h 294 bool ParseType(Type *&Result, const Twine &Msg, bool AllowVoid = false);
295 bool ParseType(Type *&Result, bool AllowVoid = false) {
296 return ParseType(Result, "expected type", AllowVoid);
298 bool ParseType(Type *&Result, const Twine &Msg, LocTy &Loc,
301 return ParseType(Result, Msg, AllowVoid);
303 bool ParseType(Type *&Result, LocTy &Loc, bool AllowVoid = false) {
305 return ParseType(Result, AllowVoid);
  /frameworks/base/tools/aapt2/unflatten/
BinaryResourceParser.h 62 bool ParseType(const ResourceTablePackage* package,
  /system/core/libutils/include/utils/
PropertyMap.h 94 status_t parseType();
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
mimetools.py 30 self.parsetype()
33 def parsetype(self): member in class:Message
  /external/python/cpython2/Lib/
mimetools.py 30 self.parsetype()
33 def parsetype(self): member in class:Message
  /external/r8/src/test/java/com/android/tools/r8/utils/
ArtErrorParser.java 219 String methodReturn = parseType(input);
242 private static String parseType(ParseInput input) throws ArtErrorParserException {
  /packages/apps/Tag/src/com/android/apps/tag/record/
SmartPoster.java 142 String type = parseType(recordsRaw);
249 private static String parseType(NdefRecord[] records) {
  /prebuilts/gdb/darwin-x86/lib/python2.7/
mimetools.py 30 self.parsetype()
33 def parsetype(self): member in class:Message
  /prebuilts/gdb/linux-x86/lib/python2.7/
mimetools.py 30 self.parsetype()
33 def parsetype(self): member in class:Message
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
mimetools.py 30 self.parsetype()
33 def parsetype(self): member in class:Message
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
mimetools.py 30 self.parsetype()
33 def parsetype(self): member in class:Message
  /external/deqp/framework/delibs/decpp/
deCommandLine.cpp 319 void parseType<bool> (const char*, bool* dst)
325 void parseType<std::string> (const char* src, std::string* dst)
331 void parseType<int> (const char* src, int* dst)
deCommandLine.hpp 42 void parseType (const char* src, ValueType* dst);
74 , parse (parseType<ValueType>)
  /external/swiftshader/third_party/LLVM/lib/AsmParser/
LLParser.h 219 bool ParseType(Type *&Result, bool AllowVoid = false);
220 bool ParseType(Type *&Result, LocTy &Loc, bool AllowVoid = false) {
222 return ParseType(Result, AllowVoid);
  /external/protobuf/src/google/protobuf/util/internal/
json_stream_parser.h 103 enum ParseType {
208 std::stack<ParseType> stack_;
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_suppressions_test.cc 114 TEST_F(SuppressionContextTest, ParseType) {

Completed in 1179 milliseconds

1 2 3 4 5