HomeSort by relevance Sort by last modified time
    Searched refs:Type (Results 251 - 275 of 689) sorted by null

<<11121314151617181920>>

  /external/v8/src/x64/
virtual-frame-x64.h 86 NumberInfo::Type info = NumberInfo::kUninitialized);
301 void PushTryHandler(HandlerType type);
386 NumberInfo::Type info = NumberInfo::kUnknown);
388 NumberInfo::Type info = NumberInfo::kUnknown);
390 NumberInfo::Type info = NumberInfo::kUnknown);
392 NumberInfo::Type info = NumberInfo::kUnknown);
398 void Push(Register reg, NumberInfo::Type info = NumberInfo::kUnknown);
498 // Keep the element type as register or constant, and clear the dirty bit.
  /development/tools/mkstubs/src/com/android/mkstubs/sourcer/
SignatureSourcer.java 19 import org.objectweb.asm.Type;
30 * Terminology: a "signature" is a type descriptor for generics. There are different types
38 * order, e.g. the signature is written as "(parameters)return-type" where we want to generate
39 * "return-type method-name (parameters)". To hanlde this case, the return-type and parameters
57 * Indicates if the signature is currently processing formal type parameters.
70 * {@link SignatureSourcer} generated when parsing the return type of <em>this</em>
104 * Contains the whole signature type when called by
114 * Will be non-null if a return type was processed
130 * True if the signature contains formal type parameters, which are available
    [all...]
MethodSourcer.java 23 import org.objectweb.asm.Type;
65 // preprocess the signature to get the return type and the arguments
78 // output return type (constructor have no return type)
82 mOutput.write(" %s", Type.getReturnType(mDesc).getClassName());
94 Type[] types = Type.getArgumentTypes(mDesc);
154 mOutput.write("%s /* non-standard method attribute */ ", attr.type);
161 public void visitFrame(int type, int local, Object[] local2, int stack, Object[] stack2) {
223 public void visitTryCatchBlock(Label start, Label end, Label handler, String type) {
    [all...]
  /external/bison/src/
system.h 206 #define LIST_FREE(Type, List) \
208 Type *_node, *_next; \
  /external/chromium/base/
singleton_unittest.cc 15 template<typename Type>
16 struct LockTrait : public DefaultSingletonTraits<Type> {
56 // Note that any type can be used; int, float, std::wstring...
136 // Ensure POD type initialization.
message_loop_unittest.cc 90 void RunTest_PostTask(MessageLoop::Type message_loop_type) {
121 void RunTest_PostTask_SEH(MessageLoop::Type message_loop_type) {
188 void RunTest_PostDelayedTask_Basic(MessageLoop::Type message_loop_type) {
209 void RunTest_PostDelayedTask_InDelayOrder(MessageLoop::Type message_loop_type) {
230 void RunTest_PostDelayedTask_InPostOrder(MessageLoop::Type message_loop_type) {
258 MessageLoop::Type message_loop_type) {
284 MessageLoop::Type message_loop_type) {
309 void RunTest_PostDelayedTask_SharedTimer(MessageLoop::Type message_loop_type) {
425 void RunTest_EnsureTaskDeletion(MessageLoop::Type message_loop_type) {
439 void RunTest_EnsureTaskDeletion_Chain(MessageLoop::Type message_loop_type)
616 TaskType type; member in struct:TaskItem
    [all...]
message_loop.h 33 // managed by TimerManager. Depending on the type of message pump used by the
170 // A MessageLoop has a particular type, which indicates the set of
174 // This type of ML only supports tasks and timers.
177 // This type of ML also supports native UI events (e.g., Windows messages).
181 // This type of ML also supports asynchronous IO. See also
184 enum Type {
192 explicit MessageLoop(Type type = TYPE_DEFAULT);
195 // Returns the type passed to the constructor.
196 Type type() const { return type_; function in class:MessageLoop
    [all...]
  /external/protobuf/gtest/include/gtest/
gtest-spi.h 94 // type and contains the given substring. If that's not the case, a
100 TestPartResult::Type type,
105 const TestPartResult::Type type_;
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
fst.h 87 void SetFstType(const string& type) { fsttype_ = type; }
88 void SetArcType(const string& type) { arctype_ = type; }
102 int32 version_; // Type version #
143 virtual const string& Type() const = 0; // Fst type name
163 LOG(ERROR) << "Fst::Read: Unknown FST type \"" << hdr.FstType()
164 << "\" (arc type = \"" << A::Type()
    [all...]
  /external/v8/src/
parser.h 170 enum Type {
180 // Get the type of a compile time value returned by GetValue().
181 static Type GetType(Handle<FixedArray> value);
scopes.h 90 enum Type {
96 Scope(Scope* outer_scope, Type type);
293 explicit Scope(Type type);
299 // The scope type.
300 Type type_;
  /frameworks/base/libs/rs/
rsScript.cpp 80 const Type *t = static_cast<const Type *>(vt);
  /libcore/luni/src/main/java/org/apache/harmony/luni/lang/reflect/
ImplForVariable.java 22 import java.lang.reflect.Type;
52 * @param genericDecl declaration where a type variable is declared
53 * @param name type variable name
66 * @param genericDecl declaration where a type variable is used
67 * @param name type variable name
119 // type variable reference.
128 public Type[] getBounds() {
  /frameworks/base/tools/aapt/
ResourceTable.h 76 class Type;
85 const String16& type,
91 const String16& type,
102 const String16& type,
112 const String16& type,
124 const String16& type,
132 const String16& type,
138 const String16& type,
143 const String16& package, const String16& type, const String16& name);
159 const sp<Type>& t
262 enum type { enum in class:ResourceTable::Entry
    [all...]
  /external/srec/tools/grxmlcompile/
grxmldoc.cpp 55 std::cout << "ERROR: Empty string of type " << t <<std::endl; \
151 if(node.Type() == TiXmlNode::ELEMENT)
153 else if(node.Type() == TiXmlNode::DOCUMENT)
155 else if(node.Type() == TiXmlNode::TEXT)
157 else if(node.Type() == TiXmlNode::DECLARATION)
162 printf("processing node type %d text %s\n", node.Type(), text);
189 // XMLNode::Type type = node.getType();
190 if ( node.Type() == TiXmlNode::TEXT) // isCData(
758 int type = node.Type(); local
    [all...]
  /external/webkit/WebCore/inspector/front-end/
AuditRules.js 71 if (types && types.indexOf(resource.type) === -1)
131 result.type = WebInspector.AuditRuleResult.Type.Violation;
148 return WebInspector.Resource.Type.isTextType(resource.type) && resource.domain && resource.contentLength !== undefined && resource.contentLength > 150;
155 WebInspector.AuditRules.CombineExternalResourcesRule = function(id, name, type, resourceTypeName, parametersObject)
158 this._type = type;
180 result.type = WebInspector.AuditRuleResult.Type.Hint;
193 WebInspector.AuditRules.CombineExternalResourcesRule.call(this, "page-externaljs", "Combine external JavaScript", WebInspector.Resource.Type.Script, "JS", parametersObject)
    [all...]
  /development/host/windows/usb/api/
adb_endpoint_object.h 187 static AdbObjectType Type() {
  /external/bluetooth/glib/gobject/
glib-mkenums.in 159 print " \@type\@ either enum or flags\n";
160 print " \@Type\@ either Enum or Flags\n";
161 print " \@TYPE\@ either ENUM or FLAGS\n";
418 if ($flags) { $prod =~ s/\@type\@/flags/g; } else { $prod =~ s/\@type\@/enum/g; }
419 if ($flags) { $prod =~ s/\@Type\@/Flags/g; } else { $prod =~ s/\@Type\@/Enum/g; }
420 if ($flags) { $prod =~ s/\@TYPE\@/FLAGS/g; } else { $prod =~ s/\@TYPE\@/ENUM/g; }
436 if ($flags) { $prod =~ s/\@type\@/flags/g; } else { $prod =~ s/\@type\@/enum/g;
    [all...]
  /external/chromium/net/base/
escape.cc 113 UnescapeRule::Type rules,
262 UnescapeRule::Type rules,
281 UnescapeRule::Type rules) {
286 UnescapeRule::Type rules) {
  /external/chromium/net/ftp/
ftp_directory_listing_parser_unittest.h 18 FtpDirectoryListingEntry::Type type; member in struct:net::FtpDirectoryListingParserTest::SingleLineTestData
37 EXPECT_EQ(test_case.type, entry.type);
  /external/chromium/net/proxy/
proxy_config_service_common_unittest.cc 15 ProxyConfig::ProxyRules::Type type,
22 rules.type = type;
  /external/elfutils/libelf/
gelf_xlate.c 116 #define TYPE_NAME(Type, Name) TYPE_NAME2 (Type, Name)
117 #define TYPE_NAME2(Type, Name) Type##1 (&tdest->Name, &tsrc->Name);
118 #define TYPE(Name, Bits) TYPE2 (Name, Bits)
135 do not contain records of only one type. */
  /external/grub/stage2/
mb_info.h 21 * The structure type "mod_list" is used by the "multiboot_info" structure.
50 unsigned long Type;
55 /* usable memory "Type", all others are reserved. */
  /external/webkit/JavaScriptCore/debugger/
DebuggerCallFrame.cpp 61 DebuggerCallFrame::Type DebuggerCallFrame::type() const function in class:JSC::DebuggerCallFrame
  /external/webkit/JavaScriptCore/yarr/
RegexInterpreter.h 42 enum Type {
70 } type; member in struct:JSC::Yarr::ByteTerm
104 type = (quantityCount == 1) ? ByteTerm::TypePatternCharacterOnce : ByteTerm::TypePatternCharacterFixed;
107 type = ByteTerm::TypePatternCharacterGreedy;
110 type = ByteTerm::TypePatternCharacterNonGreedy;
125 type = (quantityCount == 1) ? ByteTerm::TypePatternCasedCharacterOnce : ByteTerm::TypePatternCasedCharacterFixed;
128 type = ByteTerm::TypePatternCasedCharacterGreedy;
131 type = ByteTerm::TypePatternCasedCharacterNonGreedy;
143 : type(ByteTerm::TypeCharacterClass)
152 ByteTerm(Type type, unsigned subpatternId, ByteDisjunction* parenthesesInfo, bool invertOrCapture, int inputPos
    [all...]

Completed in 2703 milliseconds

<<11121314151617181920>>