Searched refs:kind (Results 1 - 25 of 996) sorted by relevance

1234567891011>>

/external/clang/utils/ABITest/
H A Dbuild-and-summarize-all.sh11 for kind in return-types single-args; do
12 echo "-- $kind-$bits --"
13 (cd $kind-$bits && ../build-and-summarize.sh $1)
/external/v8/src/
H A Delements-kind.h15 // The "fast" kind for elements that only contain SMI values. Must be first
16 // to make it possible to efficiently check maps for this kind.
20 // The "fast" kind for tagged values. Must be second to make it possible to
21 // efficiently check maps for this and the FAST_SMI_ONLY_ELEMENTS kind
26 // The "fast" kind for unwrapped, non-tagged double values.
30 // The "slow" kind.
33 // Elements kind of the "arguments" object (only in sloppy mode).
70 // The number to add to a packed elements kind to reach a holey elements kind
76 const char* ElementsKindToString(ElementsKind kind);
85 IsDictionaryElementsKind(ElementsKind kind) argument
90 IsSloppyArgumentsElements(ElementsKind kind) argument
95 IsStringWrapperElementsKind(ElementsKind kind) argument
100 IsFixedTypedArrayElementsKind(ElementsKind kind) argument
106 IsTerminalElementsKind(ElementsKind kind) argument
112 IsFastElementsKind(ElementsKind kind) argument
118 IsTransitionElementsKind(ElementsKind kind) argument
125 IsFastDoubleElementsKind(ElementsKind kind) argument
131 IsFixedFloatElementsKind(ElementsKind kind) argument
136 IsDoubleOrFloatElementsKind(ElementsKind kind) argument
141 IsFastSmiOrObjectElementsKind(ElementsKind kind) argument
149 IsFastSmiElementsKind(ElementsKind kind) argument
155 IsFastObjectElementsKind(ElementsKind kind) argument
161 IsFastHoleyElementsKind(ElementsKind kind) argument
168 IsHoleyElementsKind(ElementsKind kind) argument
174 IsFastPackedElementsKind(ElementsKind kind) argument
[all...]
/external/libmojo/mojo/public/tools/bindings/generators/
H A Dmojom_js_generator.py39 def JavaScriptType(kind):
40 if kind.imported_from:
41 return kind.imported_from["unique_name"] + "." + kind.name
42 return kind.name
47 if mojom.IsStructKind(field.kind):
49 return "new %s()" % JavaScriptType(field.kind)
51 if field.kind in mojom.PRIMITIVES:
52 return _kind_to_javascript_default_value[field.kind]
53 if mojom.IsStructKind(field.kind)
[all...]
H A Dmojom_cpp_generator.py40 # TODO(rockot, yzshen): The variant handling is kind of a hack currently. Make
108 return ExpressionToText(constant.value, kind=constant.kind)
114 if mojom.IsStructKind(field.kind):
116 if not IsTypemappedKind(field.kind):
117 return "%s::New()" % GetNameForKind(field.kind)
118 return ExpressionToText(field.default, kind=field.kind)
120 if mojom.IsArrayKind(field.kind) or mojom.IsMapKind(field.kind)
[all...]
H A Dmojom_java_generator.py122 return GetNameForElement(element.kind)
146 def GetArrayNullabilityFlags(kind):
153 assert mojom.IsArrayKind(kind)
162 if mojom.IsNullableKind(kind):
164 if mojom.IsNullableKind(kind.kind):
172 def AppendEncodeDecodeParams(initial_params, context, kind, bit):
175 if (kind == mojom.BOOL):
177 if mojom.IsReferenceKind(kind):
178 if mojom.IsArrayKind(kind)
[all...]
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/xpath/
H A DXMPPathSegment.java22 /** kind of the path segment */
23 private int kind; field in class:XMPPathSegment
45 * @param kind the kind of the segment
47 public XMPPathSegment(String name, int kind) argument
50 this.kind = kind;
55 * @return Returns the kind.
59 return kind;
64 * @param kind Th
66 setKind(int kind) argument
[all...]
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/
H A DBindingKey.java34 static BindingKey create(Kind kind, Key key) { argument
35 return new AutoValue_BindingKey(kind, key);
38 abstract Kind kind(); method in class:BindingKey
/external/v8/src/ic/
H A Daccess-compiler.cc45 Code::Kind kind) {
50 if (kind == Code::LOAD_IC || kind == Code::KEYED_LOAD_IC) {
53 DCHECK(kind == Code::STORE_IC || kind == Code::KEYED_STORE_IC);
59 if (kind() == Code::LOAD_IC || kind() == Code::KEYED_LOAD_IC) {
62 DCHECK(kind() == Code::STORE_IC || kind() == Code::KEYED_STORE_IC);
68 if (kind()
44 GetCallingConvention(Isolate* isolate, Code::Kind kind) argument
[all...]
/external/libmojo/mojo/public/tools/bindings/pylib/mojom/generate/
H A Dmodule.py150 between a reference kind and its nullable variation. For example:
261 def __init__(self, name=None, kind=None, value=None, parent_kind=None):
263 self.kind = kind
269 def __init__(self, name=None, kind=None, ordinal=None, default=None,
274 self.kind = kind
282 return GenericRepr(self, {'name': False, 'kind': True})
326 def AddField(self, name, kind, ordinal=None, default=None, attributes=None):
327 field = StructField(name, kind, ordina
[all...]
/external/skia/src/sksl/ast/
H A DSkSLASTDeclaration.h28 ASTDeclaration(Position position, Kind kind) argument
30 , fKind(kind) {}
H A DSkSLASTExpression.h30 ASTExpression(Position position, Kind kind) argument
32 , fKind(kind) {}
H A DSkSLASTStatement.h36 ASTStatement(Position position, Kind kind) argument
38 , fKind(kind) {}
H A DSkSLASTSuffix.h29 ASTSuffix(Position position, Kind kind) argument
31 , fKind(kind) {}
/external/skia/src/sksl/ir/
H A DSkSLProgramElement.h27 ProgramElement(Position position, Kind kind) argument
29 , fKind(kind) {}
H A DSkSLStatement.h35 Statement(Position position, Kind kind) argument
37 , fKind(kind) {}
H A DSkSLSymbol.h27 Symbol(Position position, Kind kind, SkString name) argument
29 , fKind(kind)
/external/clang/lib/Basic/
H A DObjCRuntime.cpp57 Kind kind; local
61 kind = ObjCRuntime::MacOSX;
63 kind = ObjCRuntime::FragileMacOSX;
65 kind = ObjCRuntime::iOS;
67 kind = ObjCRuntime::WatchOS;
72 kind = ObjCRuntime::GNUstep;
74 kind = ObjCRuntime::GCC;
76 kind = ObjCRuntime::ObjFW;
81 TheKind = kind;
89 if (kind
[all...]
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
H A DSDNodeDbgValue.h38 enum DbgValueKind kind; member in class:llvm::SDDbgValue
57 kind = SDNODE;
66 kind = CONST;
73 kind = FRAMEIX;
77 // Returns the kind.
78 DbgValueKind getKind() { return kind; }
84 SDNode *getSDNode() { assert (kind==SDNODE); return u.s.Node; }
87 unsigned getResNo() { assert (kind==SDNODE); return u.s.ResNo; }
90 const Value *getConst() { assert (kind==CONST); return u.Const; }
93 unsigned getFrameIx() { assert (kind
[all...]
/external/elfutils/libelf/
H A Delf_kind.c1 /* Return the kind of file associated with the descriptor.
43 return elf == NULL ? ELF_K_NONE : elf->kind;
H A Dgelf_getclass.c43 return elf == NULL || elf->kind != ELF_K_ELF ? ELFCLASSNONE : elf->class;
/external/llvm/utils/llvm-build/llvmbuild/
H A Dutil.py4 def _write_message(kind, message):
6 sys.stderr.write('%s: %s: %s\n' % (program, kind, message))
/external/llvm/test/MC/Sparc/
H A Dsparc-ctrl-instructions.s5 ! CHECK: ! fixup A - offset: 0, value: foo, kind: fixup_sparc_call30
18 ! CHECK-NEXT: ! fixup A - offset: 0, value: %lo(sym), kind: fixup_sparc_lo10
31 ! CHECK-NEXT: ! fixup A - offset: 0, value: %lo(sym), kind: fixup_sparc_lo10
44 ! CHECK-NEXT: ! fixup A - offset: 0, value: %lo(sym), kind: fixup_sparc_lo10
48 ! CHECK-NEXT: ! fixup A - offset: 0, value: .BB0, kind: fixup_sparc_br22
52 ! CHECK-NEXT: ! fixup A - offset: 0, value: .BB0, kind: fixup_sparc_br22
56 ! CHECK-NEXT: ! fixup A - offset: 0, value: .BB0, kind: fixup_sparc_br22
60 ! CHECK-NEXT: ! fixup A - offset: 0, value: .BB0, kind: fixup_sparc_br22
64 ! CHECK-NEXT: ! fixup A - offset: 0, value: .BB0, kind: fixup_sparc_br22
68 ! CHECK-NEXT: ! fixup A - offset: 0, value: .BB0, kind
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DICULocaleService.java41 * get(ULocale, int, ULocale[]) with KIND_ANY for kind and null for
52 public Object get(ULocale locale, int kind) { argument
53 return get(locale, kind, null);
58 * get(ULocale, int, ULocale[]) with KIND_ANY for kind.
66 * createKey(ULocale.toString(), kind) to create a key, calls getKey, and then
70 public Object get(ULocale locale, int kind, ULocale[] actualReturn) { argument
71 Key key = createKey(locale, kind);
90 * registerObject(Object, ULocale, int kind, boolean visible)
91 * passing KIND_ANY for the kind, and true for the visibility.
99 * registerObject(Object, ULocale, int kind, boolea
111 registerObject(Object obj, ULocale locale, int kind) argument
119 registerObject(Object obj, ULocale locale, int kind, boolean visible) argument
167 private int kind; field in class:ICULocaleService.LocaleKey
185 createWithCanonicalFallback(String primaryID, String canonicalFallbackID, int kind) argument
196 createWithCanonical(ULocale locale, String canonicalFallbackID, int kind) argument
210 LocaleKey(String primaryID, String canonicalPrimaryID, String canonicalFallbackID, int kind) argument
248 public int kind() { method in class:ICULocaleService.LocaleKey
441 handleCreate(ULocale loc, int kind, ICUService service) argument
485 private final int kind; field in class:ICULocaleService.SimpleLocaleKeyFactory
488 SimpleLocaleKeyFactory(Object obj, ULocale locale, int kind, boolean visible) argument
492 SimpleLocaleKeyFactory(Object obj, ULocale locale, int kind, boolean visible, String name) argument
596 handleCreate(ULocale loc, int kind, ICUService service) argument
633 createKey(String id, int kind) argument
637 createKey(ULocale l, int kind) argument
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DICULocaleService.java37 * get(ULocale, int, ULocale[]) with KIND_ANY for kind and null for
48 public Object get(ULocale locale, int kind) { argument
49 return get(locale, kind, null);
54 * get(ULocale, int, ULocale[]) with KIND_ANY for kind.
62 * createKey(ULocale.toString(), kind) to create a key, calls getKey, and then
66 public Object get(ULocale locale, int kind, ULocale[] actualReturn) { argument
67 Key key = createKey(locale, kind);
86 * registerObject(Object, ULocale, int kind, boolean visible)
87 * passing KIND_ANY for the kind, and true for the visibility.
95 * registerObject(Object, ULocale, int kind, boolea
107 registerObject(Object obj, ULocale locale, int kind) argument
115 registerObject(Object obj, ULocale locale, int kind, boolean visible) argument
163 private int kind; field in class:ICULocaleService.LocaleKey
181 createWithCanonicalFallback(String primaryID, String canonicalFallbackID, int kind) argument
192 createWithCanonical(ULocale locale, String canonicalFallbackID, int kind) argument
206 LocaleKey(String primaryID, String canonicalPrimaryID, String canonicalFallbackID, int kind) argument
244 public int kind() { method in class:ICULocaleService.LocaleKey
437 handleCreate(ULocale loc, int kind, ICUService service) argument
481 private final int kind; field in class:ICULocaleService.SimpleLocaleKeyFactory
484 SimpleLocaleKeyFactory(Object obj, ULocale locale, int kind, boolean visible) argument
488 SimpleLocaleKeyFactory(Object obj, ULocale locale, int kind, boolean visible, String name) argument
592 handleCreate(ULocale loc, int kind, ICUService service) argument
629 createKey(String id, int kind) argument
633 createKey(ULocale l, int kind) argument
[all...]
/external/clang/bindings/python/tests/cindex/
H A Dtest_cursor.py43 assert tu_nodes[0].kind == CursorKind.STRUCT_DECL
54 assert s0_nodes[0].kind == CursorKind.FIELD_DECL
56 assert s0_nodes[0].type.kind == TypeKind.INT
57 assert s0_nodes[1].kind == CursorKind.FIELD_DECL
59 assert s0_nodes[1].type.kind == TypeKind.INT
61 assert tu_nodes[1].kind == CursorKind.STRUCT_DECL
66 assert tu_nodes[2].kind == CursorKind.FUNCTION_DECL
123 assert xs[0].kind == CursorKind.CLASS_DECL
125 assert cs[0].kind == CursorKind.CONSTRUCTOR
126 assert cs[1].kind
[all...]

Completed in 733 milliseconds

1234567891011>>