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

1 2 3

  /external/clang/bindings/python/tests/cindex/
test_cursor_kind.py 7 kinds = CursorKind.get_all_kinds()
8 assert CursorKind.UNEXPOSED_DECL in kinds
9 assert CursorKind.TRANSLATION_UNIT in kinds
10 assert CursorKind.VARIABLE_REF in kinds
11 assert CursorKind.LAMBDA_EXPR in kinds
12 assert CursorKind.OBJ_BOOL_LITERAL_EXPR in kinds
13 assert CursorKind.OBJ_SELF_EXPR in kinds
14 assert CursorKind.MS_ASM_STMT in kinds
15 assert CursorKind.MODULE_IMPORT_DECL in kinds
  /external/chromium_org/mojo/public/bindings/generators/
mojom_data.py 45 def KindFromData(kinds, data):
46 if kinds.has_key(data):
47 return kinds[data]
50 kind.kind = KindFromData(kinds, data[2:])
54 kinds[data] = kind
63 def StructFromData(kinds, data):
67 kinds[struct.spec] = struct
68 struct.fields = map(lambda field: FieldFromData(kinds, field), data['fields'])
82 def FieldFromData(kinds, data):
85 field.kind = KindFromData(kinds, data['kind']
    [all...]
mojom_pack_tests.py 45 # |kinds| is a sequence of mojom.Kinds that specify the fields that are to
50 def TestSequence(kinds, fields, offsets):
54 for kind in kinds:
59 errors += EXPECT_EQ(len(kinds), num_fields)
82 kinds = (mojom.INT8, mojom.INT32, mojom.INT16, mojom.INT8, mojom.INT8)
86 return TestSequence(kinds, fields, offsets)
  /dalvik/vm/native/
dalvik_system_VMDebug.cpp 109 unsigned int kinds)
111 if (kinds & KIND_ALLOCATED_OBJECTS) {
114 if (kinds & KIND_ALLOCATED_BYTES) {
117 if (kinds & KIND_FREED_OBJECTS) {
120 if (kinds & KIND_FREED_BYTES) {
123 if (kinds & KIND_GC_INVOCATIONS) {
126 if (kinds & KIND_CLASS_INIT_COUNT) {
129 if (kinds & KIND_CLASS_INIT_TIME) {
216 * public static void resetAllocCount(int kinds)
221 unsigned int kinds = args[0] local
    [all...]
  /external/clang/include/clang/Sema/
Makefile 24 $(Echo) "Building Clang parsed attribute kinds with tablegen"
25 $(Verb) $(ClangTableGen) -gen-clang-attr-parsed-attr-kinds -o \
  /system/media/camera/docs/
metadata_validate.py 164 kinds = ['dynamic', 'static', 'controls']
165 parent_kind = find_parent_by_name(element, kinds)
metadata_model.py 478 for kind in section.kinds:
485 # allow multiple kinds with the same name. merge if adjacent
675 kinds: A sequence of Kind children.
679 def __init__(self, name, parent, description=None, kinds=[]):
683 self._kinds = kinds[:]
693 def kinds(self): member in class:Section
707 return (i for i in self.kinds)
725 new_kinds_lst = reduce(aggregate_by_name, self.kinds, [])
732 Combines the section's Kinds into a single node.
734 Combines all the children (kinds) of this section into a singl
    [all...]
metadata_template.mako 51 % for kind in section.kinds: # dynamic,static,controls
metadata_helpers.py 75 one entry (e.g. if there are multiple entries in different kinds).
82 # remove the 'kinds' from the path between sec and the closest entries
84 search_path = isinstance(node, metadata_model.Section) and node.kinds \
140 as if the Kinds never existed.
  /libcore/dalvik/src/main/java/dalvik/system/
VMDebug.java 242 public static native void resetAllocCount(int kinds);
  /dalvik/vm/compiler/codegen/x86/libenc/
enc_base.cpp 916 kinds[] = {
934 for (unsigned i = 0; i<COUNTOF(kinds); i++) {
935 if (kinds[i].kind==kind) {
936 return kinds[i].kindString;
945 for (unsigned i = 0; i<COUNTOF(kinds); i++) {
946 if (!strcmpi(kindString, kinds[i].kindString)) {
947 return kinds[i].kind;
    [all...]
  /art/runtime/native/
dalvik_system_VMDebug.cc 58 static void VMDebug_resetAllocCount(JNIEnv*, jclass, jint kinds) {
59 Runtime::Current()->ResetStats(kinds);
  /external/chromium_org/v8/test/mjsunit/compiler/
variables.js 28 // Simple tests of the various kinds of variable references in the
  /external/chromium_org/v8/test/mjsunit/regress/
regress-hoist-load-named-field.js 31 // cannot be hoisted due to changes in elements kinds.
  /external/v8/test/mjsunit/compiler/
variables.js 28 // Simple tests of the various kinds of variable references in the
  /external/chromium_org/third_party/re2/re2/testing/
tester.cc 575 static Prog::MatchKind kinds[] = { member in namespace:re2
581 // Test all possible match kinds and parse modes.
584 for (int i = 0; i < arraysize(kinds); i++) {
586 TestInstance* t = new TestInstance(regexp, kinds[i],
  /external/regex-re2/re2/testing/
tester.cc 575 static Prog::MatchKind kinds[] = { member in namespace:re2
581 // Test all possible match kinds and parse modes.
584 for (int i = 0; i < arraysize(kinds); i++) {
586 TestInstance* t = new TestInstance(regexp, kinds[i],
  /external/chromium_org/v8/test/mjsunit/
nans.js 31 // Test that both kinds of NaNs (signaling or quiet) do not signal
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/publishingFiles/dropSiteRootFiles/
index.php 27 about different kinds of builds look <a href="build_types.html">here</a>.</p></td></tr>
  /external/chromium_org/v8/test/webkit/
toString-number-dot-expr.js 29 // construct same test-case for different kinds of number literals. the switch is used to avoid
  /external/chromium_org/v8/tools/profviz/
composer.js 71 function CodeKind(color, kinds) {
76 this.kinds = kinds;
160 if (CodeKinds[name].kinds.indexOf(kind) >= 0) {
  /art/runtime/
runtime.h 381 void ResetStats(int kinds);
runtime.cc     [all...]
  /art/oatdump/
oatdump.cc 572 std::vector<int32_t> kinds = verifier->DescribeVRegs(dex_pc); local
575 VRegKind kind = static_cast<VRegKind>(kinds.at(reg * 2));
586 os << "Imprecise Constant: " << kinds.at((reg * 2) + 1) << ", ";
590 os << "Constant: " << kinds.at((reg * 2) + 1);
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/account/
BaseAccountType.java 710 * This method returns a list, because we need to add 3 kinds for the name data kind.
897 final List<DataKind> kinds = Lists.newArrayList(); local
    [all...]

Completed in 884 milliseconds

1 2 3