HomeSort by relevance Sort by last modified time
    Searched defs:at (Results 76 - 100 of 462) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/sfntly/cpp/src/test/tinyxml/
tinystr.h 147 const char& at (size_type index) const function in class:TiXmlString
  /external/skia/src/core/
SkTRefArray.h 22 * T entries at the end. We call our constructor, but not the constructors
67 const T& at(int index) const { function in class:SkTRefArray
71 const T& operator[](int index) const { return this->at(index); }
  /external/tinyxml/
tinystr.h 146 const char& at (size_type index) const function in class:TiXmlString
  /external/v8/src/
arguments.h 58 template <class S> Handle<S> at(int index) { function in class:v8::internal::BASE_EMBEDDED
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/tc_act/
tc_pedit.h 22 __u32 at; member in struct:tc_pedit_key
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/tc_act/
tc_pedit.h 22 __u32 at; member in struct:tc_pedit_key
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/tc_act/
tc_pedit.h 22 __u32 at; member in struct:tc_pedit_key
  /external/jmonkeyengine/engine/src/tools/jme3tools/converters/model/strip/
StripInfo.java 109 if( (faceVec.at(i).m_v0 == face.m_v0) ||
110 (faceVec.at(i).m_v1 == face.m_v0) ||
111 (faceVec.at(i).m_v2 == face.m_v0) )
117 if( (faceVec.at(i).m_v0 == face.m_v1) ||
118 (faceVec.at(i).m_v1 == face.m_v1) ||
119 (faceVec.at(i).m_v2 == face.m_v1) )
125 if( (faceVec.at(i).m_v0 == face.m_v2) ||
126 (faceVec.at(i).m_v1 == face.m_v2) ||
127 (faceVec.at(i).m_v2 == face.m_v2) )
228 tempAllFaces.add(forwardFaces.at(i));
    [all...]
  /cts/tools/signature-tools/src/signature/compare/
Main.java 6 * You may obtain a copy of the License at
53 int at = 0; local
55 if (!"--from".equals(args[at])) {
58 String fromType = args[++at];
62 ++at;
63 for (/* at */; at < args.length; at++) {
64 if ("--name".equals(args[at])) {
68 if ("--to".equals(args[at])) {
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
AnnotationSetItem.java 6 * You may obtain a copy of the License at
55 int at = 0; local
57 items[at] = new AnnotationItem(a);
58 at++;
69 // This includes an int size at the start of the list.
  /dalvik/dexgen/src/com/android/dexgen/util/
HexParser.java 6 * You may obtain a copy of the License at
47 int at = 0; local
50 while (at < len) {
51 int nlAt = src.indexOf('\n', at);
55 int poundAt = src.indexOf('#', at);
59 line = src.substring(at, poundAt);
61 line = src.substring(at, nlAt);
63 at = nlAt + 1;
  /dalvik/dx/src/com/android/dx/command/dump/
Main.java 6 * You may obtain a copy of the License at
42 int at = 0; local
44 for (/*at*/; at < args.length; at++) {
45 String arg = args[at];
78 if (at == args.length) {
83 for (/*at*/; at < args.length; at++)
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
AnnotationSetItem.java 6 * You may obtain a copy of the License at
55 int at = 0; local
57 items[at] = new AnnotationItem(a);
58 at++;
69 // This includes an int size at the start of the list.
  /dalvik/dx/src/com/android/dx/util/
HexParser.java 6 * You may obtain a copy of the License at
47 int at = 0; local
50 while (at < len) {
51 int nlAt = src.indexOf('\n', at);
55 int poundAt = src.indexOf('#', at);
59 line = src.substring(at, poundAt);
61 line = src.substring(at, nlAt);
63 at = nlAt + 1;
  /external/chromium_org/google_apis/gaia/
oauth2_access_token_fetcher_unittest.cc 201 std::string at; local
204 &url_fetcher, &at, &expires_in));
205 EXPECT_TRUE(at.empty());
211 std::string at; local
214 &url_fetcher, &at, &expires_in));
215 EXPECT_TRUE(at.empty());
221 std::string at; local
224 &url_fetcher, &at, &expires_in));
225 EXPECT_TRUE(at.empty());
231 std::string at; local
    [all...]
  /external/chromium_org/mojo/public/bindings/lib/
array.h 54 ConstRef at(size_t offset) const { function in class:mojo::Array
55 return Traits_::ToConstRef(data_->at(offset));
57 ConstRef operator[](size_t offset) const { return at(offset); }
72 Ref at(size_t offset) { function in class:mojo::Array::Builder
73 return Traits_::ToRef(data_->at(offset));
75 Ref operator[](size_t offset) { return at(offset); }
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLFormattingElementList.h 121 const Entry& at(size_t i) const { return m_entries[i]; } function in class:WebCore::HTMLFormattingElementList
122 Entry& at(size_t i) { return m_entries[i]; } function in class:WebCore::HTMLFormattingElementList
129 Entry* first() { return &at(0); }
  /external/chromium_org/third_party/WebKit/Source/platform/audio/
AudioArray.h 105 T& at(size_t i) function in class:WebCore::AudioArray
113 T& operator[](size_t i) { return at(i); }
  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebString.cpp 62 WebUChar WebString::at(unsigned i) const function in class:blink::WebString
  /external/chromium_org/third_party/WebKit/Source/platform/text/
SuffixTree.h 61 current = current->at(Codebook::codeWord(query[i]));
81 Node* child = m_children.at(i);
87 Node*& at(int codeWord) { return m_children.at(codeWord); } function in class:WebCore::SuffixTree::Node
103 Node*& child = current->at(Codebook::codeWord(text[base + offset]));
  /external/chromium_org/third_party/openssl/openssl/crypto/asn1/
t_req.c 20 * This can be in the form of a textual message at program startup or
174 ASN1_TYPE *at; local
198 at=sk_ASN1_TYPE_value(a->value.set,ii);
199 type=at->type;
200 bs=at->value.asn1_string;
  /external/chromium_org/third_party/openssl/openssl/crypto/x509/
x509_att.c 20 * This can be in the form of a textual message at program startup or
199 X509_ATTRIBUTE *at; local
205 at = X509at_get_attr(x, i);
206 if (lastpos <= -3 && (X509_ATTRIBUTE_count(at) != 1))
208 return X509_ATTRIBUTE_get0_data(at, 0, type, NULL);
307 * at least one value but some types use and zero length SET and
  /external/chromium_org/third_party/skia/src/core/
SkDataTable.cpp 61 const void* SkDataTable::at(int index, size_t* size) const { function in class:SkDataTable
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
AnnotationSetItem.java 6 * You may obtain a copy of the License at
55 int at = 0; local
57 items[at] = new AnnotationItem(a);
58 at++;
69 // This includes an int size at the start of the list.
  /external/dexmaker/src/dx/java/com/android/dx/util/
HexParser.java 6 * You may obtain a copy of the License at
47 int at = 0; local
50 while (at < len) {
51 int nlAt = src.indexOf('\n', at);
55 int poundAt = src.indexOf('#', at);
59 line = src.substring(at, poundAt);
61 line = src.substring(at, nlAt);
63 at = nlAt + 1;

Completed in 492 milliseconds

1 2 34 5 6 7 8 91011>>