HomeSort by relevance Sort by last modified time
    Searched refs:is_get (Results 1 - 4 of 4) sorted by null

  /external/v8/src/
scanner.h 397 void IsGetOrSet(bool* is_get, bool* is_set) {
403 *is_get = strncmp(token, "get", 3) == 0;
404 *is_set = !*is_get && strncmp(token, "set", 3) == 0;
preparser.h 476 IdentifierT ParseIdentifierNameOrGetOrSet(bool* is_get,
485 IdentifierT ParsePropertyName(bool* is_get, bool* is_set, bool* is_static,
1945 bool is_get = false; local
    [all...]
  /art/compiler/optimizing/
builder.h 166 bool is_get,
  /frameworks/base/tools/apilint/
apilint.py 661 def is_get(m): return len(m.args) == 0 and m.typ == "boolean" function in function:verify_boolean
664 gets = [ m for m in clazz.methods if is_get(m) ]
673 if is_get(m):
    [all...]

Completed in 192 milliseconds