HomeSort by relevance Sort by last modified time
    Searched refs:kind (Results 151 - 175 of 1522) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/third_party/icu/source/common/
servls.cpp 56 ICULocaleService::get(const Locale& locale, int32_t kind, UErrorCode& status) const
58 return get(locale, kind, NULL, status);
68 ICULocaleService::get(const Locale& locale, int32_t kind, Locale* actualReturn, UErrorCode& status) const
79 ICUServiceKey* key = createKey(&locName, kind, status);
116 ICULocaleService::registerInstance(UObject* objToAdopt, const Locale& locale, int32_t kind, UErrorCode& status)
118 return registerInstance(objToAdopt, locale, kind, LocaleKeyFactory::VISIBLE, status);
122 ICULocaleService::registerInstance(UObject* objToAdopt, const Locale& locale, int32_t kind, int32_t coverage, UErrorCode& status)
124 ICUServiceFactory * factory = new SimpleLocaleKeyFactory(objToAdopt, locale, kind, coverage);
148 ICULocaleService::registerInstance(UObject* objToAdopt, const UnicodeString& locale, int32_t kind, int32_t coverage, UErrorCode& status)
150 ICUServiceFactory * factory = new SimpleLocaleKeyFactory(objToAdopt, locale, kind, coverage)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glx/apple/
apple_glx.c 15 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
60 surface_notify_handler(Display * dpy, unsigned int uid, int kind)
63 switch (kind) {
79 fprintf(stderr, "unhandled kind of event: %d in %s\n", kind, __func__);
  /external/icu/icu4c/source/common/
servloc.h 88 int32_t kind,
101 int32_t kind);
105 * Append the prefix associated with the kind, or nothing if the kind is KIND_ANY.
110 * Return the kind code associated with this key.
112 virtual int32_t kind() const;
193 * by the handling factory, regardless of kind.
236 * kind off to handleCreate (which subclasses must implement).
261 virtual UObject* handleCreate(const Locale& loc, int32_t kind, const ICUService* service, UErrorCode& status) const;
297 * A LocaleKeyFactory that just returns a single object for a kind/locale
    [all...]
servls.cpp 51 ICULocaleService::get(const Locale& locale, int32_t kind, UErrorCode& status) const
53 return get(locale, kind, NULL, status);
63 ICULocaleService::get(const Locale& locale, int32_t kind, Locale* actualReturn, UErrorCode& status) const
74 ICUServiceKey* key = createKey(&locName, kind, status);
111 ICULocaleService::registerInstance(UObject* objToAdopt, const Locale& locale, int32_t kind, UErrorCode& status)
113 return registerInstance(objToAdopt, locale, kind, LocaleKeyFactory::VISIBLE, status);
117 ICULocaleService::registerInstance(UObject* objToAdopt, const Locale& locale, int32_t kind, int32_t coverage, UErrorCode& status)
119 ICUServiceFactory * factory = new SimpleLocaleKeyFactory(objToAdopt, locale, kind, coverage);
143 ICULocaleService::registerInstance(UObject* objToAdopt, const UnicodeString& locale, int32_t kind, int32_t coverage, UErrorCode& status)
145 ICUServiceFactory * factory = new SimpleLocaleKeyFactory(objToAdopt, locale, kind, coverage)
    [all...]
  /external/mesa3d/src/glx/apple/
apple_glx.c 15 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
60 surface_notify_handler(Display * dpy, unsigned int uid, int kind)
63 switch (kind) {
79 fprintf(stderr, "unhandled kind of event: %d in %s\n", kind, __func__);
  /packages/apps/ContactsCommon/tests/src/com/android/contacts/common/model/account/
ExternalAccountTypeTest.java 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
184 DataKind kind = type.getKindForMimetype("vnd.android.cursor.item/a.b.c"); local
185 assertNotNull(kind);
187 assertEquals("data1", ((BaseAccountType.SimpleInflater) kind.actionHeader)
189 assertEquals("data2", ((BaseAccountType.SimpleInflater) kind.actionBody)
192 kind = type.getKindForMimetype("vnd.android.cursor.item/d.e.f");
193 assertNotNull(kind);
194 assertEquals("data3", ((BaseAccountType.SimpleInflater) kind.actionHeader)
196 assertEquals("data4", ((BaseAccountType.SimpleInflater) kind.actionBody)
199 kind = type.getKindForMimetype("vnd.android.cursor.item/xyz")
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/track/
TextTrack.h 52 static PassRefPtrWillBeRawPtr<TextTrack> create(Document& document, const AtomicString& kind, const AtomicString& label, const AtomicString& language)
54 return adoptRefWillBeRefCountedGarbageCollected(new TextTrack(document, kind, label, language, emptyAtom, AddTrack));
123 TextTrack(Document&, const AtomicString& kind, const AtomicString& label, const AtomicString& language, const AtomicString& id, TextTrackType);
125 virtual bool isValidKind(const AtomicString& kind) const OVERRIDE { return isValidKindKeyword(kind); }
  /external/elfutils/0.153/libelf/
common.h 93 Elf_Cmd cmd, Elf *parent, Elf_Kind kind, size_t extra)
100 result->kind = kind;
123 if (elf->kind == ELF_K_AR)
141 if (elf->kind == ELF_K_AR)
  /external/valgrind/main/coregrind/m_gdbserver/
m_gdbserver.c 184 GS_Kind kind; member in struct:_GS_Address
191 address (kind == GS_break) or if this address is the jump target of an
193 single stepping (kind == GS_jump).
212 static void add_gs_address (Addr addr, GS_Kind kind, const HChar* from)
218 p->kind = kind;
238 const HChar* VG_(ppPointKind) (PointKind kind)
240 switch(kind) {
254 PointKind kind; member in struct:_GS_Watch
258 /* gs_watches contains a list of all addresses+len+kind that are bein
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/dataitem/
DataItem.java 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
137 public boolean hasKindTypeColumn(DataKind kind) {
138 final String key = kind.typeColumn;
143 public int getKindTypeColumn(DataKind kind) {
144 final String key = kind.typeColumn;
152 public String buildDataString(Context context, DataKind kind) {
153 if (kind.actionBody == null) {
156 CharSequence actionBody = kind.actionBody.inflateUsing(context, mContentValues);
167 public String buildDataStringForDisplay(Context context, DataKind kind) {
168 return buildDataString(context, kind);
    [all...]
  /external/chromium_org/v8/src/
elements-kind.cc 5 #include "src/elements-kind.h"
62 const char* ElementsKindToString(ElementsKind kind) {
63 ElementsAccessor* accessor = ElementsAccessor::ForKind(kind);
68 void PrintElementsKind(FILE* out, ElementsKind kind) {
69 PrintF(out, "%s", ElementsKindToString(kind));
130 ElementsKind GetNextTransitionElementsKind(ElementsKind kind) {
131 switch (kind) {
138 int index = GetSequenceIndexFromFastElementsKind(kind);
  /external/llvm/test/MC/Mips/
micromips-relocations.s 14 # CHECK-FIXUP: kind: fixup_MICROMIPS_HI16
19 # CHECK-FIXUP: kind: fixup_MICROMIPS_LO16
24 # CHECK-FIXUP: kind: fixup_MICROMIPS_CALL16
29 # CHECK-FIXUP: kind: fixup_MICROMIPS_GOT16
34 # CHECK-FIXUP: kind: fixup_MICROMIPS_TLS_DTPREL_HI16
39 # CHECK-FIXUP: kind: fixup_MICROMIPS_TLS_DTPREL_LO16
44 # CHECK-FIXUP: kind: fixup_MICROMIPS_GOT16
49 # CHECK-FIXUP: kind: fixup_MICROMIPS_GOT_DISP
54 # CHECK-FIXUP: kind: fixup_MICROMIPS_GOT_PAGE
59 # CHECK-FIXUP: kind: fixup_MICROMIPS_GOT_OFS
    [all...]
micromips-branch16.s 12 # CHECK-FIXUP: value: bar, kind: fixup_MICROMIPS_PC16_S1
16 # CHECK-FIXUP: value: bar, kind: fixup_MICROMIPS_PC16_S1
20 # CHECK-FIXUP: value: bar, kind: fixup_MICROMIPS_PC16_S1
24 # CHECK-FIXUP: value: bar, kind: fixup_MICROMIPS_PC16_S1
28 # CHECK-FIXUP: value: bar, kind: fixup_MICROMIPS_PC16_S1
32 # CHECK-FIXUP: value: bar, kind: fixup_MICROMIPS_PC16_S1
36 # CHECK-FIXUP: value: bar, kind: fixup_MICROMIPS_PC16_S1
40 # CHECK-FIXUP: value: bar, kind: fixup_MICROMIPS_PC16_S1
44 # CHECK-FIXUP: value: bar, kind: fixup_MICROMIPS_PC16_S1
  /external/valgrind/main/drd/tests/
annotate_barrier_xml.stderr.exp 37 <kind>UnimpDrdClReq</kind>
70 <kind>UnimpDrdClReq</kind>
103 <kind>UnimpDrdClReq</kind>
136 <kind>UnimpDrdClReq</kind>
169 <kind>ConflictingAccess</kind>
    [all...]
thread_name_xml.stderr.exp 37 <kind>MutexErr</kind>
73 <kind>MutexErr</kind>
109 <kind>MutexErr</kind>
145 <kind>MutexErr</kind>
181 <kind>MutexErr</kind>
    [all...]
  /packages/experimental/LoaderApp/src/com/android/loaderapp/model/
ExternalSource.java 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
148 final DataKind kind = new DataKind(); local
150 kind.mimeType = a
152 kind.iconRes = a.getResourceId(
159 kind.actionHeader = new FallbackSource.SimpleInflater(summaryColumn);
170 kind.actionBodySocial = true;
175 kind.actionBody = new FallbackSource.SimpleInflater(detailColumn);
178 addKind(kind);
  /external/chromium_org/mojo/public/tools/bindings/pylib/mojom/generate/
test_support.py 30 KindsAreEqual(field1.kind, field2.kind) and \
40 if kind1.__class__ == mojom.Kind:
52 return KindsAreEqual(kind1.kind, kind2.kind)
53 print 'Unknown Kind class: ', kind1.__class__.__name__
63 KindsAreEqual(parameter1.kind, parameter2.kind)
134 errors += EXPECT_EQ(mojom.INT32, module.structs[0].fields[0].kind)
136 errors += EXPECT_EQ(mojom.Array, module.structs[0].fields[1].kind.__class__
    [all...]
  /external/llvm/test/MC/PowerPC/
ppc64-fixup-explicit.s 17 # CHECK-BE-NEXT: # fixup A - offset: 2, value: target@GOT, kind: fixup_ppc_half16
18 # CHECK-LE-NEXT: # fixup A - offset: 0, value: target@GOT, kind: fixup_ppc_half16
25 # CHECK-BE-NEXT: # fixup A - offset: 2, value: target@GOT, kind: fixup_ppc_half16ds
26 # CHECK-LE-NEXT: # fixup A - offset: 0, value: target@GOT, kind: fixup_ppc_half16ds
33 # CHECK-BE-NEXT: # fixup A - offset: 2, value: target@got@ha, kind: fixup_ppc_half16
34 # CHECK-LE-NEXT: # fixup A - offset: 0, value: target@got@ha, kind: fixup_ppc_half16
41 # CHECK-BE-NEXT: # fixup A - offset: 2, value: target@got@l, kind: fixup_ppc_half16
42 # CHECK-LE-NEXT: # fixup A - offset: 0, value: target@got@l, kind: fixup_ppc_half16
49 # CHECK-BE-NEXT: # fixup A - offset: 2, value: target@got@h, kind: fixup_ppc_half16
50 # CHECK-LE-NEXT: # fixup A - offset: 0, value: target@got@h, kind: fixup_ppc_half1
    [all...]
ppc64-fixups.s 12 # CHECK-BE-NEXT: # fixup A - offset: 0, value: target, kind: fixup_ppc_br24
13 # CHECK-LE-NEXT: # fixup A - offset: 0, value: target, kind: fixup_ppc_br24
20 # CHECK-BE-NEXT: # fixup A - offset: 0, value: target, kind: fixup_ppc_br24abs
21 # CHECK-LE-NEXT: # fixup A - offset: 0, value: target, kind: fixup_ppc_br24abs
28 # CHECK-BE-NEXT: # fixup A - offset: 0, value: target, kind: fixup_ppc_brcond14
29 # CHECK-LE-NEXT: # fixup A - offset: 0, value: target, kind: fixup_ppc_brcond14
36 # CHECK-BE-NEXT: # fixup A - offset: 0, value: target, kind: fixup_ppc_brcond14abs
37 # CHECK-LE-NEXT: # fixup A - offset: 0, value: target, kind: fixup_ppc_brcond14abs
45 # CHECK-BE-NEXT: # fixup A - offset: 2, value: target@l, kind: fixup_ppc_half16
46 # CHECK-LE-NEXT: # fixup A - offset: 0, value: target@l, kind: fixup_ppc_half1
    [all...]
  /external/iproute2/tc/
m_ematch.c 42 static inline void map_warning(int num, char *kind)
46 "Please assign a unique ID to the ematch kind the suggested " \
49 kind, EMATCH_MAP, num, kind);
90 static int lookup_map_id(char *kind, int *dst, const char *file)
114 if (!strcasecmp(namebuf, kind)) {
129 static struct ematch_util *get_ematch_kind(char *kind)
137 if (strcmp(e->kind, kind) == 0)
141 snprintf(buf, sizeof(buf), "em_%s.so", kind);
    [all...]
  /art/compiler/dex/
compiler_enums.h 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
275 std::ostream& operator<<(std::ostream& os, const OpSize& kind);
333 std::ostream& operator<<(std::ostream& os, const OpKind& kind);
356 std::ostream& operator<<(std::ostream& os, const ConditionCode& kind);
378 std::ostream& operator<<(std::ostream& os, const ArmConditionCode& kind);
426 std::ostream& operator<<(std::ostream& os, const X86ConditionCode& kind);
458 std::ostream& operator<<(std::ostream& os, const MemBarrierKind& kind);
522 std::ostream& operator<<(std::ostream& os, const SelectInstructionKind& kind);
543 std::ostream& operator<<(std::ostream& os, const FixupKind& kind);
550 std::ostream& operator<<(std::ostream& os, const VolatileKind& kind);
    [all...]
  /external/chromium_org/third_party/skia/src/animator/
SkDisplayEvent.cpp 37 SK_MEMBER(kind, EventKind),
48 kind(kUser), x(0), y(0), fLastCode((SkKey) -1), fMax((SkKey) -1), fTarget(NULL) {
88 SkDump::GetEnumString(SkType_EventKind, kind, &str);
89 SkDebugf("kind=\"%s\" ", str.c_str());
90 if (kind == SkDisplayEvent::kKeyPress || kind == SkDisplayEvent::kKeyPressUp) {
97 if (kind == SkDisplayEvent::kKeyChar) {
106 if (kind >= SkDisplayEvent::kMouseDown && kind <= SkDisplayEvent::kMouseUp) {
173 if (kind == kUser
    [all...]
  /external/skia/src/animator/
SkDisplayEvent.cpp 37 SK_MEMBER(kind, EventKind),
48 kind(kUser), x(0), y(0), fLastCode((SkKey) -1), fMax((SkKey) -1), fTarget(NULL) {
88 SkDump::GetEnumString(SkType_EventKind, kind, &str);
89 SkDebugf("kind=\"%s\" ", str.c_str());
90 if (kind == SkDisplayEvent::kKeyPress || kind == SkDisplayEvent::kKeyPressUp) {
97 if (kind == SkDisplayEvent::kKeyChar) {
106 if (kind >= SkDisplayEvent::kMouseDown && kind <= SkDisplayEvent::kMouseUp) {
173 if (kind == kUser
    [all...]
  /packages/apps/ContactsCommon/tests/src/com/android/contacts/common/model/dataitem/
DataItemTests.java 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
72 private List<DataItem> createDataItemsAndCollapse(DataKind kind, ContentValues... values) {
76 data.setDataKind(kind);
93 final DataKind kind = new DataKind("test.mimetype", 0, 0, false); local
94 kind.actionBody = new BaseAccountType.SimpleInflater(0);
95 kind.typeList = new ArrayList<>();
96 kind.typeList.add(new EditType(1, -1));
97 kind.typeList.add(new EditType(2, -1));
98 kind.typeColumn = Data.DATA2;
100 mValues1.put(kind.typeColumn, 2)
129 final DataKind kind = mGoogleAccountType.getKindForMimetype(Email.CONTENT_ITEM_TYPE); local
166 final DataKind kind = mGoogleAccountType.getKindForMimetype(Event.CONTENT_ITEM_TYPE); local
202 final DataKind kind = mGoogleAccountType.getKindForMimetype(Im.CONTENT_ITEM_TYPE); local
229 final DataKind kind = mGoogleAccountType.getKindForMimetype(Nickname.CONTENT_ITEM_TYPE); local
251 DataKind kind = mGoogleAccountType.getKindForMimetype(Note.CONTENT_ITEM_TYPE); local
282 final DataKind kind = local
314 final DataKind kind = mGoogleAccountType.getKindForMimetype(Phone.CONTENT_ITEM_TYPE); local
350 final DataKind kind = mGoogleAccountType.getKindForMimetype(Relation.CONTENT_ITEM_TYPE); local
379 final DataKind kind = mGoogleAccountType.getKindForMimetype(SipAddress.CONTENT_ITEM_TYPE); local
401 final DataKind kind = local
424 final DataKind kind = local
449 final DataKind kind = mGoogleAccountType.getKindForMimetype(Website.CONTENT_ITEM_TYPE); local
    [all...]
  /external/valgrind/main/coregrind/m_aspacemgr/
aspacemgr-linux.c 520 segNo, show_SegKind(seg->kind),
539 switch (seg->kind) {
545 segNo, show_SegKind(seg->kind),
554 segNo, show_SegKind(seg->kind),
567 segNo, show_SegKind(seg->kind),
580 segNo, show_SegKind(seg->kind),
592 "%3d: ???? UNKNOWN SEGMENT KIND\n",
657 if (nsegments[i].kind == SkFree || nsegments[i].kind == SkResvn)
673 if (nsegments[i].kind == SkFree || nsegments[i].kind == SkResvn
    [all...]

Completed in 728 milliseconds

1 2 3 4 5 67 8 91011>>