Searched refs:kind (Results 1 - 25 of 966) 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.
61 // The number to add to a packed elements kind to reach a holey elements kind
67 const char* ElementsKindToString(ElementsKind kind);
76 inline bool IsDictionaryElementsKind(ElementsKind kind) { argument
81 IsSloppyArgumentsElements(ElementsKind kind) argument
87 IsFixedTypedArrayElementsKind(ElementsKind kind) argument
93 IsTerminalElementsKind(ElementsKind kind) argument
99 IsFastElementsKind(ElementsKind kind) argument
105 IsTransitionElementsKind(ElementsKind kind) argument
111 IsFastDoubleElementsKind(ElementsKind kind) argument
117 IsFixedFloatElementsKind(ElementsKind kind) argument
122 IsDoubleOrFloatElementsKind(ElementsKind kind) argument
127 IsFastSmiOrObjectElementsKind(ElementsKind kind) argument
135 IsFastSmiElementsKind(ElementsKind kind) argument
141 IsFastObjectElementsKind(ElementsKind kind) argument
147 IsFastHoleyElementsKind(ElementsKind kind) argument
154 IsHoleyElementsKind(ElementsKind kind) argument
160 IsFastPackedElementsKind(ElementsKind kind) argument
[all...]
H A Dtype-feedback-vector-inl.h16 FeedbackVectorSlotKind kind) {
20 int entries_per_slot = TypeFeedbackMetadata::GetSlotSize(kind);
21 derived->append(kind);
50 int TypeFeedbackMetadata::GetSlotSize(FeedbackVectorSlotKind kind) { argument
51 DCHECK_NE(FeedbackVectorSlotKind::INVALID, kind);
52 DCHECK_NE(FeedbackVectorSlotKind::KINDS_NUMBER, kind);
53 return kind == FeedbackVectorSlotKind::GENERAL ? 1 : 2;
91 // should know what kind she expects.
119 FeedbackVectorSlotKind kind = iter.kind(); local
15 AddSlot( FeedbackVectorSlotKind kind) argument
162 FeedbackVectorSlotKind kind = vector()->GetKind(slot()); local
178 FeedbackVectorSlotKind kind = vector()->GetKind(slot()); local
[all...]
H A Dglobals.h960 inline bool IsValidFunctionKind(FunctionKind kind) { argument
961 return kind == FunctionKind::kNormalFunction ||
962 kind == FunctionKind::kArrowFunction ||
963 kind == FunctionKind::kGeneratorFunction ||
964 kind == FunctionKind::kConciseMethod ||
965 kind == FunctionKind::kConciseGeneratorMethod ||
966 kind == FunctionKind::kAccessorFunction ||
967 kind == FunctionKind::kDefaultBaseConstructor ||
968 kind == FunctionKind::kDefaultSubclassConstructor ||
969 kind
977 IsArrowFunction(FunctionKind kind) argument
983 IsGeneratorFunction(FunctionKind kind) argument
989 IsConciseMethod(FunctionKind kind) argument
995 IsAccessorFunction(FunctionKind kind) argument
1001 IsDefaultConstructor(FunctionKind kind) argument
1007 IsBaseConstructor(FunctionKind kind) argument
1013 IsSubclassConstructor(FunctionKind kind) argument
1019 IsClassConstructor(FunctionKind kind) argument
1025 IsConstructable(FunctionKind kind, LanguageMode mode) argument
1034 IsInObjectLiteral(FunctionKind kind) argument
1040 WithObjectLiteralBit(FunctionKind kind) argument
[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/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/demos/tunes_db/server/
H A Dindex.yaml20 - kind: Info
25 - kind: Info
32 - kind: Info
/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/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/sdb/db/
H A Dkey.py32 self.kind = obj.kind()
35 self.kind = None
40 def kind(self): member in class:Key
41 return self.kind
/external/v8/src/ic/
H A Daccess-compiler.cc45 Register* PropertyAccessCompiler::GetCallingConvention(Code::Kind kind) { argument
46 if (kind == Code::LOAD_IC || kind == Code::KEYED_LOAD_IC) {
49 DCHECK(kind == Code::STORE_IC || kind == Code::KEYED_STORE_IC);
55 if (kind() == Code::LOAD_IC || kind() == Code::KEYED_LOAD_IC) {
58 DCHECK(kind() == Code::STORE_IC || kind() == Code::KEYED_STORE_IC);
64 if (kind()
[all...]
/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/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/chromium-trace/catapult/third_party/html5lib-python/html5lib/treewalkers/
H A Dgenshistream.py28 kind, data, pos = event
29 if kind == START:
48 elif kind == END:
54 elif kind == COMMENT:
57 elif kind == TEXT:
61 elif kind == DOCTYPE:
64 elif kind in (XML_NAMESPACE, DOCTYPE, START_NS, END_NS,
69 yield self.unknown(kind)
/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/icu/android_icu4j/src/main/java/android/icu/impl/
H A DICULocaleService.java39 * get(ULocale, int, ULocale[]) with KIND_ANY for kind and null for
50 public Object get(ULocale locale, int kind) { argument
51 return get(locale, kind, null);
56 * get(ULocale, int, ULocale[]) with KIND_ANY for kind.
64 * createKey(ULocale.toString(), kind) to create a key, calls getKey, and then
68 public Object get(ULocale locale, int kind, ULocale[] actualReturn) { argument
69 Key key = createKey(locale, kind);
88 * registerObject(Object, ULocale, int kind, boolean visible)
89 * passing KIND_ANY for the kind, and true for the visibility.
97 * registerObject(Object, ULocale, int kind, boolea
109 registerObject(Object obj, ULocale locale, int kind) argument
117 registerObject(Object obj, ULocale locale, int kind, boolean visible) argument
165 private int kind; field in class:ICULocaleService.LocaleKey
183 createWithCanonicalFallback(String primaryID, String canonicalFallbackID, int kind) argument
194 createWithCanonical(ULocale locale, String canonicalFallbackID, int kind) argument
208 LocaleKey(String primaryID, String canonicalPrimaryID, String canonicalFallbackID, int kind) argument
246 public int kind() { method in class:ICULocaleService.LocaleKey
431 handleCreate(ULocale loc, int kind, ICUService service) argument
474 private final int kind; field in class:ICULocaleService.SimpleLocaleKeyFactory
477 SimpleLocaleKeyFactory(Object obj, ULocale locale, int kind, boolean visible) argument
481 SimpleLocaleKeyFactory(Object obj, ULocale locale, int kind, boolean visible, String name) argument
578 handleCreate(ULocale loc, int kind, ICUService service) argument
613 createKey(String id, int kind) argument
617 createKey(ULocale l, int kind) argument
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DICULocaleService.java35 * get(ULocale, int, ULocale[]) with KIND_ANY for kind and null for
46 public Object get(ULocale locale, int kind) { argument
47 return get(locale, kind, null);
52 * get(ULocale, int, ULocale[]) with KIND_ANY for kind.
60 * createKey(ULocale.toString(), kind) to create a key, calls getKey, and then
64 public Object get(ULocale locale, int kind, ULocale[] actualReturn) { argument
65 Key key = createKey(locale, kind);
84 * registerObject(Object, ULocale, int kind, boolean visible)
85 * passing KIND_ANY for the kind, and true for the visibility.
93 * registerObject(Object, ULocale, int kind, boolea
105 registerObject(Object obj, ULocale locale, int kind) argument
113 registerObject(Object obj, ULocale locale, int kind, boolean visible) argument
161 private int kind; field in class:ICULocaleService.LocaleKey
179 createWithCanonicalFallback(String primaryID, String canonicalFallbackID, int kind) argument
190 createWithCanonical(ULocale locale, String canonicalFallbackID, int kind) argument
204 LocaleKey(String primaryID, String canonicalPrimaryID, String canonicalFallbackID, int kind) argument
242 public int kind() { method in class:ICULocaleService.LocaleKey
427 handleCreate(ULocale loc, int kind, ICUService service) argument
470 private final int kind; field in class:ICULocaleService.SimpleLocaleKeyFactory
473 SimpleLocaleKeyFactory(Object obj, ULocale locale, int kind, boolean visible) argument
477 SimpleLocaleKeyFactory(Object obj, ULocale locale, int kind, boolean visible, String name) argument
574 handleCreate(ULocale loc, int kind, ICUService service) argument
609 createKey(String id, int kind) argument
613 createKey(ULocale l, int kind) argument
[all...]
/external/skia/src/animator/
H A DSkDisplayEvents.cpp29 bool SkEvents::doEvent(SkAnimateMaker& maker, SkDisplayEvent::Kind kind, SkEventState* state) { argument
34 SkDump::GetEnumString(SkType_EventKind, kind, &str);
35 SkDebugf("kind=%s ", str.c_str());
47 if (kind != SkDisplayEvent::kOnload)
48 movie->doEvent(kind, state);
57 if (evt->kind != kind)
67 if (kind >= SkDisplayEvent::kMouseDown && kind <= SkDisplayEvent::kMouseUp) {
97 void SkEvents::removeEvent(SkDisplayEvent::Kind kind, SkEventStat argument
[all...]
/external/clang/bindings/python/tests/cindex/
H A Dtest_type.py33 assert all(x.kind == CursorKind.FIELD_DECL for x in fields)
38 assert fields[0].type.kind == TypeKind.INT
39 assert fields[0].type.get_canonical().kind == TypeKind.INT
43 assert fields[1].type.kind == TypeKind.TYPEDEF
44 assert fields[1].type.get_canonical().kind == TypeKind.INT
49 assert fields[2].type.kind == TypeKind.LONG
50 assert fields[2].type.get_canonical().kind == TypeKind.LONG
54 assert fields[3].type.kind == TypeKind.ULONG
55 assert fields[3].type.get_canonical().kind == TypeKind.ULONG
59 assert fields[4].type.kind
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSDNodeDbgValue.h51 enum DbgValueKind kind; member in class:llvm::SDDbgValue
60 kind = SDNODE;
69 kind = CONST;
77 kind = FRAMEIX;
81 // Returns the kind.
82 DbgValueKind getKind() const { return kind; }
91 SDNode *getSDNode() const { assert (kind==SDNODE); return u.s.Node; }
94 unsigned getResNo() const { assert (kind==SDNODE); return u.s.ResNo; }
97 const Value *getConst() const { assert (kind==CONST); return u.Const; }
100 unsigned getFrameIx() const { assert (kind
[all...]
/external/iproute2/include/linux/tc_ematch/
H A Dtc_em_meta.h17 __u16 kind; member in struct:tcf_meta_val
23 #define TCF_META_TYPE(kind) (((kind) & TCF_META_TYPE_MASK) >> 12)
25 #define TCF_META_ID(kind) ((kind) & TCF_META_ID_MASK)
/external/kernel-headers/original/uapi/linux/tc_ematch/
H A Dtc_em_meta.h17 __u16 kind; member in struct:tcf_meta_val
23 #define TCF_META_TYPE(kind) (((kind) & TCF_META_TYPE_MASK) >> 12)
25 #define TCF_META_ID(kind) ((kind) & TCF_META_ID_MASK)
/external/libnl/src/
H A Dnl-cls-add.c46 char *kind; local
95 kind = argv[optind++];
96 if ((err = rtnl_cls_set_kind(cls, kind)) < 0)
97 fatal(ENOENT, "Unknown classifier type \"%s\".", kind);
101 fatal(ENOTSUP, "Classifier type \"%s\" not supported.", kind);
/external/llvm/test/MC/ARM/
H A Darm_fixups.s8 @ CHECK: @ fixup A - offset: 0, value: _printf, kind: fixup_arm_uncondbl
10 @ CHECK-BE: @ fixup A - offset: 0, value: _printf, kind: fixup_arm_uncondbl
17 @ CHECK: @ fixup A - offset: 0, value: _foo, kind: fixup_arm_movw_lo16
19 @ CHECK-BE: @ fixup A - offset: 0, value: _foo, kind: fixup_arm_movw_lo16
21 @ CHECK: @ fixup A - offset: 0, value: _foo, kind: fixup_arm_movw_lo16
23 @ CHECK-BE: @ fixup A - offset: 0, value: _foo, kind: fixup_arm_movw_lo16
25 @ CHECK: @ fixup A - offset: 0, value: _foo, kind: fixup_arm_movt_hi16
27 @ CHECK-BE: @ fixup A - offset: 0, value: _foo, kind: fixup_arm_movt_hi16
32 @ CHECK: @ fixup A - offset: 0, value: fred, kind: fixup_arm_movw_lo16
34 @ CHECK-BE: @ fixup A - offset: 0, value: fred, kind
[all...]
/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/text/
H A DBreakIteratorFactory.java35 public Object registerInstance(BreakIterator iter, ULocale locale, int kind) { argument
37 return service.registerObject(iter, locale, kind);
63 public BreakIterator createBreakIterator(ULocale locale, int kind) { argument
66 return createBreakInstance(locale, kind);
69 BreakIterator iter = (BreakIterator)service.get(locale, kind, actualLoc);
79 protected Object handleCreate(ULocale loc, int kind, ICUService srvc) {
80 return createBreakInstance(loc, kind);
114 private static BreakIterator createBreakInstance(ULocale locale, int kind) { argument
126 if (kind == BreakIterator.KIND_LINE) {
133 String typeKey = (typeKeyExt == null)? KIND_NAMES[kind]
[all...]

Completed in 5067 milliseconds

1234567891011>>