/external/v8/src/ |
transitions.h | 9 #include "src/elements-kind.h" 42 static Map* SearchTransition(Map* map, PropertyKind kind, Name* name, 44 static MaybeHandle<Map> SearchTransition(Handle<Map> map, PropertyKind kind, 47 if (Map* transition = SearchTransition(*map, kind, *name, attributes)) { 197 // Returns true for a non-property transitions like elements kind, observed 251 // Search a transition for a given kind, property name and attributes. 252 int Search(PropertyKind kind, Name* name, PropertyAttributes attributes, 255 // Search a non-property transition (like elements kind, observe or frozen 262 int SearchDetails(int transition, PropertyKind kind, 291 // Compares two tuples <key, kind, attributes>, returns -1 i [all...] |
type-feedback-vector.h | 11 #include "src/elements-kind.h" 19 // This kind means that the slot points to the middle of other slot 37 std::ostream& operator<<(std::ostream& os, FeedbackVectorSlotKind kind); 43 inline FeedbackVectorSlot AddSlot(FeedbackVectorSlotKind kind); 108 void append(FeedbackVectorSlotKind kind) { 110 kinds_[slot_count_++] = kind; 147 void append(FeedbackVectorSlotKind kind) { 148 slot_kinds_.push_back(static_cast<unsigned char>(kind)); 176 // Returns number of feedback vector elements used by given slot kind. 177 static inline int GetSlotSize(FeedbackVectorSlotKind kind); [all...] |
type-info.cc | 78 FeedbackVectorSlotKind kind = feedback_vector_->GetKind(slot); local 79 if (kind == FeedbackVectorSlotKind::LOAD_IC) { 82 } else if (kind == FeedbackVectorSlotKind::KEYED_LOAD_IC) { 96 FeedbackVectorSlotKind kind = feedback_vector_->GetKind(slot); local 97 if (kind == FeedbackVectorSlotKind::STORE_IC) { 100 } else if (kind == FeedbackVectorSlotKind::KEYED_STORE_IC) { 240 DCHECK_EQ(Code::BINARY_OP_IC, code->kind()); 262 DCHECK_EQ(Code::BINARY_OP_IC, code->kind()); 355 FeedbackVectorSlotKind kind = feedback_vector_->GetKind(slot); local 356 if (kind == FeedbackVectorSlotKind::STORE_IC) [all...] |
/external/v8/tools/ |
gen-postmortem-metadata.py | 109 'value': 'Representation::Kind::kInteger8' }, 111 'value': 'Representation::Kind::kUInteger8' }, 113 'value': 'Representation::Kind::kInteger16' }, 115 'value': 'Representation::Kind::kUInteger16' }, 117 'value': 'Representation::Kind::kSmi' }, 119 'value': 'Representation::Kind::kInteger32' }, 121 'value': 'Representation::Kind::kDouble' }, 123 'value': 'Representation::Kind::kHeapObject' }, 125 'value': 'Representation::Kind::kTagged' }, 127 'value': 'Representation::Kind::kExternal' } [all...] |
/frameworks/base/core/java/android/text/method/ |
TextKeyListener.java | 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 188 int kind = kmap.getKeyboardType(); local 190 if (kind == KeyCharacterMap.ALPHA) { 192 } else if (kind == KeyCharacterMap.NUMERIC) { 194 } else if (kind == KeyCharacterMap.FULL 195 || kind == KeyCharacterMap.SPECIAL_FUNCTION) {
|
/external/v8/src/compiler/ |
instruction.h | 36 enum Kind { INVALID, UNALLOCATED, CONSTANT, IMMEDIATE, EXPLICIT, ALLOCATED }; 40 Kind kind() const { return KindField::decode(value_); } function in class:v8::internal::compiler::InstructionOperand 43 bool Is##name() const { return kind() == type; } 112 explicit InstructionOperand(Kind kind) : value_(KindField::encode(kind)) {} 116 class KindField : public BitField64<Kind, 0, 3> {}; 138 DCHECK_EQ(OperandKind, op->kind()); \ 143 DCHECK_EQ(OperandKind, op->kind()); \ [all...] |
/external/icu/icu4c/source/i18n/ |
numfmt.cpp | 863 virtual UObject* handleCreate(const Locale& loc, int32_t kind, const ICUService* /* service */, UErrorCode& status) const { 864 return NumberFormat::makeInstance(loc, (UNumberFormatStyle)kind, status); 893 int32_t kind = lkey.kind(); local 895 UObject* result = _delegate->createFormat(loc, (UNumberFormatStyle)kind); 952 int32_t kind = lkey.kind(); local 955 return NumberFormat::makeInstance(loc, (UNumberFormatStyle)kind, status); 1032 NumberFormat::internalCreateInstance(const Locale& loc, UNumberFormatStyle kind, UErrorCode& status) { 1033 if (kind == UNUM_CURRENCY) [all...] |
/external/dbus-binding-generator/chromeos-dbus-bindings/ |
adaptor_generator_unittest.cc | 290 interface2.methods.back().kind = Interface::Method::Kind::kSimple; 295 interface2.methods.back().kind = Interface::Method::Kind::kAsync; 300 interface2.methods.back().kind = Interface::Method::Kind::kAsync;
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/model/ |
ScenarioResultsElement.java | 129 StringBuffer writableStatus(StringBuffer buffer, int kind, StringBuffer excluded) { 134 StringBuffer childrenBuffer = super.writableStatus(new StringBuffer(), kind, excluded); 143 if ((kind & IPerformancesConstants.STATUS_VALUES) != 0) {
|
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/text/ |
BreakIterator.java | 628 // * {@icu} Registers a new break iterator of the indicated kind, to use in the given 630 // * of the given kind matches or falls back to this locale. 633 // * @param kind the type of iterator for which this instance is to be registered 637 // public static Object registerInstance(BreakIterator iter, Locale locale, int kind) { 642 // * {@icu} Registers a new break iterator of the indicated kind, to use in the given 644 // * of the given kind matches or falls back to this locale. 647 // * @param kind the type of iterator for which this instance is to be registered 651 // public static Object registerInstance(BreakIterator iter, ULocale locale, int kind) { 670 * Returns a particular kind of BreakIterator for a locale. 675 public static BreakIterator getBreakInstance(ULocale where, int kind) { [all...] |
/external/opencv3/modules/superres/src/ |
frame_source.cpp | 117 if (_frame.kind() == _InputArray::MAT) 119 else if(_frame.kind() == _InputArray::CUDA_GPU_MAT) 129 CV_Error(Error::StsBadArg, "Failed to detect input frame kind" ); 229 if (_frame.kind() == _InputArray::CUDA_GPU_MAT)
|
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/resolver/ |
Resolver.java | 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 102 public Tag resolve(NodeId kind, String value, boolean implicit) { 103 if (kind == NodeId.scalar && implicit) { 129 switch (kind) {
|
/external/valgrind/coregrind/ |
m_addrinfo.c | 211 ai->Addr.SectKind.kind = sect; 237 if (seg != NULL && seg->kind == SkAnonC 269 && (seg->kind == SkAnonC || seg->kind == SkFileC) 271 && seg->kind == SkAnonC 291 && (seg->kind == SkAnonC 292 || seg->kind == SkFileC 293 || seg->kind == SkShmC)) { 295 ai->Addr.SegmentKind.segkind = seg->kind; 297 if (seg->kind == SkFileC [all...] |
/frameworks/compile/mclinker/lib/LD/ |
ELFReaderIf.cpp | 55 LDFileFormat::Ignore == pInput.context()->getSection(pShndx)->kind()) 113 if (sect_hdr->kind() == LDFileFormat::Ignore) 116 if (sect_hdr->kind() == LDFileFormat::Group)
|
GarbageCollection.cpp | 61 /// shouldProcessGC - check if the section kind is handled in GC 63 if (pSection.kind() == LDFileFormat::TEXT || 64 pSection.kind() == LDFileFormat::DATA || 65 pSection.kind() == LDFileFormat::BSS || 66 pSection.kind() == LDFileFormat::GCCExceptTable) 132 // 1. its section kind is changed to Ignore. (The target section is a 138 if ((LDFileFormat::Ignore == reloc_sect->kind()) || 351 if (LDFileFormat::Ignore == reloc_sect->getLink()->kind())
|
/packages/apps/Gallery/src/com/android/camera/ |
BitmapManager.java | 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 138 public Bitmap getThumbnail(ContentResolver cr, long origId, int kind, 154 kind, null); 157 kind, null);
|
/system/tools/aidl/ |
type_cpp.h | 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 35 Type(int kind, // from ValidatableType 92 ArrayType(int kind, // from ValidatableType 103 : Type(kind, package, aidl_type, header, cpp_type, read_method,
|
/toolchain/binutils/binutils-2.25/opcodes/ |
aarch64-opc.c | 290 aarch64_get_operand_modifier_value (enum aarch64_modifier_kind kind) 292 return aarch64_operand_modifiers[kind].value; 306 aarch64_extend_operator_p (enum aarch64_modifier_kind kind) 308 return (kind > AARCH64_MOD_LSL && kind <= AARCH64_MOD_SXTX) 313 aarch64_shift_operator_p (enum aarch64_modifier_kind kind) 315 return (kind >= AARCH64_MOD_ROR && kind <= AARCH64_MOD_LSL) 538 /* The usage of the three data fields depends on the qualifier kind. */ 544 /* Kind. * 543 enum operand_qualifier_kind kind; member in struct:operand_qualifier_data 2333 enum aarch64_modifier_kind kind; local [all...] |
/external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/ |
CheckTags.java | 221 static int tagKindIndex(String kind) { 223 if (kind.equals(tagKinds[i])) { 378 String kind = tag.kind(); local 379 int ix = tagKindIndex(kind); 383 errln("unknown kind: " + kind);
|
/external/llvm/test/MC/Mips/ |
cprestore-noreorder.s | 47 # CHECK: # fixup A - offset: 0, value: foo@GOT, kind: fixup_Mips_GOT_Local 49 # CHECK: # fixup A - offset: 0, value: foo@ABS_LO, kind: fixup_Mips_LO16 65 # MICROMIPS: # fixup A - offset: 0, value: foo@GOT, kind: fixup_MICROMIPS_GOT16 67 # MICROMIPS: # fixup A - offset: 0, value: foo@ABS_LO, kind: fixup_MICROMIPS_LO16 81 # NO-PIC: # fixup A - offset: 0, value: foo, kind: fixup_Mips_26 94 # BAD-ABI: # fixup A - offset: 0, value: foo@GOT_DISP, kind: fixup_Mips_GOT_DISP
|
cprestore-reorder.s | 48 # CHECK: # fixup A - offset: 0, value: foo@GOT, kind: fixup_Mips_GOT_Local 50 # CHECK: # fixup A - offset: 0, value: foo@ABS_LO, kind: fixup_Mips_LO16 66 # MICROMIPS: # fixup A - offset: 0, value: foo@GOT, kind: fixup_MICROMIPS_GOT16 68 # MICROMIPS: # fixup A - offset: 0, value: foo@ABS_LO, kind: fixup_MICROMIPS_LO16 82 # NO-PIC: # fixup A - offset: 0, value: foo, kind: fixup_Mips_26 95 # BAD-ABI: # fixup A - offset: 0, value: foo@GOT_DISP, kind: fixup_Mips_GOT_DISP
|
/external/v8/src/ic/ |
handler-compiler.h | 21 static Handle<Code> Find(Handle<Name> name, Handle<Map> map, Code::Kind kind, 25 PropertyHandlerCompiler(Isolate* isolate, Code::Kind kind, Handle<Map> map, 27 : PropertyAccessCompiler(isolate, kind, cache_holder), 101 Handle<Code> GetCode(Code::Kind kind, Handle<Name> name); 270 static Builtins::Name SlowBuiltin(Code::Kind kind) { 271 switch (kind) { [all...] |
/frameworks/native/opengl/libs/EGL/ |
Loader.cpp | 12 ** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 307 void *Loader::load_driver(const char* kind, 312 static String8 find(const char* kind) { 326 result.appendFormat("/system/lib64/egl/lib%s_emulation.so", kind); 328 result.appendFormat("/system/lib/egl/lib%s_emulation.so", kind); 337 pattern.appendFormat("lib%s", kind); 418 String8 absolutePath = MatchFile::find(kind);
|
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/ |
Sources.java | 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 276 DataKind kind = null; local 278 // Try finding source and kind matching request 282 kind = source.getKindForMimetype(mimeType); 285 if (kind == null) { 288 kind = mFallbackSource.getKindForMimetype(mimeType); 291 if (kind == null) { 295 return kind;
|
/art/compiler/optimizing/ |
parallel_move_resolver.h | 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 121 // This helper class uses additional scratch registers to resolve dependencies. It supports all kind 147 // Allocate a scratch location to perform a move from input kind of location. A subclass should 150 virtual Location AllocateScratchLocationFor(Location::Kind kind) = 0; 159 // Return a scratch location from the moves which exactly matches the kind. 161 Location GetScratchLocation(Location::Kind kind);
|