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

1 2 3 4 5 6 7 8 91011>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/builders/
PreCompilerDeltaVisitor.java 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
205 // class, so we don't need to check the delta kind
260 // get the modification kind
261 int kind = delta.getKind(); local
286 if (handler.handleGeneratedFile(file, kind)) {
294 if (kind == IResourceDelta.REMOVED) {
298 } else if (kind == IResourceDelta.CHANGED) {
308 handler.handleSourceFile(file, kind);
328 int kind = delta.getKind(); local
332 switch (kind) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/clipboard/
DataObjectItem.cpp 87 DataObjectItem::DataObjectItem(Kind kind, const String& type)
89 , m_kind(kind)
95 DataObjectItem::DataObjectItem(Kind kind, const String& type, uint64_t sequenceNumber)
97 , m_kind(kind)
105 if (kind() != FileKind)
DataObject.cpp 119 if (m_itemList[i]->kind() == DataObjectItem::StringKind && m_itemList[i]->type() == type) {
120 // Per the spec, type must be unique among all items of kind 'string'.
132 switch (m_itemList[i]->kind()) {
149 if (m_itemList[i]->kind() == DataObjectItem::StringKind && m_itemList[i]->type() == type)
237 if (m_itemList[i]->kind() == DataObjectItem::StringKind && m_itemList[i]->type() == type)
245 ASSERT(item->kind() == DataObjectItem::StringKind);
247 if (m_itemList[i]->kind() == DataObjectItem::StringKind && m_itemList[i]->type() == item->type())
257 ASSERT(item->kind() == DataObjectItem::FileKind);
  /external/chromium_org/third_party/icu/source/common/
servlk.cpp 40 int32_t kind,
48 return new LocaleKey(*primaryID, canonicalPrimaryID, canonicalFallbackID, kind);
54 int32_t kind)
56 , _kind(kind)
85 LocaleKey::kind() const { function in class:LocaleKey
162 result.append(" kind: ");
servlkf.cpp 49 int32_t kind = lkey.kind(); local
53 return handleCreate(loc, kind, service, status);
108 int32_t /* kind */,
  /external/icu/icu4c/source/common/
servlk.cpp 40 int32_t kind,
48 return new LocaleKey(*primaryID, canonicalPrimaryID, canonicalFallbackID, kind);
54 int32_t kind)
56 , _kind(kind)
85 LocaleKey::kind() const { function in class:LocaleKey
162 result.append(" kind: ");
servlkf.cpp 49 int32_t kind = lkey.kind(); local
53 return handleCreate(loc, kind, service, status);
108 int32_t /* kind */,
  /external/llvm/test/MC/Mips/msa/
test_cbranch.s 11 # fixup A - offset: 0, value: SYMBOL0, kind: fixup_Mips_PC16
14 # fixup A - offset: 0, value: SYMBOL1, kind: fixup_Mips_PC16
17 # fixup A - offset: 0, value: SYMBOL2, kind: fixup_Mips_PC16
20 # fixup A - offset: 0, value: SYMBOL3, kind: fixup_Mips_PC16
26 # fixup A - offset: 0, value: SYMBOL0, kind: fixup_Mips_PC16
38 # fixup A - offset: 0, value: SYMBOL0, kind: fixup_Mips_PC16
41 # fixup A - offset: 0, value: SYMBOL1, kind: fixup_Mips_PC16
44 # fixup A - offset: 0, value: SYMBOL2, kind: fixup_Mips_PC16
47 # fixup A - offset: 0, value: SYMBOL3, kind: fixup_Mips_PC16
53 # fixup A - offset: 0, value: SYMBOL0, kind: fixup_Mips_PC1
    [all...]
  /external/valgrind/main/memcheck/tests/
threadname_xml.stderr.exp 34 <kind>InvalidWrite</kind>
86 <kind>InvalidWrite</kind>
139 <kind>InvalidWrite</kind>
192 <kind>InvalidWrite</kind>
244 <kind>InvalidWrite</kind>
    [all...]
xml1.stderr.exp 34 <kind>InvalidRead</kind>
118 <kind>UninitCondition</kind>
159 <kind>UninitValue</kind>
200 <kind>InvalidFree</kind>
292 <kind>InvalidFree</kind>
    [all...]
  /frameworks/base/core/java/com/android/internal/util/
ArrayUtils.java 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
105 public static <T> T[] emptyArray(Class<T> kind) {
106 if (kind == Object.class) {
110 int bucket = (kind.hashCode() & 0x7FFFFFFF) % CACHE_SIZE;
113 if (cache == null || cache.getClass().getComponentType() != kind) {
114 cache = Array.newInstance(kind, 0);
117 // Log.e("cache", "new empty " + kind.getName() + " at " + bucket);
204 public static <T> T[] appendElement(Class<T> kind, T[] array, T element) {
209 result = (T[])Array.newInstance(kind, end + 1);
213 result = (T[])Array.newInstance(kind, 1)
    [all...]
  /external/clang/tools/libclang/
IndexingContext.cpp 73 switch (C.kind) {
657 CXIdxEntityRefKind Kind) {
663 return handleReference(D, Loc, Cursor, Parent, DC, E, Kind);
671 CXIdxEntityRefKind Kind) {
702 CXIdxEntityRefInfo Info = { Kind,
924 EntityInfo.kind = CXIdxEntity_Unexposed;
937 EntityInfo.kind = CXIdxEntity_Struct; break;
939 EntityInfo.kind = CXIdxEntity_Union; break;
941 EntityInfo.kind = CXIdxEntity_CXXClass;
    [all...]
CIndexHigh.cpp 151 if (!clang_isDeclaration(declCursor.kind))
164 if ((cursor.kind == CXCursor_ObjCClassMethodDecl ||
165 cursor.kind == CXCursor_ObjCInstanceMethodDecl) &&
169 if (clang_isExpression(cursor.kind)) {
170 if (cursor.kind == CXCursor_DeclRefExpr ||
171 cursor.kind == CXCursor_MemberRefExpr) {
174 } else if (cursor.kind == CXCursor_ObjCMessageExpr &&
218 assert(clang_isDeclaration(declCursor.kind));
269 if (cursor.kind == CXCursor_MacroDefinition)
271 else if (cursor.kind == CXCursor_MacroExpansion
    [all...]
  /external/chromium_org/third_party/re2/re2/
prog.h 179 // Kind of match to look for (for anchor != kFullMatch)
249 // Anchor and kind control the kind of search.
261 // Search using NFA: can find submatches but kind of slow.
263 Anchor anchor, MatchKind kind,
270 // If matches != NULL and kind == kManyMatch and there is a match,
273 Anchor anchor, MatchKind kind,
277 // Build the entire DFA for the given match kind. FOR TESTING ONLY.
281 int BuildEntireDFA(MatchKind kind);
294 Anchor anchor, MatchKind kind,
    [all...]
  /external/llvm/test/MC/SystemZ/
insn-good.s 631 #CHECK: fixup A - offset: 2, value: (.[[LAB]]-65536)+2, kind: FK_390_PC16DBL
634 #CHECK: fixup A - offset: 2, value: (.[[LAB]]-2)+2, kind: FK_390_PC16DBL
637 #CHECK: fixup A - offset: 2, value: .[[LAB]]+2, kind: FK_390_PC16DBL
640 #CHECK: fixup A - offset: 2, value: (.[[LAB]]+65534)+2, kind: FK_390_PC16DBL
644 #CHECK: fixup A - offset: 2, value: foo+2, kind: FK_390_PC16DBL
646 #CHECK: fixup A - offset: 2, value: foo+2, kind: FK_390_PC16DBL
648 #CHECK: fixup A - offset: 2, value: foo+2, kind: FK_390_PC16DBL
654 #CHECK: fixup A - offset: 2, value: (bar+100)+2, kind: FK_390_PC16DBL
656 #CHECK: fixup A - offset: 2, value: (bar+100)+2, kind: FK_390_PC16DBL
658 #CHECK: fixup A - offset: 2, value: (bar+100)+2, kind: FK_390_PC16DB
    [all...]
  /external/regex-re2/re2/
prog.h 179 // Kind of match to look for (for anchor != kFullMatch)
249 // Anchor and kind control the kind of search.
261 // Search using NFA: can find submatches but kind of slow.
263 Anchor anchor, MatchKind kind,
270 // If matches != NULL and kind == kManyMatch and there is a match,
273 Anchor anchor, MatchKind kind,
277 // Build the entire DFA for the given match kind. FOR TESTING ONLY.
281 int BuildEntireDFA(MatchKind kind);
294 Anchor anchor, MatchKind kind,
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
FilterUtils.java 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
194 String kind; local
197 kind = "time";
200 kind = "location";
203 kind = "tag";
206 kind = "size";
209 kind = "face";
215 return "/cluster/{" + base + "}/" + kind;
  /packages/apps/Contacts/src/com/android/contacts/editor/
EventFieldEditorView.java 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
108 public void setValues(DataKind kind, ValuesDelta entry, RawContactDelta state, boolean readOnly,
110 if (kind.fieldList.size() != 1) throw new IllegalStateException("kind must have 1 field");
111 super.setValues(kind, entry, state, readOnly, vig);
163 final DataKind kind = getKind(); local
173 final Date date2 = kind.dateFormatWithoutYear.parse(oldValue, position);
183 onFieldChanged(column, kind.dateFormatWithYear.format(calendar.getTime()));
194 final DataKind kind = getKind(); local
241 resultString = kind.dateFormatWithoutYear.format(outCalendar.getTime())
    [all...]
  /external/clang/include/clang/Basic/
DiagnosticIDs.h 46 typedef unsigned kind; typedef in namespace:clang::diag
232 SmallVectorImpl<diag::kind> &Diags) const;
235 void getAllDiagnostics(SmallVectorImpl<diag::kind> &Diags) const;
  /external/doclava/src/com/google/doclava/
MemberInfo.java 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
25 boolean isStatic, boolean isSynthetic, String kind, SourcePositionInfo position,
39 mKind = kind;
151 public String kind() { method in class:MemberInfo
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/
BuildResults.java 221 * Returns the kind of summary for the scenario of the current build.
329 * @return <code>true</code> if the summary kind is equals to 0 or 1
338 * @return <code>true</code> if the summary kind is equals to 1
385 byte kind = stream.readByte();
386 this.baseline = kind == 0;
391 switch (kind) {
443 void setSummary(int kind, String comment) {
445 this.summaryKind = kind;
553 byte kind = 0; // baseline
557 kind = 1
    [all...]
  /external/qemu/include/qapi/
visitor.h 31 void visit_start_handle(Visitor *v, void **obj, const char *kind,
34 void visit_start_struct(Visitor *v, void **obj, const char *kind,
49 const char *kind, const char *name, Error **errp);
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowSpannableString.java 38 public <T> T[] getSpans(int queryStart, int queryEnd, Class<T> kind) {
42 if (kind.isInstance(s)) {
51 T[] array = (T[]) Array.newInstance(kind, retVal.size());
  /frameworks/base/core/java/android/text/
SpannableStringInternal.java 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
207 public <T> T[] getSpans(int queryStart, int queryEnd, Class<T> kind) {
217 if (kind != null && !kind.isInstance(spans[i])) {
245 ret = (Object[]) Array.newInstance(kind, spanCount - i + 1);
271 return (T[]) ArrayUtils.emptyArray(kind);
274 ret = (Object[]) Array.newInstance(kind, 1);
282 Object[] nret = (Object[]) Array.newInstance(kind, count);
287 public int nextSpanTransition(int start, int limit, Class kind) {
292 if (kind == null)
    [all...]
  /cts/tools/dasm/src/java_cup/
parse_action_row.java 86 if (under_term[i].kind() == parse_action.REDUCE)

Completed in 467 milliseconds

1 2 3 4 5 6 7 8 91011>>