/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/ |
pthread_mutex_lock.c | 46 int kind; local 73 kind = mx->kind; 75 if (kind >= 0) 78 if (PTHREAD_MUTEX_NORMAL == kind) 112 if (kind == PTHREAD_MUTEX_RECURSIVE) 162 kind = -kind - 1; /* Convert to non-robust range */ 164 if (PTHREAD_MUTEX_NORMAL == kind) 219 if (PTHREAD_MUTEX_RECURSIVE == kind) [all...] |
/external/llvm/include/llvm/MC/ |
MCFixup.h | 70 /// The target dependent kind of fixup item this is. The kind is used to 72 unsigned Kind; 78 MCFixupKind Kind, SMLoc Loc = SMLoc()) { 79 assert(unsigned(Kind) < MaxTargetFixupKind && "Kind out of range!"); 83 FI.Kind = unsigned(Kind); 88 MCFixupKind getKind() const { return MCFixupKind(Kind); } 95 /// getKindForSize - Return the generic fixup kind for a value with the give [all...] |
/external/llvm/lib/Target/Mips/ |
MipsTargetObjectFile.cpp | 76 SectionKind Kind) const { 90 if (!Kind.isBSS() && !Kind.isDataRel()) 95 if (Kind.isMergeable1ByteCString()) 105 SelectSectionForGlobal(const GlobalValue *GV, SectionKind Kind, 111 if (Kind.isBSS() && IsGlobalInSmallSection(GV, TM, Kind)) 113 if (Kind.isDataNoRel() && IsGlobalInSmallSection(GV, TM, Kind)) 117 return TargetLoweringObjectFileELF::SelectSectionForGlobal(GV, Kind, Mang,TM) [all...] |
/external/llvm/lib/Target/PowerPC/MCTargetDesc/ |
PPCMCExpr.cpp | 19 PPCMCExpr::Create(VariantKind Kind, const MCExpr *Expr, 21 return new (Ctx) PPCMCExpr(Kind, Expr, isDarwin); 26 switch (Kind) { 27 default: llvm_unreachable("Invalid kind!"); 39 switch (Kind) { 40 default: llvm_unreachable("Invalid kind!"); 62 switch (Kind) { 64 llvm_unreachable("Invalid kind!"); 94 switch (Kind) { 96 llvm_unreachable("Invalid kind!"); [all...] |
/external/llvm/test/Transforms/LoopStrengthReduce/ARM/ |
2012-06-15-lsr-noaddrmode.ll | 13 ; LSR Use: Kind=Special, Offsets={0}, all-fixups-outside-loop, widest fixup type: i32 15 ; LSR Use: Kind=ICmpZero, Offsets={0}, widest fixup type: i32 17 ; LSR Use: Kind=Address of i32, Offsets={0}, widest fixup type: i32* 19 ; LSR Use: Kind=Address of i32, Offsets={0}, widest fixup type: i32* 21 ; LSR Use: Kind=Special, Offsets={0}, all-fixups-outside-loop, widest fixup type: i32 26 ; LSR Use: Kind=Special, Offsets={0}, all-fixups-outside-loop, widest fixup type: i32 28 ; LSR Use: Kind=ICmpZero, Offsets={0}, widest fixup type: i32 30 ; LSR Use: Kind=Address of i32, Offsets={0}, widest fixup type: i32* 32 ; LSR Use: Kind=Address of i32, Offsets={0}, widest fixup type: i32* 34 ; LSR Use: Kind=Special, Offsets={0}, all-fixups-outside-loop, widest fixup type: i3 [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. 129 public boolean hasKindTypeColumn(DataKind kind) { 130 final String key = kind.typeColumn; 135 public int getKindTypeColumn(DataKind kind) { 136 final String key = kind.typeColumn; 144 public String buildDataString(Context context, DataKind kind) { 145 if (kind.actionBody == null) { 148 CharSequence actionBody = kind.actionBody.inflateUsing(context, mContentValues); 159 public String buildDataStringForDisplay(Context context, DataKind kind) { 160 return buildDataString(context, kind); [all...] |
/external/clang/include/clang/Lex/ |
LiteralSupport.h | 141 tok::TokenKind Kind; 149 tok::TokenKind kind); 152 bool isAscii() const { return Kind == tok::char_constant; } 153 bool isWide() const { return Kind == tok::wide_char_constant; } 154 bool isUTF16() const { return Kind == tok::utf16_char_constant; } 155 bool isUTF32() const { return Kind == tok::utf32_char_constant; } 177 tok::TokenKind Kind; 190 MaxTokenLength(0), SizeBound(0), CharByteWidth(0), Kind(tok::unknown), 215 bool isAscii() const { return Kind == tok::string_literal; } 216 bool isWide() const { return Kind == tok::wide_string_literal; [all...] |
/external/llvm/lib/Target/ARM/ |
ARMConstantPoolValue.h | 53 ARMCP::ARMCPKind Kind; // Kind of constant. 60 ARMConstantPoolValue(Type *Ty, unsigned id, ARMCP::ARMCPKind Kind, 64 ARMConstantPoolValue(LLVMContext &C, unsigned id, ARMCP::ARMCPKind Kind, 79 bool isGlobalValue() const { return Kind == ARMCP::CPValue; } 80 bool isExtSymbol() const { return Kind == ARMCP::CPExtSymbol; } 81 bool isBlockAddress() const { return Kind == ARMCP::CPBlockAddress; } 82 bool isLSDA() const { return Kind == ARMCP::CPLSDA; } 83 bool isMachineBasicBlock() const{ return Kind == ARMCP::CPMachineBasicBlock; } 119 ARMCP::ARMCPKind Kind, [all...] |
/external/clang/lib/ASTMatchers/Dynamic/ |
Parser.cpp | 45 TokenInfo() : Text(), Kind(TK_Eof), Range(), Value() {} 48 TokenKind Kind; 73 TokenInfo::TokenKind nextTokenKind() const { return NextToken.Kind; } 82 Result.Kind = TokenInfo::TK_Eof; 89 Result.Kind = TokenInfo::TK_Comma; 94 Result.Kind = TokenInfo::TK_Period; 99 Result.Kind = TokenInfo::TK_OpenParen; 104 Result.Kind = TokenInfo::TK_CloseParen; 127 Result.Kind = TokenInfo::TK_Ident; 131 Result.Kind = TokenInfo::TK_InvalidChar [all...] |
/external/clang/include/clang/AST/ |
TemplateBase.h | 41 /// \brief The kind of template argument we're storing. 72 /// \brief The kind of template argument we're storing. 73 unsigned Kind; 111 TemplateArgument() : Kind(Null), TypeOrValue(0) { } 115 : Kind(isNullPtr ? NullPtr : Type) { 122 TemplateArgument(ValueDecl *D, bool ForRefParam) : Kind(Declaration) { 135 : Kind(Integral) { 148 TemplateArgument(TemplateName Name) : Kind(Template) 166 : Kind(TemplateExpansion) 180 TemplateArgument(Expr *E) : Kind(Expression) [all...] |
StmtOpenMP.h | 36 /// \brief Kind of the clause. 37 OpenMPClauseKind Kind; 40 : StartLoc(StartLoc), EndLoc(EndLoc), Kind(K) {} 54 /// \brief Returns kind of OpenMP clause (private, shared, reduction, etc.). 55 OpenMPClauseKind getClauseKind() const { return Kind; } 130 /// clause with kind 'shared'. 136 /// \brief A kind of the 'default' clause. 137 OpenMPDefaultClauseKind Kind; 138 /// \brief Start location of the kind in source code. 141 /// \brief Set kind of the clauses [all...] |
/external/llvm/test/MC/SystemZ/ |
insn-good.s | 540 #CHECK: fixup A - offset: 2, value: (.[[LAB]]-65536)+2, kind: FK_390_PC16DBL 543 #CHECK: fixup A - offset: 2, value: (.[[LAB]]-2)+2, kind: FK_390_PC16DBL 546 #CHECK: fixup A - offset: 2, value: .[[LAB]]+2, kind: FK_390_PC16DBL 549 #CHECK: fixup A - offset: 2, value: (.[[LAB]]+65534)+2, kind: FK_390_PC16DBL 553 #CHECK: fixup A - offset: 2, value: foo+2, kind: FK_390_PC16DBL 555 #CHECK: fixup A - offset: 2, value: foo+2, kind: FK_390_PC16DBL 557 #CHECK: fixup A - offset: 2, value: foo+2, kind: FK_390_PC16DBL 563 #CHECK: fixup A - offset: 2, value: (bar+100)+2, kind: FK_390_PC16DBL 565 #CHECK: fixup A - offset: 2, value: (bar+100)+2, kind: FK_390_PC16DBL 567 #CHECK: fixup A - offset: 2, value: (bar+100)+2, kind: FK_390_PC16DB [all...] |
/external/chromium_org/third_party/WebKit/Source/core/platform/chromium/ |
ChromiumDataObjectItem.h | 49 enum Kind { 61 Kind kind() const { return m_kind; } function in class:WebCore::ChromiumDataObjectItem 79 ChromiumDataObjectItem(Kind, const String& type); 80 ChromiumDataObjectItem(Kind, const String& type, uint64_t sequenceNumber); 83 Kind m_kind;
|
/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: ");
|
/external/icu4c/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: ");
|
/frameworks/compile/mclinker/lib/LD/ |
LDSection.cpp | 40 LDFileFormat::Kind pKind, 69 LDFileFormat::Kind pKind, 94 assert(LDFileFormat::Relocation != kind() && LDFileFormat::EhFrame != kind()); 100 assert(LDFileFormat::Relocation == kind()); 106 assert(LDFileFormat::EhFrame == kind());
|
/cts/tools/signature-tools/src/signature/model/impl/ |
Uninitialized.java | 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 32 import signature.model.Kind; 65 return o != UNINITIALIZED && o != Kind.UNINITIALIZED;
|
/external/chromium_org/third_party/WebKit/public/platform/ |
WebInbandTextTrack.h | 42 enum Kind { 56 virtual Kind kind() const = 0;
|
/external/clang/include/clang/Frontend/ |
FrontendOptions.h | 86 /// \brief The kind of input, e.g., C source, AST file, LLVM IR. 87 InputKind Kind; 93 FrontendInputFile() : Buffer(0), Kind(IK_None) { } 94 FrontendInputFile(StringRef File, InputKind Kind, bool IsSystem = false) 95 : File(File.str()), Buffer(0), Kind(Kind), IsSystem(IsSystem) { } 96 FrontendInputFile(llvm::MemoryBuffer *buffer, InputKind Kind, 98 : Buffer(buffer), Kind(Kind), IsSystem(IsSystem) { } 100 InputKind getKind() const { return Kind; } [all...] |
/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());
|
/external/valgrind/main/drd/tests/ |
bar_bad_xml.stderr.exp | 36 <kind>BarrierErr</kind> 63 <kind>BarrierErr</kind> 112 <kind>BarrierErr</kind> 161 <kind>BarrierErr</kind> 210 <kind>GenericErr</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 = ((System.identityHashCode(kind) / 8) & 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); 185 public static <T> T[] appendElement(Class<T> kind, T[] array, T element) { 190 result = (T[])Array.newInstance(kind, end + 1); 194 result = (T[])Array.newInstance(kind, 1) [all...] |
/prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/ |
diagnostic.h | 29 its context and its KIND (ice, error, warning, note, ...) See complete 38 /* The kind of diagnostic it is about. */ 39 diagnostic_t kind; member in struct:diagnostic_info 51 diagnostic_t kind; member in struct:diagnostic_classification_change_t 82 options), this array may contain a new kind that the diagnostic 84 it as the reported kind, or DK_IGNORED to not report it at 159 argument is the kind of diagnostic before any reclassification 160 (of warnings as errors, etc.); the second is the kind after any 226 /* The total count of a KIND of diagnostics emitted so far. */ 258 /* Force diagnostics controlled by OPTIDX to be kind KIND. * [all...] |
/prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/ |
diagnostic.h | 29 its context and its KIND (ice, error, warning, note, ...) See complete 38 /* The kind of diagnostic it is about. */ 39 diagnostic_t kind; member in struct:diagnostic_info 51 diagnostic_t kind; member in struct:diagnostic_classification_change_t 82 options), this array may contain a new kind that the diagnostic 84 it as the reported kind, or DK_IGNORED to not report it at 159 argument is the kind of diagnostic before any reclassification 160 (of warnings as errors, etc.); the second is the kind after any 226 /* The total count of a KIND of diagnostics emitted so far. */ 258 /* Force diagnostics controlled by OPTIDX to be kind KIND. * [all...] |
/prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/ |
diagnostic.h | 29 its context and its KIND (ice, error, warning, note, ...) See complete 38 /* The kind of diagnostic it is about. */ 39 diagnostic_t kind; member in struct:diagnostic_info 51 diagnostic_t kind; member in struct:diagnostic_classification_change_t 82 options), this array may contain a new kind that the diagnostic 84 it as the reported kind, or DK_IGNORED to not report it at 159 argument is the kind of diagnostic before any reclassification 160 (of warnings as errors, etc.); the second is the kind after any 226 /* The total count of a KIND of diagnostics emitted so far. */ 258 /* Force diagnostics controlled by OPTIDX to be kind KIND. * [all...] |