HomeSort by relevance Sort by last modified time
    Searched refs:kind (Results 601 - 625 of 2305) sorted by null

<<21222324252627282930>>

  /external/v8/src/
safepoint-table.cc 104 Safepoint::Kind kind,
111 info.has_doubles = (kind & Safepoint::kWithDoubles);
118 registers_.Add((kind & Safepoint::kWithRegisters)
contexts.h 529 static int FunctionMapIndex(LanguageMode language_mode, FunctionKind kind) {
530 if (IsGeneratorFunction(kind)) {
535 if (IsAsyncFunction(kind)) {
540 if (IsClassConstructor(kind)) {
545 if (IsArrowFunction(kind) || IsConciseMethod(kind) ||
546 IsAccessorFunction(kind)) {
objects-debug.cc 755 CHECK(kind()->IsSmi() || kind()->IsUndefined(isolate));
766 CHECK(kind()->IsSmi() || kind()->IsUndefined(isolate));
1183 PropertyKind kind = kData; local
    [all...]
  /external/webrtc/talk/app/webrtc/java/src/org/webrtc/
PeerConnection.java 227 public RtpSender createSender(String kind, String stream_id) {
228 RtpSender new_sender = nativeCreateSender(kind, stream_id);
300 private native RtpSender nativeCreateSender(String kind, String stream_id);
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/annotation/
AnnotationAnalyzer.java 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
61 public void printMessage(Diagnostic.Kind kind, String message, Element element) {
64 messager.printMessage(kind, message, element);
66 messager.printMessage(kind, message);
  /bionic/libc/kernel/tools/
cpp.py 145 elif self.kind == TokenKind.IDENTIFIER:
264 if token.kind != TokenKind.COMMENT:
486 if self.tokens[self._index].kind != TokenKind.LITERAL:
538 if t.kind != TokenKind.IDENTIFIER:
553 if t.kind != TokenKind.IDENTIFIER:
623 elif op.id == '+' or op.id == '-' or op.kind == TokenKind.LITERAL:
629 elif op.kind == TokenKind.IDENTIFIER:
    [all...]
  /external/valgrind/massif/
ms_main.c 207 // Overall it's a kind of exponential decay thing. Most of these are
1019 SnapshotKind kind; member in struct:__anon25656
2142 Vg_FnNameKind kind = VG_(get_fnname_kind_from_IP)(sxpt->Sig.ip); local
    [all...]
  /external/v8/src/ic/
ic.cc 118 if (kind() == Code::KEYED_STORE_IC) {
179 kind_ = target->kind();
187 switch (code->kind()) {
237 return host->kind() == Code::OPTIMIZED_FUNCTION;
280 if (kind() == Code::LOAD_GLOBAL_IC) return true;
284 // to a more general elements kind.
378 if (host->kind() != Code::FUNCTION) return;
392 if (ICUseVector(target->kind())) return;
402 if (host->kind() != Code::FUNCTION) return;
432 if (target->kind() == Code::COMPARE_IC)
1998 ElementsKind kind = IsFastHoleyElementsKind(map->elements_kind()) local
2005 ElementsKind kind = IsFastHoleyElementsKind(map->elements_kind()) local
2273 FeedbackVectorSlotKind kind = vector->GetKind(vector_slot); local
    [all...]
  /external/dbus-binding-generator/chromeos-dbus-bindings/
xml_interface_parser.cc 47 const char XmlInterfaceParser::kMethodKind[] = "org.chromium.DBus.Method.Kind";
165 method.kind = Interface::Method::Kind::kAsync;
168 method.kind = Interface::Method::Kind::kSimple;
170 method.kind = Interface::Method::Kind::kNormal;
172 method.kind = Interface::Method::Kind::kAsync;
174 method.kind = Interface::Method::Kind::kRaw
    [all...]
  /external/fonttools/Lib/fontTools/
t1Lib.py 11 write(path, data, kind='OTHER', dohex=False)
13 'kind' can be one of 'LWFN', 'PFB' or 'OTHER'; it defaults to 'OTHER'.
15 part should be written as hexadecimal or binary, but only if kind
114 def write(path, data, kind='OTHER', dohex=False):
116 kind = kind.upper()
123 if kind == 'LWFN':
125 elif kind == 'PFB':
  /external/libmicrohttpd/src/include/
microhttpd.h     [all...]
  /external/llvm/include/llvm/CodeGen/
ScheduleDAG.h 47 /// Kind - These are the different kinds of scheduling dependencies.
48 enum Kind {
75 /// indicating the kind of the dependency.
76 PointerIntPair<SUnit *, 2, Kind> Dep;
78 /// Contents - A union discriminated by the dependence kind.
101 SDep(SUnit *S, Kind kind, unsigned Reg)
102 : Dep(S, kind), Contents() {
103 switch (kind) {
119 SDep(SUnit *S, OrderKind kind)
    [all...]
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_graph.cpp 14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
95 void Graph::Node::attach(Node *node, Edge::Type kind)
97 Edge *edge = new Edge(this, node, kind);
125 if (kind == Edge::UNKNOWN)
158 Graph::Edge::Edge(Node *org, Node *tgt, Type kind)
162 type = kind;
312 assert(!"unknown edge kind in CFG");
  /external/opencv3/modules/viz/src/
vizcore.cpp 271 CV_Assert(_traj.kind() == _InputArray::STD_VECTOR || _traj.kind() == _InputArray::MAT);
293 if (_traj.kind() == _InputArray::STD_VECTOR_MAT)
312 if (_traj.kind() == _InputArray::STD_VECTOR || _traj.kind() == _InputArray::MAT)
328 CV_Assert(!"Unsupported array kind");
  /external/regex-re2/re2/
onepass.cc 209 Anchor anchor, MatchKind kind,
211 if (anchor != kAnchored && kind != kFullMatch) {
238 kind = kFullMatch;
280 if (kind == kFullMatch)
309 if (kind == kFirstMatch && (cond & kMatchWins))
  /external/valgrind/exp-sgcheck/
h_main.c 483 When .kind is NonShad, .shadow may give the identity of the temp
488 When .kind is Shad tmp holds a shadow value, and so .shadow must be
498 TempKind kind; member in struct:__anon25401
514 current kind and possibly shadow temps for each temp in the
571 /* Create a new IRTemp of type 'ty' and kind 'kind', and add it to
575 static IRTemp newTemp ( PCEnv* pce, IRType ty, TempKind kind )
580 ent.kind = kind;
650 ent.kind = NonShad
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/account/
ExternalAccountType.java 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
376 final DataKind kind = new DataKind(); local
378 kind.mimeType = a
384 kind.actionHeader = new SimpleInflater(summaryColumn);
390 kind.actionBody = new SimpleInflater(detailColumn);
395 addKind(kind);
  /system/webservd/webservd/
request.cc 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
40 MHD_ValueKind /* kind */,
54 MHD_ValueKind kind,
61 if (kind == MHD_HEADER_KIND) {
64 } else if (kind == MHD_COOKIE_KIND) {
66 } else if (kind == MHD_POSTDATA_KIND) {
68 } else if (kind == MHD_GET_ARGUMENT_KIND) {
  /external/clang/include/clang/Analysis/
CFG.h 55 enum Kind {
56 // main kind
60 // dtor kind
71 // The int bits are used to mark the kind.
75 CFGElement(Kind kind, const void *Ptr1, const void *Ptr2 = nullptr)
76 : Data1(const_cast<void*>(Ptr1), ((unsigned) kind) & 0x3),
77 Data2(const_cast<void*>(Ptr2), (((unsigned) kind) >> 2) & 0x3) {
78 assert(getKind() == kind);
107 Kind getKind() const
186 Kind kind = E.getKind(); local
    [all...]
  /external/valgrind/coregrind/m_debuginfo/
d3basics.c 490 res.kind = GXR_Failure; \
533 res.kind = GXR_RegNo;
542 res.kind = GXR_RegNo;
602 switch (fbval.kind) {
    [all...]
  /external/chromium-trace/catapult/netlog_viewer/netlog_viewer/
cr.js 75 * The kind of property to define in {@code defineProperty}.
105 * @param {PropertyKind} kind The kind of the property.
108 function getGetter(name, kind) {
109 switch (kind) {
134 * kind.
137 * @param {PropertyKind} kind The kind of property we are getting the
143 function getSetter(name, kind, opt_setHook) {
144 switch (kind) {
    [all...]
  /external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
GatherAPIData.java 249 // synthesized constructors for abstract classes is kind of weird.
300 if (tagKindIndex(tags[i].kind()) == INTERNAL) { return true; }
519 String kind = tag.kind(); local
520 int ix = tagKindIndex(kind);
561 throw new RuntimeException("unknown index " + ix + " for tag: " + kind);
610 private static int tagKindIndex(String kind) {
617 if (kind.equals(tagKinds[i])) {
  /external/valgrind/coregrind/m_gdbserver/
target.c 518 PointKind kind; local
521 kind = software_breakpoint;
524 kind = hardware_breakpoint;
527 kind = write_watchpoint;
530 kind = read_watchpoint;
533 kind = access_watchpoint;
540 if (VG_(gdbserver_point) (kind, insert, addr, len))
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
dxfile.h 140 #define IUNKNOWN_METHODS(kind) \
141 STDMETHOD_(HRESULT,QueryInterface)(THIS_ REFIID riid, void** ppvObject) kind; \
142 STDMETHOD_(ULONG,AddRef)(THIS) kind; \
143 STDMETHOD_(ULONG,Release)(THIS) kind
145 #define IDIRECTXFILEOBJECT_METHODS(kind) \
146 STDMETHOD(GetName) (THIS_ LPSTR, LPDWORD) kind; \
147 STDMETHOD(GetId) (THIS_ LPGUID) kind
  /external/llvm/test/MC/Mips/
macro-la.s 248 # CHECK: # fixup A - offset: 0, value: %hi(symbol), kind: fixup_Mips_HI16
250 # CHECK: # fixup A - offset: 0, value: %lo(symbol), kind: fixup_Mips_LO16
252 # CHECK: # fixup A - offset: 0, value: %hi(symbol), kind: fixup_Mips_HI16
254 # CHECK: # fixup A - offset: 0, value: %lo(symbol), kind: fixup_Mips_LO16
257 # CHECK: # fixup A - offset: 0, value: %hi(symbol), kind: fixup_Mips_HI16
259 # CHECK: # fixup A - offset: 0, value: %lo(symbol), kind: fixup_Mips_LO16
262 # CHECK: # fixup A - offset: 0, value: %hi(symbol+8), kind: fixup_Mips_HI16
264 # CHECK: # fixup A - offset: 0, value: %lo(symbol+8), kind: fixup_Mips_LO16
266 # CHECK: # fixup A - offset: 0, value: %hi(symbol+8), kind: fixup_Mips_HI16
268 # CHECK: # fixup A - offset: 0, value: %lo(symbol+8), kind: fixup_Mips_LO1
    [all...]

Completed in 1417 milliseconds

<<21222324252627282930>>